/* Variables & Reset */
:root {
    --primary: #2d4628;
    --primary-dark: #1a2e18;
    --secondary: #ffb800;
    --secondary-dark: #e5a600;
    --accent: #6c9c31;
    --text-dark: #1a1c19;
    --text-light: #5c635b;
    --bg-light: #fdfdfb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, #ff9d00 100%);
    --gradient-soft: linear-gradient(135deg, rgba(45, 70, 40, 0.1) 0%, rgba(108, 156, 49, 0.1) 100%);
    --shadow: 0 10px 30px rgba(45, 70, 40, 0.05);
    --shadow-lg: 0 20px 40px rgba(45, 70, 40, 0.1);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(45, 70, 40, 0.1);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.align-left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.align-left p {
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    border-bottom: 3px solid var(--secondary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo img {
    height: 45px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-call,
.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    padding: 8px 20px 8px 8px;
    border-radius: 12px;
    background: var(--gradient-gold);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.nav-call:hover,
.nav-whatsapp:hover {

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nav-call i {
    color: var(--primary);
    background: #ecf3ec;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.nav-whatsapp i {
    color: #25D366;
    background: #e8f9ee;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
}

.nav-call span,
.nav-whatsapp span {
    color: var(--text-dark);
    font-size: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 46, 24, 0.9), rgba(26, 46, 24, 0.4));
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 550px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
}

.badge i {
    color: #22c55e;
}

/* Hero Form */
.hero-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.hero-form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.hero-form-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 70, 40, 0.1);
}

/* Countries Section */
.countries {
    padding: 50px 0;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.country-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.country-img {
    position: relative;
    height: 220px;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: var(--glass);
    backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 8px;
}

.country-info {
    padding: 25px;
}

.country-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.country-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}

/* Services Section */
.services {
    padding: 50px 0;
    background: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 70, 40, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 20px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Why Us Section */
.why-us {
    padding: 50px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-card i {
    font-size: 24px;
    color: var(--primary);
    background: var(--gradient-soft);
    padding: 15px;
    border-radius: 12px;
}

.trust-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 15px;
}

.counter-card {
    padding: 50px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 70, 40, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.counter-item .count {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.counter-item .plus {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
}

.counter-item p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.student-info h4 {
    font-size: 18px;
}

.study-dest {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.review {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
}

/* Process Section */
.process {
    padding: 30px 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--secondary);
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-step:hover .step-num {
    background: var(--gradient-gold);
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.timeline-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-step p {
    font-size: 14px;
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    padding-bottom: 50px;
}

.cta-box {
    background: var(--gradient);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonials Slider */
.testimonialSwiper {
    padding: 20px 20px 60px !important;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    height: 100%;
    margin-bottom: 0;
    width: 100%;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #94a3b8;
    padding: 10px 10px 10px 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    /* Makes the logo white for the dark footer */
    opacity: 0.9;
}

.footer h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer p {
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

/* Mobile Sticky Footer (Hidden on Desktop) */
.mobile-footer {
    display: none;
}

/* Floating Elements */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .trust-badges {
        align-items: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 5px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .logo img {
        height: 45px;
    }

    .nav {
        gap: 0;
        width: 100%;
        justify-content: center;
    }

    .nav-whatsapp,
    .btn-header {
        display: none !important;
    }

    .nav-call {

        color: var(--white);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 15px;
        box-shadow: 0 4px 15px rgba(62, 93, 45, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
        width: auto;
    }

    .nav-call span {
        display: inline !important;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .nav-call i {
        font-size: 16px;
        background: transparent;
        color: var(--white);
        width: auto;
        height: auto;
    }

    .hero {
        padding: 150px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Service Cards Mobile */
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
    }

    /* CTA Box Mobile */
    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .cta-btns {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Process Steps Mobile - More Compact */
    .step-num {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
        border-width: 3px;
    }

    .timeline-step {
        margin-bottom: 30px;
    }

    .timeline-step h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .timeline-step p {
        font-size: 14px;
        line-height: 1.4;
    }

    .section-header p {
        font-size: 14px;
        margin-top: 10px;
    }

    /* Counter Cards Mobile */
    .counter-container {
        padding: 25px 15px;
    }

    .counter-item .count {
        font-size: 30px;
    }

    /* Floating WhatsApp */
    .floating-wa {
        display: none;
    }

    /* Mobile Sticky Footer */
    .mobile-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        padding: 12px 16px;
        gap: 10px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px 20px 0 0;
        z-index: 1001;
    }

    .m-footer-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 8px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: var(--transition);
        box-sizing: border-box;
    }

    .m-call {
        background-color: var(--primary-dark);
        border: 2px solid var(--primary-dark);
        color: var(--white);
    }

    .m-call:hover, .m-call:active {
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .m-book {
        background: var(--gradient-gold);
        color: var(--primary);
        border: 2px solid transparent;
        box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
        animation: primary-pulse 2s infinite ease-in-out;
    }

    .m-book:hover, .m-book:active {
        box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
    }

    .m-whatsapp {
        background-color: #25d366;
        border: 2px solid #25d366;
        color: var(--white);
    }

    .m-whatsapp:hover, .m-whatsapp:active {
        background-color: #20ba5a;
        border-color: #20ba5a;
    }

    .m-footer-item i {
        font-size: 16px;
    }

    .m-footer-item:active {
        transform: scale(0.96);
    }

    @keyframes primary-pulse {
        0% {
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
            transform: scale(1);
        }
        50% {
            box-shadow: 0 6px 25px rgba(255, 184, 0, 0.65);
            transform: scale(1.02);
        }
        100% {
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
            transform: scale(1);
        }
    }

    /* Adjust page bottom padding for mobile footer */
    body {
        padding-bottom: 80px;
    }
}