/* ============================================================
   ULTRA-PREMIUM UI DESIGN UPGRADE v3.0 — VISACARF
   Makes every section, card, and element look truly attractive
   ============================================================ */
:root {
    /* LUXURY PALETTE */
    --luxury-navy: #0a192f;
    --luxury-gold: #c5a059;
    --luxury-gold-soft: #d4af37;
    --luxury-gold-pale: rgba(197, 160, 89, 0.1);
    --luxury-platinum: #e6e6e6;
    --luxury-slate: #606c7e;

    /* NOTE: Do NOT override --gold / --navy here, it changes the logo color.
       Use --luxury-gold directly only on premium accent elements. */

    /* AMBIENT SHADOWS */
    --premium-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --premium-shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --premium-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --premium-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(1) rotateY(0deg);
    }

    50% {
        transform: scale(1.15) rotateY(180deg);
    }

    100% {
        transform: scale(1) rotateY(360deg);
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 161, 149, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(56, 161, 149, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 161, 149, 0);
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(56, 161, 149, 0.1);
    }

    50% {
        text-shadow: 0 0 25px rgba(56, 161, 149, 0.3), 0 0 50px rgba(56, 161, 149, 0.1);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(56, 161, 149, 0.2);
    }

    50% {
        border-color: rgba(56, 161, 149, 0.5);
    }
}

