/* ============================================ */
/* LANDING SECTION - WITH BACKGROUND IMAGE      */
/* ============================================ */

.landing-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('https://ziaratplanner.com/wp-content/uploads/2025/01/Untitled-Website-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.landing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Hero Left - Blur Background */
.hero-left {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Text Colors for Blur Background */
.hero-left .hero-title {
    color: white;
}

.hero-left .hero-title span {
    color: #c9a03d;
}

.hero-left .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-left .hero-badge {
    color: #c9a03d;
}

/* Buttons for Blur Background */
.hero-left .btn-primary-hero {
    background: #c9a03d;
    color: #0a2e25;
    border: 2px solid #c9a03d;
}

.hero-left .btn-primary-hero:hover {
    background: transparent;
    color: #c9a03d;
}

.hero-left .btn-secondary-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-left .btn-secondary-hero:hover {
    background: white;
    color: #1a6b4b;
    border-color: white;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c9a03d;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title span {
    color: #c9a03d;
    display: block;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: #1a6b4b;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #1a6b4b;
}

.btn-primary-hero:hover {
    background: transparent;
    color: #1a6b4b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary-hero {
    background: transparent;
    color: #1a2a3a;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.btn-secondary-hero:hover {
    border-color: #1a6b4b;
    color: #1a6b4b;
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.hero-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-main {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-image-main {
    transform: scale(1.05);
}

/* ============================================ */
/* RESPONSIVE (FIXED - NO DUPLICATES)          */
/* ============================================ */

@media (max-width: 992px) {
    .landing-section {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        padding: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .landing-section {
        padding: 80px 0 50px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-left {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-left {
        padding: 20px;
    }
}

/* ============================================ */
/* ANIMATIONS                                  */
/* ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-right {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ============================================ */
/* SERVICES SECTION                            */
/* ============================================ */

.services-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

.service-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 90%;
    background: white;
    text-align: center;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(58, 134, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

/* ============================================ */
/* PROCESS SECTION                             */
/* ============================================ */

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 90px;
    left: 50%;
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

/* ============================================ */
/* STATISTICS SECTION                          */
/* ============================================ */

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.stat-item {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================ */
/* WHY CHOOSE US SECTION - FIXED CENTER        */
/* ============================================ */

.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.feature-item {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58, 134, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 10px;
    margin: 0 0 5px 0;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Responsive for mobile - center karna hai to */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
		
    }
}
/* ============================================ */
/* TESTIMONIALS SECTION                        */
/* ============================================ */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

.testimonials-section .section-title {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: serif;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-info strong {
    color: var(--dark-color);
    font-weight: 600;
    display: block;
}

.client-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================ */
/* COUNTRIES SECTION                           */
/* ============================================ */

.countries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.country-item {
    padding: 20px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.country-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.country-flag {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.country-item:hover .country-flag {
    transform: scale(1.1);
}

.country-item span {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 10px;
    display: block;
}

/* ============================================ */
/* CTA SECTION                                 */
/* ============================================ */

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.9), rgba(255, 0, 110, 0.9));
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px 15px;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================ */
/* RESPONSIVE DESIGN - GENERAL                 */
/* ============================================ */

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .country-flag {
        width: 60px;
        height: 40px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .stats-section,
    .why-choose-section,
    .testimonials-section,
    .countries-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* ============================================ */
/* ANIMATIONS                                  */
/* ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply animations */
.stat-item,
.feature-item,
.testimonial-card,
.country-item {
    animation: fadeInUp 0.6s ease-out;
}

.cta-section:hover {
    animation: pulse 2s infinite;
}