/* ===========================
   GLOBAL STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #f59e0b;
    --accent-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    max-height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    animation: globeGlow 2.8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.35)) drop-shadow(0 0 20px rgba(245, 158, 11, 0.2));
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes globeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.35)) drop-shadow(0 0 20px rgba(245, 158, 11, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.5)) drop-shadow(0 0 30px rgba(245, 158, 11, 0.3));
    }
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(102, 126, 234, 0.06);
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 1.5rem);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.08);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Ensure hamburger is always visible on mobile */
@media (max-width: 600px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1002;
    }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .hero-content,
.country-hero .country-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    padding: 2rem 2.5rem;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.40);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero::after,
.country-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
    pointer-events: none;
}

.hero .hero-title,
.country-hero .country-hero-content h1 {
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

.hero .hero-subtitle,
.country-hero .country-hero-content p {
    color: rgba(255,255,255,0.90);
    line-height: 1.75;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #667eea 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===========================
   INTRO SECTION
   =========================== */

.intro {
    padding: 5rem 20px;
    background-color: var(--white);
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* ===========================
   SECTION STYLES
   =========================== */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.country-flag {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* ===========================
   FEATURED DESTINATIONS
   =========================== */

.featured-destinations {
    padding: 5rem 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.destination-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.destination-label {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-weight: 700;
    font-size: 1.8rem;
}

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===========================
   WHY CHOOSE US
   =========================== */

.why-choose-us {
    padding: 5rem 20px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    border-radius: 12px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.benefit-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials {
    padding: 5rem 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-program {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    padding: 4rem 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 600px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu a {
        padding: 0.85rem 20px;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(102, 126, 234, 0.06);
        color: var(--primary-color);
        padding-left: 24px;
    }

    .nav-menu a.active {
        background: rgba(102, 126, 234, 0.08);
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
        padding-left: 17px;
    }

    .logo-text {
        display: none;
    }

    .logo-image {
        max-height: 35px;
    }

    .navbar-content {
        padding: 0.6rem 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu.active .nav-link {
        position: relative;
    }

    /* Grid layouts mobile */
    .network-grid,
    .affiliate-grid,
    .team-grid,
    .awards-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Country page mobile */
    .country-hero {
        min-height: 45vh;
    }

    .country-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Destinations grid */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Intro section */
    .intro {
        padding: 2.5rem 20px;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    /* Company story */
    .company-story {
        padding: 2.5rem 20px;
    }

    .story-content {
        padding: 0 1rem;
    }

    /* Global network */
    .global-network,
    .affiliates-section {
        padding: 2.5rem 20px;
    }

    .network-card {
        padding: 1.25rem;
    }

    /* Team section */
    .team-section {
        padding: 2.5rem 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Awards section */
    .awards-section {
        padding: 2.5rem 20px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    /* Featured destinations */
    .featured-destinations {
        padding: 2.5rem 20px;
    }

    /* Testimonials */
    .testimonials {
        padding: 2.5rem 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* CTA section */
    .cta-section {
        padding: 2.5rem 20px;
    }

    /* Contact page */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Table */
    .comparison-table {
        overflow-x: auto;
    }
}
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Table */
    .comparison-table {
        overflow-x: auto;
    }
}

/* ===========================
   PARTNER UNIVERSITY STYLES
   =========================== */

.network-card .partner-list {
    margin-top: 1rem;
}

.network-card .partner-list h4 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.network-card .partner-list ul {
    list-style: disc inside;
    color: var(--text-secondary);
    margin: 0.25rem 0 0 1rem;
}

.network-card .partner-list ul li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

/* ===========================
   PARTNER NETWORK STYLES
   =========================== */

.global-network {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.story-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.network-card {
    background: white;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.network-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.network-card h3 i {
    color: #667eea;
}

.network-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.network-card ul li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.network-card ul li:last-child {
    border-bottom: none;
}

.partner-affiliates p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.affiliate-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.affiliate-card h4 {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.affiliate-card ul {
    list-style: disc inside;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0.8rem;
}

.affiliate-card li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

/* University Affiliates Section */
.affiliates-section {
    padding: 5rem 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.affiliates-section .story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.affiliates-section .story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.affiliates-section .story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
    border-radius: 2px;
}

.affiliates-section .story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===========================
   BLOG SECTION
   =========================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(102, 126, 234, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(102, 126, 234, 0.14);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1.8rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: white;
}

.blog-tag-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-tag-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.blog-tag-teal {
    background: linear-gradient(135deg, #38f9d7 0%, #23a6d5 100%);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.92rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.blog-card a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card a:hover {
    color: var(--secondary-color);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .destinations-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .intro {
        padding: 3rem 20px;
    }

    .featured-destinations {
        padding: 3rem 20px;
    }

    .testimonials {
        padding: 3rem 20px;
    }

    .cta-section {
        padding: 3rem 20px;
    }

    /* Grid layouts mobile */
    .network-grid,
    .affiliate-grid,
    .team-grid,
    .awards-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Country page mobile */
    .country-hero {
        min-height: 50vh;
        padding: 2rem 20px;
    }

    .country-hero h1 {
        font-size: 2rem;
    }

    .country-flag {
        width: 60px;
        height: 45px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .experience-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .info-card {
        padding: 1.5rem;
    }

    .help-section {
        padding: 3rem 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Table mobile */
    .comparison-table {
        overflow-x: auto;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }

    /* Blog mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 1.5rem;
    }

    /* Form mobile */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Destination card mobile */
    .destination-card {
        padding: 1.5rem;
    }

    .destination-info h3 {
        font-size: 1.25rem;
    }

    /* Team mobile */
    .team-card {
        padding: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    /* Awards mobile */
    .award-item {
        padding: 1.5rem;
    }

    /* Global network mobile */
    .global-network,
    .affiliates-section {
        padding: 3rem 20px;
    }

    .network-card,
    .affiliate-card {
        padding: 1.25rem;
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 20px 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
}

/* ===========================
   FORM STYLES
   =========================== */

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group button {
    width: 100%;
}

/* ===========================
   LOADING & ANIMATIONS
   =========================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animation class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SKELETON LOADING
   =========================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-text.large {
    height: 1.5rem;
    margin-bottom: 1rem;
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

/* Hide real content while skeleton is loading */
.loading .skeleton-loader {
    display: block;
}

.loading .real-content {
    display: none;
}

.skeleton-loader {
    display: none !important;
}

.real-content {
    display: block !important;
}

/* Smooth fade in when content loads */
.real-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