@keyframes softRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== GLOBAL BODY PREMIUM FEEL ===== */
body {
    background-color: #fafbfd;
    background-image:
        radial-gradient(at 0% 0%, rgba(56, 161, 149, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(27, 61, 84, 0.03) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(56, 161, 149, 0.02) 0px, transparent 60%);
    background-attachment: fixed;
    color: #333;
    letter-spacing: -0.01em;
}

::selection {
    background: #38a195;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38a195, #1b3d54);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2d8a7e, #122a3a);
}

html {
    scroll-padding-top: 100px;
}

/* ===== PREMIUM HEADER EXTRAS ===== */
.top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-link:hover {
    color: #5bc4b8;
}

.top-link i {
    color: #5bc4b8;
}

.header-socials {
    display: flex;
    gap: 20px;
}

.header-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-socials a:hover {
    color: #5bc4b8;
    transform: translateY(-2px);
}

/* ===== PREMIUM BUTTONS ===== */
.btn-premium-gold {
    background: linear-gradient(135deg, #38a195, #2d8a7e, #5bc4b8);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #fff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(56, 161, 149, 0.35), 0 0 15px rgba(56, 161, 149, 0.1);
    border: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-premium-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-premium-gold:hover::before {
    left: 100%;
}

.btn-premium-gold:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(56, 161, 149, 0.45), 0 0 30px rgba(56, 161, 149, 0.15);
}

.btn-white-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-white-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.btn-white-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ===== SECTION TITLE UPGRADES ===== */
.section-badge {
    background: linear-gradient(135deg, rgba(56, 161, 149, 0.12), rgba(27, 61, 84, 0.08));
    border: 1px solid rgba(56, 161, 149, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 161, 149, 0.1), transparent);
    animation: slideShine 3s ease infinite;
}

.section-title {
    position: relative;
}

.section-title span {
    position: relative;
    display: inline-block;
    color: #38a195;
    background: linear-gradient(135deg, #38a195, #2d8a7e, #5bc4b8, #38a195);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: shine 5s ease-in-out infinite;
}

.section-subtitle {
    position: relative;
}


/* ===== HERO SECTION — ULTRA PREMIUM ===== */

/* Particles */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: scale(1);
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.3);
        opacity: 0;
    }
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes heroStatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(56, 161, 149, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(56, 161, 149, 0.3);
    animation: particleFloat linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    bottom: -10px;
    animation-duration: 12s;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(2) {
    left: 25%;
    bottom: -10px;
    animation-duration: 10s;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 40%;
    bottom: -10px;
    animation-duration: 14s;
    animation-delay: 4s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(4) {
    left: 55%;
    bottom: -10px;
    animation-duration: 11s;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 70%;
    bottom: -10px;
    animation-duration: 13s;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(6) {
    left: 85%;
    bottom: -10px;
    animation-duration: 9s;
    animation-delay: 5s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(7) {
    left: 15%;
    bottom: -10px;
    animation-duration: 15s;
    animation-delay: 6s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(8) {
    left: 60%;
    bottom: -10px;
    animation-duration: 11s;
    animation-delay: 7s;
    width: 5px;
    height: 5px;
}

/* Hero overlay enhancement */
.hero-overlay {
    background:
        linear-gradient(135deg,
            rgba(18, 42, 58, 0.92) 0%,
            rgba(27, 61, 84, 0.78) 25%,
            rgba(45, 99, 132, 0.55) 50%,
            rgba(56, 161, 149, 0.2) 70%,
            rgba(27, 61, 84, 0.88) 100%) !important;
}

.hero-content h1 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(56, 161, 149, 0.1);
    letter-spacing: -2px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatSoft 3s ease-in-out infinite, borderGlow 3s ease-in-out infinite;
    padding: 10px 24px !important;
}

.hero-badge i {
    color: #5bc4b8;
    text-shadow: 0 0 15px rgba(56, 161, 149, 0.6);
    font-size: 1rem;
}

.hero-dot.active {
    animation: dotPulse 2s ease-in-out infinite;
}

/* Enhanced shapes */
.hero-shapes .hero-shape {
    opacity: 0.06;
    border-radius: 50%;
}

/* ===== PREMIUM FOOTER EXTRAS ===== */
.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #5bc4b8;
}

.text-gold {
    color: #38a195;
    font-weight: 700;
}

/* ===== REVEAL ANIMATION REFINEMENT ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Gradient text */
.text-gradient-gold {
    background: linear-gradient(135deg, #5bc4b8, #38a195, #88d8cf, #38a195);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: shine 4s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 2px 15px rgba(56, 161, 149, 0.4));
}

/* Typewriter tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--font-body);
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.3s;
}

.tagline-static {
    color: rgba(255, 255, 255, 0.7);
}

.tagline-cycle {
    color: #5bc4b8;
    font-weight: 700;
    min-width: 180px;
    display: inline-block;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 20px rgba(56, 161, 149, 0.3);
}

.tagline-cursor {
    color: #5bc4b8;
    font-weight: 300;
    animation: cursorBlink 0.8s ease-in-out infinite;
    margin-left: 2px;
}

/* Hero stat cards */
.hero-stats {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.6s;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 20px;
    animation: heroStatSlideIn 0.6s ease forwards;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-stat-card:nth-child(1) {
    animation-delay: 0.8s;
}

.hero-stat-card:nth-child(2) {
    animation-delay: 1.0s;
}

.hero-stat-card:nth-child(3) {
    animation-delay: 1.2s;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(56, 161, 149, 0.3);
}

.hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(56, 161, 149, 0.25), rgba(91, 196, 184, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5bc4b8;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(56, 161, 149, 0.15);
}

.hero-stat-card strong {
    display: block;
    color: #5bc4b8;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(91, 196, 184, 0.3);
}

.hero-stat-card span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    /* Improved readability */
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Scroll-down indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: 30px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 1.5s;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}


/* ===== ABOUT SECTION — DEEP VISUAL ===== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: breathe 10s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 61, 84, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(56, 161, 149, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    transition: border-color 0.5s ease;
    pointer-events: none;
}

.about-image:hover .image-wrapper::after {
    border-color: rgba(56, 161, 149, 0.35);
}

.about-image:hover .image-wrapper {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.about-image:hover .image-wrapper img {
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

.experience-badge {
    animation: floatSoft 4s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(56, 161, 149, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
}

.check-item {
    transition: all 0.3s ease;
    padding: 6px 0;
}

.check-item:hover {
    transform: translateX(8px);
    color: #38a195;
}

.check-item i {
    filter: drop-shadow(0 2px 6px rgba(56, 161, 149, 0.3));
}


/* ===== CHOOSE CARDS — TRULY PREMIUM ===== */
.choose-section {
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.choose-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient animated bar at bottom */
.choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38a195, #5bc4b8, #38a195);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Subtle radial glow on hover */
.choose-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(56, 161, 149, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.choose-card:hover::before {
    opacity: 1;
}

.choose-card:hover::after {
    width: 100%;
}

.choose-card:hover {
    transform: translateY(-16px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(56, 161, 149, 0.12);
    border-color: rgba(56, 161, 149, 0.15);
}

.choose-card .icon-box {
    background: linear-gradient(135deg, rgba(56, 161, 149, 0.08), rgba(56, 161, 149, 0.15));
    border: 1px solid rgba(56, 161, 149, 0.1);
    box-shadow: 0 8px 25px rgba(56, 161, 149, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.choose-card:hover .icon-box {
    background: linear-gradient(135deg, #38a195, #2d8a7e);
    color: #fff;
    animation: iconPop 0.8s ease forwards;
    box-shadow: 0 12px 35px rgba(56, 161, 149, 0.35);
    border-color: transparent;
}

.choose-card:hover h3 {
    color: #38a195;
}


/* ===== ZIGZAG SERVICES — PREMIUM DEPTH ===== */
.zigzag-section {
    position: relative;
}

.zigzag-row {
    overflow: hidden;
    box-shadow: var(--premium-shadow-md);
    transition: all 0.5s ease;
    border-radius: 24px;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.zigzag-row:hover {
    box-shadow: var(--premium-shadow-lg);
    transform: translateY(-5px);
}

.zigzag-content {
    padding: 60px !important;
}

.zigzag-content h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 15px;
    color: #1b3d54;
}

.zigzag-content .subtitle {
    color: #38a195;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.zigzag-row:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.zigzag-content {
    position: relative;
    overflow: hidden;
}

.zigzag-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.zigzag-content h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.zigzag-row:hover .zigzag-content h3 {
    text-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.zigzag-image {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.zigzag-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.zigzag-row:hover .zigzag-image::after {
    opacity: 1;
}

.btn-custom {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-custom:hover::after {
    width: 300px;
    height: 300px;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


/* ===== UAE SECTION — GLASS PREMIUM ===== */
.uae-special-section {
    position: relative;
    overflow: hidden;
}

.uae-special-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
    pointer-events: none;
}

.uae-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.uae-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(20px + 2px);
    background: linear-gradient(135deg, rgba(56, 161, 149, 0), rgba(56, 161, 149, 0.3), rgba(91, 196, 184, 0.2), rgba(56, 161, 149, 0));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.uae-card:hover::before {
    opacity: 1;
    animation: gradientShift 4s ease infinite;
}

.uae-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-14px);
    border-color: rgba(56, 161, 149, 0.35) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(56, 161, 149, 0.08);
}

.uae-card h3 {
    position: relative;
}

.uae-card:hover h3 {
    text-shadow: 0 2px 20px rgba(56, 161, 149, 0.3);
}

.uae-feature {
    transition: all 0.3s ease;
    padding: 4px 0;
}

.uae-card:hover .uae-feature {
    transform: translateX(5px);
}

.uae-card:hover .uae-feature i {
    animation: pulseRing 1.5s ease infinite;
}


/* ===== COUNTRY CARDS — STUNNING ===== */
.countries-section {
    background: linear-gradient(180deg, #f4f6f9 0%, #eef1f5 50%, #f4f6f9 100%) !important;
    position: relative;
    overflow: hidden;
}

.countries-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.country-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    z-index: 15;
    transition: all 0.5s ease;
    pointer-events: none;
}

.country-card:hover::before {
    border-color: rgba(56, 161, 149, 0.5);
}

.country-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(56, 161, 149, 0.15);
}

.country-card:hover img {
    transform: scale(1.12);
    filter: brightness(1.08) saturate(1.15);
}

.country-card .overlay {
    background: linear-gradient(to top, rgba(18, 42, 58, 0.9) 0%, rgba(27, 61, 84, 0.3) 50%, transparent 100%);
    transition: all 0.5s ease;
}

.country-card:hover .overlay {
    background: linear-gradient(to top, rgba(18, 42, 58, 0.95) 0%, rgba(56, 161, 149, 0.15) 60%, transparent 100%);
}

.country-card:hover .overlay h3 {
    transform: translateY(-3px);
    text-shadow: 0 2px 15px rgba(56, 161, 149, 0.4);
}

.badge-new,
.badge-pr {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.country-card:hover .badge-new,
.country-card:hover .badge-pr {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* ===== TESTIMONIAL SECTION — WARM PREMIUM ===== */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(56, 161, 149, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    color: rgba(56, 161, 149, 0.12);
    transform: scale(1.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(56, 161, 149, 0.1);
}

.testimonial-card .stars i {
    color: #f0b429;
    filter: drop-shadow(0 2px 4px rgba(240, 180, 41, 0.3));
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    animation: wiggle 0.5s ease forwards;
}

.testimonial-card:hover .stars i:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:hover .stars i:nth-child(2) {
    animation-delay: 0.08s;
}

.testimonial-card:hover .stars i:nth-child(3) {
    animation-delay: 0.16s;
}

.testimonial-card:hover .stars i:nth-child(4) {
    animation-delay: 0.24s;
}

.testimonial-card:hover .stars i:nth-child(5) {
    animation-delay: 0.32s;
}

.testimonial-dots .dot {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-dots .dot.active {
    box-shadow: 0 0 12px rgba(56, 161, 149, 0.4);
}

.testimonial-dots .dot:hover {
    transform: scale(1.3);
}


/* ===== STATS BAR — GLOWING PREMIUM ===== */
.stats-bar {
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(56, 161, 149, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(91, 196, 184, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .stat-icon {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 0 25px rgba(56, 161, 149, 0.25);
    transition: all 0.5s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.stat-card-new {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}


/* ===== BLOG CARDS — MODERN MAGAZINE ===== */
.blog-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 61, 84, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* Gradient top accent */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #38a195, #5bc4b8, #38a195);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.blog-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s linear infinite;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(56, 161, 149, 0.08);
    border-color: rgba(56, 161, 149, 0.1);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    z-index: 5;
}

.blog-card:hover .blog-card-image::after {
    animation: slideShine 1s ease forwards;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
    filter: brightness(1.03);
}

.blog-tag {
    box-shadow: 0 4px 15px rgba(56, 161, 149, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-tag {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(56, 161, 149, 0.3);
}

.blog-read-more {
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38a195;
    transition: width 0.4s ease;
}

.blog-card:hover .blog-read-more::after {
    width: 100%;
}


/* ===== FAQ SECTION — CLEAN PREMIUM ===== */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.faq-item {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 3px solid transparent;
    border-radius: 12px;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-left-color: #38a195;
}

.faq-item.active {
    border-left-color: #38a195;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.faq-question {
    transition: padding-left 0.3s ease;
}

.faq-item:hover .faq-question {
    padding-left: 10px;
}

.faq-item.active .faq-question i {
    color: #38a195;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* ===== CTA SECTION — PREMIUM GLOW ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(56, 161, 149, 0.06);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(91, 196, 184, 0.05);
    border-radius: 50%;
    animation: breathe 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    animation: textGlow 4s ease-in-out infinite;
}


/* ===== NEWSLETTER — WARM GLOW ===== */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(56, 161, 149, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(91, 196, 184, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: breathe 12s ease-in-out infinite;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(56, 161, 149, 0.15), 0 0 0 3px rgba(56, 161, 149, 0.1);
    transform: scale(1.02);
    transition: all 0.4s ease;
}


/* ===== PREMIUM BUTTON EFFECTS ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #38a195, #2d8a7e, #38a195) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 6s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 25px rgba(56, 161, 149, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    z-index: -1;
}

.btn-primary:hover::before {
    animation: slideShine 0.8s ease forwards;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(56, 161, 149, 0.4), 0 0 20px rgba(56, 161, 149, 0.15) !important;
    filter: brightness(1.08);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.btn-blue {
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(22, 54, 92, 0.2);
}

.btn-blue::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.btn-blue:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.btn-blue:hover {
    box-shadow: 0 10px 30px rgba(22, 54, 92, 0.35);
    transform: translateY(-3px);
}

.btn-outline:hover {
    box-shadow: 0 0 15px rgba(56, 161, 149, 0.25);
    text-shadow: 0 0 6px rgba(56, 161, 149, 0.2);
}


/* ===== MV-CARD / VALUE-CARD PREMIUM ===== */
.mv-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38a195, #5bc4b8);
    transition: width 0.6s ease;
}

.mv-card:hover::before {
    width: 100%;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.mv-card:hover .icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 30px rgba(27, 61, 84, 0.25);
}

.value-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(56, 161, 149, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/* ===== MARQUEE PREMIUM ===== */
.marquee-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.country-card-mini {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.country-card-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.country-card-mini:hover::before {
    border-color: #38a195;
}

.country-card-mini:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.country-card-mini:hover img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.country-card-mini:hover span {
    color: #38a195;
}


/* ===== GLASSMORPHISM HOVER (generic) ===== */
.feature-card:hover,
.service-scroll-card:hover,
.process-step:hover,
.testimonial-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 161, 149, 0.12) !important;
}


/* ===== FOOTER PREMIUM ===== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-socials a {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 8px 20px rgba(56, 161, 149, 0.3);
}

.footer-column ul li a {
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    padding-left: 8px;
    color: #38a195;
}


/* ===== WHATSAPP PREMIUM ===== */
.whatsapp-float {
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5), 0 0 30px rgba(37, 211, 102, 0.15);
}


/* ===== CONTACT CARD ===== */
.contact-info-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #38a195;
    transition: height 0.4s ease;
}

.contact-info-card:hover::before {
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-info-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}


/* ===== 3D TILT & MAGNETIC (JS) ===== */
.tilt-card {
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}


/* ===== CURVED DIVIDERS ===== */
.curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.curve-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.curve-divider .shape-fill {
    fill: #ffffff;
}


/* ===== CURSOR TRAILER ===== */
.cursor-trailer {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #38a195;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

body:hover .cursor-trailer {
    opacity: 0.5;
}


/* ===== STAGGERED ENTRANCE ANIMATIONS ===== */
.reveal.active .choose-card,
.reveal.active .country-card,
.reveal.active .blog-card,
.reveal.active .stat-item,
.reveal.active .uae-card,
.reveal.active .faq-item {
    animation: cardEntrance 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.reveal.active .choose-card:nth-child(1),
.reveal.active .country-card:nth-child(1),
.reveal.active .blog-card:nth-child(1) {
    animation-delay: 0s;
}

.reveal.active .choose-card:nth-child(2),
.reveal.active .country-card:nth-child(2),
.reveal.active .blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.reveal.active .choose-card:nth-child(3),
.reveal.active .country-card:nth-child(3),
.reveal.active .blog-card:nth-child(3) {
    animation-delay: 0.15s;
}

.reveal.active .country-card:nth-child(4) {
    animation-delay: 0.2s;
}

.reveal.active .country-card:nth-child(5) {
    animation-delay: 0.25s;
}

.reveal.active .country-card:nth-child(6) {
    animation-delay: 0.3s;
}

.reveal.active .country-card:nth-child(7) {
    animation-delay: 0.35s;
}

.reveal.active .country-card:nth-child(8) {
    animation-delay: 0.4s;
}


/* ===== RESPONSIVE PREMIUM ===== */
@media (max-width: 768px) {

    .choose-card:hover,
    .blog-card:hover,
    .country-card:hover,
    .uae-card:hover {
        transform: translateY(-6px);
    }

    .zigzag-row:hover .zigzag-content h3 {
        transform: none;
        letter-spacing: 0;
    }

    .faq-item:hover {
        transform: translateX(3px);
    }

    .faq-item:hover .faq-question {
        padding-left: 5px;
    }

    .about-section::before,
    .about-section::after,
    .choose-section::before,
    .countries-section::before,
    .blog-section::before {
        display: none;
    }

    /* Hero responsive */
    .hero-stats {
        gap: 10px;
    }

    .hero-stat-card {
        padding: 10px 14px;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .hero-stat-card strong {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-particles {
        display: none;
    }
}

@media (max-width: 480px) {

    .choose-card:hover,
    .blog-card:hover {
        transform: translateY(-4px);
    }
}

/* ===== FLOATING SOCIAL SIDEBAR ===== */
.floating-social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.floating-social-sidebar a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.floating-social-sidebar a:hover {
    width: 60px;
    padding-left: 10px;
}

.floating-social-sidebar a.facebook {
    background-color: #3b5998;
}

.floating-social-sidebar a.twitter {
    background-color: #00acee;
}

.floating-social-sidebar a.instagram {
    background-color: #e4405f;
}

.floating-social-sidebar a.linkedin {
    background-color: #0077b5;
}

.floating-social-sidebar a.youtube {
    background-color: #ff0000;
}

.floating-social-sidebar a:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .floating-social-sidebar {
        top: auto;
        bottom: 20px;
        left: 10px;
        transform: none;
        flex-direction: row;
        border-radius: 8px;
    }

    .floating-social-sidebar a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .floating-social-sidebar a:hover {
        width: 40px;
        padding-left: 0;
        transform: translateY(-5px);
    }
}

/* ===== FLOATING SOCIAL SIDEBAR (Left) ===== */
.floating-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.floating-social-sidebar a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-social-sidebar a:hover {
    width: 60px;
    padding-left: 15px;
}

.floating-social-sidebar .fb {
    background: #3b5998;
}

.floating-social-sidebar .tw {
    background: #1da1f2;
}

.floating-social-sidebar .insta {
    background: #e1306c;
}

.floating-social-sidebar .ln {
    background: #0077b5;
}

.floating-social-sidebar .yt {
    background: #ff0000;
}

/* Mobile adaptation */
@media (max-width: 768px) {
    .floating-social-sidebar {
        display: none;
        /* Hide on small screens to avoid UI clutter */
    }
}

/* =============================================================
   FRESH UI REDESIGN — COMPLETE STRUCTURAL + VISUAL OVERHAUL
   Teal-centric premium design system
   ============================================================= */

/* ===== NEW KEYFRAMES ===== */
@keyframes gradientBgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tealPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(56, 161, 149, 0.35);
    }

    50% {
        box-shadow: 0 0 18px 4px rgba(56, 161, 149, 0.12);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== GLOBAL POLISH ===== */
body {
    animation: fadeInPage 0.5s ease-out forwards;
}

::selection {
    background: rgba(56, 161, 149, 0.18);
    color: #1b3d54;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38a195, #1b3d54);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2d8a7e, #0f1f2c);
}

/* ===== SECTION SYSTEM ===== */
.section-badge {
    background: rgba(56, 161, 149, 0.1) !important;
    border: 1px solid rgba(56, 161, 149, 0.15) !important;
    color: #38a195 !important;
}

.section-badge i {
    color: #38a195 !important;
    filter: drop-shadow(0 1px 4px rgba(56, 161, 149, 0.25));
}

.section-title {
    letter-spacing: -1px !important;
}

.section-title span {
    color: #38a195 !important;
}

.section-subtitle {
    font-size: 1.05rem !important;
    color: #6b7a8d;
}

/* ===== NAVBAR — GLASSMORPHISM ===== */
.main-header {
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(18, 42, 58, 0.94) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18),
        0 1px 0 rgba(56, 161, 149, 0.08);
}

.main-header.scrolled .nav-logo img.logo-img {
    border-color: rgba(56, 161, 149, 0.25) !important;
    box-shadow: 0 0 12px rgba(56, 161, 149, 0.1);
}

.nav-menu>li>a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #38a195;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
    width: 60%;
}

.nav-menu>li>a:hover {
    color: #5bc4b8 !important;
}

.top-bar-item i {
    color: #5bc4b8 !important;
}

/* ===== HERO POLISH ===== */
.hero-content h1 {
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: #5bc4b8 !important;
    text-shadow: 0 2px 20px rgba(56, 161, 149, 0.35);
}

.hero-btns .btn-primary {
    background: linear-gradient(135deg, #38a195, #2d8a7e, #38a195) !important;
    background-size: 200% 200% !important;
    color: #fff !important;
    box-shadow: 0 8px 30px rgba(56, 161, 149, 0.35);
}

.hero-btns .btn-primary:hover {
    box-shadow: 0 14px 40px rgba(56, 161, 149, 0.5) !important;
}

.hero-dot.active {
    background: #38a195 !important;
    box-shadow: 0 0 12px rgba(56, 161, 149, 0.5) !important;
}

/* ===== EXPERIENCE BADGE ===== */
.experience-badge {
    background: linear-gradient(135deg, #38a195, #2d8a7e) !important;
    box-shadow: 0 10px 30px rgba(56, 161, 149, 0.3) !important;
}

.experience-badge .number {
    color: #fff !important;
}

.experience-badge .label {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ===== ABOUT ACCENTS ===== */
.about-content h6 {
    color: #38a195 !important;
    position: relative;
    display: inline-block;
}

.about-content h6::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 35px;
    height: 3px;
    background: #38a195;
    border-radius: 3px;
}

.about-content h2 span {
    color: #38a195 !important;
}

.check-item i {
    color: #38a195;
}

/* ===== PROCESS STEPS ===== */
.step-number {
    background: linear-gradient(135deg, #38a195, #2d8a7e) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(56, 161, 149, 0.25);
}

.process-step {
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #38a195;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.process-step:hover::after {
    width: 40px;
}

.process-step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(56, 161, 149, 0.4);
    transition: all 0.3s ease;
}

/* ===== CHOOSE US GRID ===== */
.choose-section {
    padding: 100px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.choose-card {
    background: #ffffff;
    padding: 38px 28px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38a195, #5bc4b8, #38a195);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.choose-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 3s linear infinite;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(56, 161, 149, 0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(56, 161, 149, 0.08);
    border: 1px solid rgba(56, 161, 149, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: #38a195;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.choose-card:hover .icon-box {
    background: linear-gradient(135deg, #38a195, #2d8a7e);
    color: #fff;
    box-shadow: 0 10px 30px rgba(56, 161, 149, 0.3);
    border-color: transparent;
}

.choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.choose-card:hover h3 {
    color: #38a195;
}

.choose-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ZIGZAG SERVICES — PRO GRADIENTS ===== */
.bg-study {
    background: linear-gradient(135deg, #d4a017, #c59315, #b8860b) !important;
    color: #fff !important;
}

.bg-study h3,
.bg-study .subtitle,
.bg-study p {
    color: #fff !important;
}

.bg-study .btn-custom {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bg-work {
    background: linear-gradient(135deg, #1b6b62, #0d7a6e, #058c80) !important;
}

.bg-tourist {
    background: linear-gradient(135deg, #4a2380, #5e35b1, #6c3ec0) !important;
}

.bg-pr {
    background: linear-gradient(135deg, #8e1247, #a81557, #bf1860) !important;
}

.bg-business {
    background: linear-gradient(135deg, #283593, #3949ab, #1a237e) !important;
}

.bg-family {
    background: linear-gradient(135deg, #bf360c, #d84315, #e64a19) !important;
}

.zigzag-content {
    padding: 40px 45px !important;
}

.zigzag-content h3 {
    font-size: 1.8rem !important;
    margin-bottom: 8px;
}

.zigzag-content p {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

.zigzag-image {
    min-height: 320px !important;
}

.zigzag-content .btn-custom {
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
}

.zigzag-content .btn-custom:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
    .zigzag-content {
        padding: 30px 25px !important;
    }

    .zigzag-content h3 {
        font-size: 1.4rem !important;
    }

    .zigzag-image {
        min-height: 220px !important;
    }
}

/* ===== COUNTRIES GRID ===== */
.countries-section {
    padding: 100px 0;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.country-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.country-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 10;
    background: linear-gradient(to top,
            rgba(27, 61, 84, 0.95) 0%,
            rgba(56, 161, 149, 0.1) 60%,
            transparent 100%);
}

.country-card .overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.country-card .overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.country-card:hover .overlay {
    background: linear-gradient(to top,
            rgba(27, 61, 84, 0.98) 0%,
            rgba(56, 161, 149, 0.2) 65%,
            transparent 100%);
}

.country-card:hover .overlay h3 {
    text-shadow: 0 2px 15px rgba(56, 161, 149, 0.35);
}

.badge-pr {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #38a195, #2d8a7e);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 20;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #1b3d54, #244f6a);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 20;
}

@media (max-width: 991px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-card {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UAE SECTION ===== */
.uae-special-section {
    background: linear-gradient(135deg, #0d2137, #1b3d54 35%, #122a3a 65%, #163652);
    padding: 100px 0;
}

.uae-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.uae-card {
    padding: 40px 35px;
    border-radius: 24px;
}

.uae-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.uae-card h3 span {
    color: #5bc4b8;
}

.uae-card>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.uae-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.uae-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.uae-feature i {
    color: #5bc4b8;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .uae-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SUCCESS SECTION TEAL TINT ===== */
.success-section {
    background: linear-gradient(180deg, #f0faf8, #e8f8f5 50%, #f0faf8) !important;
}

.success-label {
    color: #38a195 !important;
    border-bottom-color: #38a195 !important;
}

.stat-card-new {
    box-shadow: 0 10px 25px rgba(56, 161, 149, 0.08) !important;
}

.stat-card-new:hover {
    box-shadow: 0 20px 50px rgba(56, 161, 149, 0.12) !important;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonials-section {
    background: linear-gradient(180deg, #f4f6f9, #ffffff) !important;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease, all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover {
    border-top-color: #38a195;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.testimonial-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-nav button:hover {
    background: #38a195;
    border-color: #38a195;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(56, 161, 149, 0.25);
}

.testimonial-card .stars i {
    color: #f0b429 !important;
    filter: drop-shadow(0 1px 3px rgba(240, 180, 41, 0.25)) !important;
}

@media (max-width: 991px) {
    .testimonial-track {
        grid-template-columns: 1fr;
    }

    .testimonial-card:nth-child(n+2) {
        display: none;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, #122a3a 0%, #1b3d54 40%, #244f6a 70%, #1b3d54 100%);
    background-size: 300% 300%;
    animation: gradientBgShift 12s ease infinite;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 25px 15px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(56, 161, 149, 0.25), transparent);
}

.stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(56, 161, 149, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #5bc4b8;
    font-size: 1.4rem;
    border: 1px solid rgba(56, 161, 149, 0.15);
    transition: all 0.5s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(56, 161, 149, 0.18);
    box-shadow: 0 0 20px rgba(56, 161, 149, 0.2);
    border-color: rgba(56, 161, 149, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-header h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38a195;
    margin-bottom: 8px;
}

.blog-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.blog-header h2 span {
    color: #38a195;
}

.blog-header p {
    color: var(--gray);
    font-size: 0.95rem;
    max-width: 500px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #38a195, #2d8a7e);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 5;
}

.blog-card-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
    color: #38a195;
    font-size: 0.7rem;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card:hover .blog-card-body h3 {
    color: #38a195;
}

.blog-card-body>p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #38a195;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.blog-read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38a195;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.blog-card:hover .blog-read-more-btn::after {
    width: 100%;
}

.blog-read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.blog-card:hover .blog-read-more-btn i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header {
        text-align: center;
        justify-content: center;
    }

    .blog-header p {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header h2 {
        font-size: 1.6rem;
    }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, #1b3d54, #122a3a 40%, #1b3d54 80%, #244f6a);
    background-size: 300% 300%;
    animation: gradientBgShift 15s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-content h2 span {
    color: #5bc4b8;
}

.newsletter-content>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 60px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px;
    transition: all 0.4s ease;
}

.newsletter-form:focus-within {
    border-color: rgba(56, 161, 149, 0.4);
    box-shadow: 0 0 30px rgba(56, 161, 149, 0.1);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 25px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form .btn-primary {
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(135deg, #38a195, #2d8a7e) !important;
    color: #fff !important;
}

.newsletter-form .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(56, 161, 149, 0.4) !important;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        gap: 10px;
        padding: 12px;
    }

    .newsletter-form .btn-primary {
        border-radius: 14px !important;
        width: 100%;
        justify-content: center;
    }

    .newsletter-content h2 {
        font-size: 1.6rem;
    }
}

/* ===== FAQ ===== */
.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-left: 4px solid #38a195 !important;
    border-color: rgba(56, 161, 149, 0.15);
}

.faq-item:hover {
    border-left-color: #38a195 !important;
}

.faq-question {
    padding: 22px 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
}

.faq-question i {
    color: #38a195;
    transition: all 0.4s ease;
    font-size: 0.85rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1b3d54, #122a3a 40%, #1b3d54 80%, #244f6a);
    background-size: 300% 300%;
    animation: gradientBgShift 12s ease infinite;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section h2 span {
    color: #5bc4b8;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btns .btn-primary {
    background: linear-gradient(135deg, #38a195, #2d8a7e) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(56, 161, 149, 0.3) !important;
}

.cta-btns .btn-primary:hover {
    box-shadow: 0 14px 40px rgba(56, 161, 149, 0.5) !important;
}

.cta-btns .btn-outline,
.cta-btns .btn-white {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.cta-btns .btn-outline:hover,
.cta-btns .btn-white:hover {
    background: #38a195 !important;
    border-color: #38a195 !important;
    color: #fff !important;
}

@media (max-width: 600px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== BUTTONS POLISH ===== */
.btn {
    letter-spacing: 0.3px;
    font-weight: 700 !important;
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(56, 161, 149, 0.4) !important;
}

.btn-white:hover {
    background: #38a195 !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(56, 161, 149, 0.3) !important;
}

/* ===== MV CARDS ===== */
.mv-card .icon {
    background: linear-gradient(135deg, #1b3d54, #244f6a) !important;
    box-shadow: 0 8px 18px rgba(27, 61, 84, 0.2);
}

.mv-card .icon i {
    color: #5bc4b8 !important;
}

.mv-card:hover .icon {
    background: linear-gradient(135deg, #38a195, #2d8a7e) !important;
    box-shadow: 0 10px 28px rgba(56, 161, 149, 0.3) !important;
}

.mv-card:hover .icon i {
    color: #fff !important;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #38a195, transparent) 1;
}

.footer-column ul li a {
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #38a195;
    transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-column ul li a:hover {
    color: #5bc4b8 !important;
}

/* ===== SMOOTH REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35) !important;
}

.whatsapp-float:hover {
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5) !important;
    transform: translateY(-3px) scale(1.05) !important;
}


/* ============================================================
   ✨ STUNNING CREATIVE EFFECTS — ADVENTURE EDITION ✨
   ============================================================ */

/* ===== AURORA GLOW BACKGROUND FOR HERO ===== */
@keyframes auroraShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(56, 161, 149, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(91, 196, 184, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(27, 61, 84, 0.08) 0%, transparent 60%);
    background-size: 400% 400%;
    animation: auroraShift 15s ease infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ===== NEON GLOW CARD BORDERS ===== */
@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(56, 161, 149, 0.1),
            0 0 15px rgba(56, 161, 149, 0.05),
            inset 0 0 5px rgba(56, 161, 149, 0.02);
    }

    50% {
        box-shadow: 0 0 15px rgba(56, 161, 149, 0.2),
            0 0 30px rgba(56, 161, 149, 0.08),
            inset 0 0 10px rgba(56, 161, 149, 0.03);
    }
}

.choose-card.premium-hover:hover {
    animation: neonPulse 2s ease-in-out infinite;
    border-color: rgba(56, 161, 149, 0.25);
}

/* ===== CREATIVE STAGGERED ENTRANCE ===== */
@keyframes swoopIn {
    0% {
        opacity: 0;
        transform: translateX(-60px) rotateY(-15deg) scale(0.9);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes swoopInRight {
    0% {
        opacity: 0;
        transform: translateX(60px) rotateY(15deg) scale(0.9);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

.zigzag-row:nth-child(odd) .zigzag-content {
    animation: swoopIn 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.zigzag-row:nth-child(even) .zigzag-content {
    animation: swoopInRight 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* ===== COUNTRY CARD ADVENTURE ZOOM ===== */
.country-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
            transparent 30%,
            rgba(10, 25, 47, 0.3) 60%,
            rgba(10, 25, 47, 0.85) 100%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.country-card:hover::before {
    background: linear-gradient(180deg,
            transparent 20%,
            rgba(56, 161, 149, 0.15) 50%,
            rgba(10, 25, 47, 0.9) 100%);
}

.country-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(56, 161, 149, 0.2);
}

.country-card:hover img {
    transform: scale(1.15);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== SHIMMERING SECTION DIVIDERS ===== */
@keyframes shimmerWave {
    0% {
        opacity: 0.3;
        transform: translateX(-10%);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
        transform: translateX(10%);
    }
}

.section-divider svg {
    filter: drop-shadow(0 2px 8px rgba(56, 161, 149, 0.08));
}

.section-divider .shape-fill {
    animation: shimmerWave 8s ease-in-out infinite alternate;
}

/* ===== GLASSMORPHISM TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 161, 149, 0.08);
    border-radius: 24px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 161, 149, 0.04), transparent);
    animation: slideShine 4s ease infinite;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(56, 161, 149, 0.1);
    border-color: rgba(56, 161, 149, 0.15);
}

/* ===== STATS BAR NEON GLOW ===== */
.stats-bar {
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(56, 161, 149, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(91, 196, 184, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-item:hover .stat-icon {
    animation: iconPop 0.6s ease forwards;
    box-shadow: 0 0 25px rgba(56, 161, 149, 0.3);
}

/* ===== UAE CARDS CREATIVE GLASS ===== */
.uae-card {
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.uae-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #5bc4b8, #38a195, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.uae-card:hover::before {
    opacity: 1;
}

.uae-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(91, 196, 184, 0.25) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(56, 161, 149, 0.1);
}

/* ===== BLOG CARD CREATIVE EFFECTS ===== */
.blog-card {
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(56, 161, 149, 0.1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.12);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-tag {
    backdrop-filter: blur(10px);
    background: rgba(56, 161, 149, 0.9) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-read-more-btn {
    position: relative;
    overflow: hidden;
}

.blog-read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38a195, #5bc4b8);
    transition: width 0.4s ease;
}

.blog-read-more-btn:hover::after {
    width: 100%;
}

/* ===== MARQUEE CARD CREATIVITY ===== */
.country-card-mini {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.country-card-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(56, 161, 149, 0.3), transparent, rgba(91, 196, 184, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.country-card-mini:hover::before {
    opacity: 1;
}

.country-card-mini:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(56, 161, 149, 0.15);
}

/* ===== CREATIVE CURSOR TRAILER ===== */
.cursor-trailer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 161, 149, 0.3) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* ===== ENHANCED WHATSAPP FLOAT ===== */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }

    70% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s ease infinite !important;
}

/* ===== ABOUT SECTION PARALLAX DEPTH ===== */
.experience-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    backdrop-filter: blur(10px);
}

.experience-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

/* ===== CREATIVE PARTNERS HOVER ===== */
.p-logo {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.p-logo:hover {
    transform: scale(1.15) translateY(-5px) !important;
    opacity: 1 !important;
    filter: drop-shadow(0 8px 20px rgba(56, 161, 149, 0.2));
}

/* ===== MEGA DROPDOWN GLASS EFFECT (DESKTOP ONLY) ===== */
@media (min-width: 992px) {
    .mega-dropdown {
        backdrop-filter: blur(20px) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(56, 161, 149, 0.08);
        border-radius: 16px !important;
    }

    .mega-dropdown a:hover {
        background: rgba(56, 161, 149, 0.06) !important;
        color: #38a195 !important;
        padding-left: 28px;
    }
}

/* ===== MEGA DROPDOWN MOBILE OVERRIDE ===== */
@media (max-width: 991px) {
    .mega-dropdown {
        background: rgba(10, 25, 47, 0.98) !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .mega-dropdown a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 12px 25px 12px 35px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .mega-dropdown a:hover {
        background: rgba(56, 161, 149, 0.15) !important;
        color: #5bc4b8 !important;
        padding-left: 42px !important;
    }

    .mega-dropdown a i {
        color: #5bc4b8 !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }

    .mega-dropdown .view-more a {
        color: #5bc4b8 !important;
        font-weight: 600 !important;
    }
}

/* ===== ABOUT GRID — MAGIC IMAGE GLOW ===== */
.about-image .image-wrapper:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15), 0 0 60px rgba(56, 161, 149, 0.08) !important;
}

/* ===== SMOOTH PAGE LOAD ===== */
@keyframes pageLoad {
    from {
        opacity: 0;
        filter: blur(3px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

body {
    animation: pageLoad 0.6s ease-out;
}

/* ===== CREATIVE SECTION BACKGROUNDS ===== */
.choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(91, 196, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: breathe 12s ease-in-out infinite 2s;
}

/* ===== PROCESS CARDS CREATIVE GLOW ===== */
.choose-card[style*="border-top"] {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.choose-card[style*="border-top"]:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ===== ENHANCED SCROLLBAR GLOW ===== */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5bc4b8, #38a195, #1b3d54) !important;
    box-shadow: 0 0 8px rgba(56, 161, 149, 0.3);
}

/* ===== LINK UNDERLINE MAGIC ===== */
.nav-menu>a::after,
.nav-dropdown>.nav-drop-trigger::after {
    background: linear-gradient(90deg, #38a195, #5bc4b8) !important;
    border-radius: 3px;
    height: 3px;
}

/* ===== RESPONSIVE PREMIUM EFFECTS ===== */
@media (max-width: 768px) {
    .hero-stats {
        gap: 10px;
    }

    .hero-stat-card {
        padding: 10px 14px;
    }

    .btn-premium-gold,
    .btn-white-glass {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .country-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .zigzag-content {
        padding: 35px !important;
    }

    .choose-card:hover {
        transform: translateY(-8px);
    }
}