﻿/*
 * Right Move Consultant - Main Stylesheet
 * Production-Ready CSS with Neon Lime Green Theme
 * Version: 2.0
 */

/* FALLBACK: Ensure all content is visible even if AOS fails to load */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors - Neon Lime */
    --primary: #9AF653;
    --primary-dark: #7DD43F;
    --primary-light: #B5F980;
    --primary-subtle: #E8F9D7;
    --primary-glow: rgba(154, 246, 83, 0.25);

    /* Neutrals */
    --bg-main: #F8FAFB;
    --bg-card: #FFFFFF;
    --bg-hover: #F3F4F6;
    --bg-dark: #1A1F2E;
    --bg-overlay: rgba(15, 23, 36, 0.85);
    /* Dark overlay for contrast */

    /* Grey Design System */
    --grey-badge: #76797C;
    --grey-bar: #76797C;
    --grey-light: #8A8D90;

    /* Text Colors */
    --text-primary: #1A1F2E;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-on-primary: #1A1F2E;
    --text-white: #FFFFFF;

    /* Borders */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-lime: 0 10px 30px var(--primary-glow);
    --shadow-lime-lg: 0 20px 50px var(--primary-glow);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', var(--font-sans);

    /* Spacing - 8px Grid System */
    --space-1: 0.5rem;
    /* 8px */
    --space-2: 1rem;
    /* 16px */
    --space-3: 1.5rem;
    /* 24px */
    --space-4: 2rem;
    /* 32px */
    --space-6: 3rem;
    /* 48px */
    --space-8: 4rem;
    /* 64px */

    /* Spacing Defaults */
    --section-padding: 7rem;
    --container-max: 1280px;

    /* Transitions - Premium Easing */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-luxury: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius - Rounded Corners */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
}

/* ============================================
   PREMIUM ANIMATIONS (Ken Burns & Scroll Reveal)
   ============================================ */
@keyframes heroKB {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.ken-burns {
    animation: heroKB 15s ease-out both !important;
}

.reveal-luxury {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-luxury);
}

.reveal-luxury.show {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Transitions Overrides for Luxury feel */
[data-aos] {
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1) !important;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1200ms;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 1000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display {
    font-family: var(--font-display);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    /* Reduced min size from 2.5rem */
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    /* Reduced min size from 2rem */
}

h3 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    /* Slight reduction */
}

h4 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary);
}

.text-white {
    color: var(--text-white);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed navbar */
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ken Burns Effect */
    animation: heroKB 20s ease-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
    margin-top: -2rem;
    /* Pull content up slightly on all screens */
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
        /* Reduced specific mobile top padding */
        align-items: flex-start;
        /* Align closer to top */
    }

    .hero-content {
        margin-top: 4rem;
        /* Specific visual balance for mobile */
    }
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    /* Darker green for contrast */
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 900px) {
    .mobile-order-1 {
        order: 1 !important;
    }

    .mobile-order-2 {
        order: 2 !important;
    }
}

/* ============================================
   HERO SECTION & ABOUT HERO
   ============================================ */
.hero-page,
.hero-about {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--primary-subtle) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {

    .hero-page,
    .hero-about {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
}


/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Split Layout for Main Sections (Text + Image) */
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        /* Stack main layout early */
        gap: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Removed grid-2 stacking here to let inner cards sit side-by-side longer */
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        /* Stack inner cards on Mobile */
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
        /* Balanced mobile padding */
    }

    .grid {
        gap: 1.5rem;
        /* Tighter gaps for smaller screens */
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-visual img {
        height: auto;
        max-height: 400px;
    }
}

/* About Statistics Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .stat-item {
        padding: 1rem;
        /* Tighter padding for mobile cards */
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {

    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
        /* Stack everything on phones */
    }

    .container {
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile Responsive - Hero Images */
@media (max-width: 768px) {
    .hero-visual {
        margin-top: 2rem;
    }

    .hero-visual img {
        height: 280px !important;
        object-fit: cover;
    }

    /* Hide floating cards on mobile to prevent overflow */
    .hero-visual .card {
        display: none;
    }

    /* Stack buttons on mobile */
    .flex.gap-4 {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: var(--shadow-lime);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lime-lg);
}

.btn-primary:focus {
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-subtle);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-secondary:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-dark {
    background: var(--text-primary);
    color: var(--text-white);
}

.btn-dark:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
}


.btn-dark:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-grey {
    background: var(--grey-badge);
    color: var(--text-white);
    border: 2px solid var(--grey-badge);
}

.btn-grey:hover {
    background: var(--grey-light);
    border-color: var(--grey-light);
    color: var(--text-white);
    transform: translateY(-2px);
}

.section-label {
    display: inline-block;
    background: var(--grey-bar);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary);
}

/* Grey Bar Full Width (for headers) */
.grey-bar {
    background: var(--grey-bar);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.grey-bar h2,
.grey-bar h3 {
    color: var(--primary);
    margin: 0;
}

/* ============================================
   ICON BADGES (Grey Background + Neon Icon)
   ============================================ */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.icon-badge-sm {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.icon-badge-lg {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
}

/* Tick mark badges for feature lists */
/* Tick mark badges for feature lists */
.tick-badge,
ul li .fa-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--grey-badge);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.875rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Country Photo Cards (Visual Style) */
.country-card {
    position: relative;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    /* Remove default padding */
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    background: #000;
    /* Black background for darker opacity effect */
}

/* Background Image Container */
.country-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, opacity 0.3s ease;
    z-index: 1;
    opacity: 0.7;
    /* Reduced opacity as requested */
}

/* Gradient Overlay */
.country-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Flag Badge */
.country-flag-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base);
}

.country-flag-overlay .fi {
    font-size: 2rem;
    border-radius: 2px;
    line-height: 1;
    /* Ensure no line-height issues */
}

/* Content (Text) */
.country-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
}

.country-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform var(--transition-base), color var(--transition-base);
    position: relative;
    padding-bottom: 0.5rem;
}

.country-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0;
    transition: all var(--transition-base);
}

/* Hover Effects */
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.country-card:hover .country-visual-bg {
    transform: scale(1.1);
    opacity: 1;
    /* Brighten on hover */
}

.country-card:hover .country-flag-overlay {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.country-card:hover h3 {
    transform: translateY(-5px);
    color: var(--text-white);
    /* Keep white or go neon? User likes simple but premium. White is cleaner with neon underline. */
}

.country-card:hover h3::after {
    width: 60px;
    opacity: 1;
}

/* Hover Effects */
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.country-card:hover .country-visual-bg {
    transform: scale(1.1);
}

.country-card:hover h3 {
    transform: translateY(-5px);
    color: var(--primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 90%;
    max-width: 1000px;
    background: rgba(118, 121, 124, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 141, 144, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .navbar {
        width: 92%;
        top: 0.75rem;
        padding: 0.6rem 1.25rem;
        border-radius: var(--radius-md);
    }
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 42px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

.logo-accent {
    color: var(--primary);
}

@media (max-width: 768px) {
    .logo {
        height: 38px;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.875rem;
    }
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-white);
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-trigger svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 50;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    padding: 1rem 1.25rem;
    background: var(--grey-bar);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-header h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 700;
}

.dropdown-items {
    max-height: 60vh;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
}

.dropdown-item:hover {
    background: var(--bg-hover);
    border-left-color: var(--primary);
    color: var(--primary-dark);
    padding-left: 1.5rem;
}

.dropdown-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.dropdown-footer {
    padding: 1rem 1.25rem;
    background: var(--bg-hover);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.dropdown-footer a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-footer a:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-main);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 200;
    overflow-y: auto;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-on-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-primary);
}

.drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-on-primary);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.drawer-nav {
    padding: 1.5rem;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.drawer-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding-left: 1rem;
    border-left: 2px solid var(--primary-subtle);
    margin-left: 1rem;
}

.drawer-submenu.open {
    max-height: 1000px;
}

.drawer-sublink {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.drawer-sublink:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 150;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION (Full Screen Background)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 36, 0.7), rgba(15, 23, 36, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 800px;
}

.hero-content.centered {
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-section .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .accent,
.hero-title .accent-gold {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    /* Center align */
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-section .hero-actions {
    justify-content: center;
    /* Center align buttons */
    gap: 1.25rem;
}

.hero-content.centered .section-label {
    margin-left: auto;
    margin-right: auto;
}

/* hero-page is now defined globally for root pages */

/* Hero Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-bg {
        object-position: 75% center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        display: none !important;
    }
}

.hero-visual {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes blob-pulse {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-hero-img {
    max-height: 600px;
    width: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(154, 246, 83, 0.3);
    z-index: 10;
}

.trust-card-1 {
    top: 15%;
    right: -10%;
    animation: float 5s ease-in-out infinite;
}

.trust-card-2 {
    bottom: 20%;
    left: -15%;
    animation: float 7s ease-in-out infinite 1s;
}

.card-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}



@media (max-width: 992px) {
    .hero-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        /* Show image on top on mobile if desired, or keep logic */
        /* Actually detailed logic: usually nice to have text first on mobile? 
           But if image is decorative, maybe last. 
           Current 'hide-mobile' was removed? No, I kept 'hide-mobile' class in HTML but might want to showing it now if it's not a background?
           Wait, HTML has <div class="hero-visual hide-mobile">.
           So it WON'T show on mobile. That's fine for now as per original design.
        */
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lime-lg);
    border-color: var(--primary);
}

/* Service Card */
.service-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--primary);
    background: var(--grey-badge);
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

@media (max-width: 768px) {
    .service-hero {
        height: 60vh;
        min-height: 400px;
    }

    .service-hero h1 {
        font-size: 2.25rem;
        /* Enforce smaller heading on mobile */
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.service-icon i {
    transition: color var(--transition-smooth);
}

.card:hover .service-icon {
    background: var(--grey-badge);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lime-lg);
    border-color: var(--primary-light);
}

.card:hover .service-icon i {
    color: var(--primary-light);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.service-arrow {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.card:hover .service-arrow {
    transform: translateX(8px);
}

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Info Card */
.info-card {
    padding: 2rem 1.5rem;
}

.info-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 2px solid var(--primary);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Country Card Section Overhaul */
.country-card {
    position: relative;
    height: 380px;
    /* Portrait aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Reverted to center */
    justify-content: center;
    padding: 0 !important;
    /* Perfect centering */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-smooth);
    background: var(--bg-card);
    text-decoration: none;
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 36, 0.2) 0%, rgba(15, 23, 36, 0.5) 100%);
    z-index: 1;
}

.country-visual-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.country-card:hover .country-visual-bg {
    transform: scale(1.1);
}

.country-badge {
    position: relative;
    z-index: 5;
    background: rgba(15, 23, 36, 0.9);
    /* Darker, more opaque background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    /* Neon Lime */
    font-weight: 800;
    /* Bolder as per reference */
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(154, 246, 83, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-base);
}

.country-card:hover .country-badge {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(154, 246, 83, 0.2);
    background: rgba(31, 41, 55, 0.95);
}

.country-badge .fi {
    font-size: 1.125rem;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .country-card {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .country-card {
        height: 280px;
        padding-bottom: 1.25rem !important;
    }

    .country-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* Testimonial Card */
.testimonial-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: var(--grey-badge);
    color: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lime);
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-name .flag {
    margin-left: 0.5rem;
    font-size: 1.25rem;
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--primary-subtle) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-title .accent {
    color: var(--primary);
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #fdfdfd;
    /* Neutral light background */
    border-top: 1px solid var(--border-light);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-badge);
    padding: 12px 24px;
    /* Slightly more padding for the larger logo */
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    width: fit-content;
}

.footer-logo-pill:hover {
    background: var(--grey-bar);
    transform: translateY(-2px);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
}

.footer-brand .logo-img {
    height: 55px;
    /* Larger logo size */
    width: auto;
    filter: none;
    transition: transform var(--transition-base);
}

.logo-text-footer {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: grey;
    /* Strong contrast */
    margin: 1rem 0 0.5rem;
}

.logo-text-footer .accent {
    color: var(--primary);
}

.footer-slogan {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: grey;
    /* Standard darkened text */
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
    /* Strong contrast */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #444;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: #444;
    /* Force dark grey */
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #444;
    /* Force dark grey */
    font-size: 0.95rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lime);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: #444;
    /* Darker grey for accessibility */
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-pill {
        margin: 0 auto 1.5rem;
        /* Center logo pill on mobile */
    }

    .footer-heading {
        color: #111 !important;
        /* Force visibility */
    }

    .footer-links {
        align-items: center;
        margin-bottom: 2rem;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        /* Increased gap for better touch targets */
    }

    .footer-contact li {
        display: flex;
        justify-content: center;
    }

    .footer-contact a {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 2rem;
        /* More breathing room */
        gap: 1.5rem;
        /* Spread icons out */
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
        right: 1.25rem;
        font-size: 1.5rem;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* Hide on mobile, show on desktop */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on desktop, show on mobile */
@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* fade-in is now opt-in via JS - content visible by default */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 100px;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--primary-subtle) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay for Readability */



.service-hero-content {
    position: relative;
    z-index: 5;
}

.service-hero-content .section-title {
    color: var(--text-white);
    /* White text for contrast on dark overlay */
}

.service-hero-content .section-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-content-section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .service-content-section {
        padding: 3rem 0;
    }
}

.service-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text {
    order: 1;
}

.service-visual {
    order: 2;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base);
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 2rem 1.5rem;
    }
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.highlight-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 3px solid var(--primary);
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 15px var(--primary-glow));
    transition: all var(--transition-smooth);
}

.highlight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.feature-list-styled {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.feature-list-styled li i {
    color: var(--primary);
    background: var(--grey-badge);
    /* Header Primary Grey */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Footer Brand & Logo Enhancements */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Control spacing via margins */
}

/* Removed redundant/conflicting logo styles */

/* Removed duplicate logo text style */

/* Removed duplicate slogan style */

.logo-text-footer .accent {
    color: var(--primary);
}

.footer-brand p {
    margin-bottom: 1.75rem;
    /* Space before socials */
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 350px;
}

.footer-brand .footer-socials {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
}

/* Responsive Redesign for Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        /* Tightened gap for mobile flow */
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand .logo {
        margin-bottom: 0.25rem;
        /* Minimal gap between logo and name */
    }

    .logo-text-footer {
        margin-bottom: 1rem;
        font-size: 1.4rem;
        /* Slightly smaller for mobile scaling */
    }

    .footer-brand .footer-socials {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-brand p {
        margin: 0 auto 1.5rem;
        font-size: 0.95rem;
    }
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.destination-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.destination-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Centered Variety for Countries Section */
.destination-card.centered-variety {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Variety 1: Pill Shape (Used for Single Flag) */
.flag-pill {
    padding: 0.5rem 1rem;
    background: var(--grey-badge);
    border: 2px solid var(--primary);
    border-radius: 8px;
    /* Rounded rectangle for rectangular flags */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-smooth);
    min-width: 64px;
    height: 48px;
}

/* Variety 2: Mini Badges (Used for Multiple Flags) */
.flag-mini-group {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.flag-mini {
    width: 48px;
    height: 36px;
    background: var(--grey-badge);
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.destination-card:hover .flag-pill,
.destination-card:hover .flag-mini {
    transform: translateY(-3px);
    border-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 255, 157, 0.2);
}

.destination-header-centered {
    margin-bottom: 1rem;
}

.destination-header-centered h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.destination-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.destination-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-size: 1.25rem !important;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .service-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-text {
        order: 1;
    }

    .service-visual {
        order: 2;
    }

    .highlight-card {
        padding: 3rem 2rem;
    }
}

/* ============================================
   VISUAL ENHANCEMENTS (Footer & Cards)
   ============================================ */
/* Footer Map Background */
footer {
    position: relative;
    overflow: hidden;
}

.footer-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../images/world map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    /* Increased slightly for visibility */
    pointer-events: none;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* Premium Country Cards */
.country-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.country-card .flag-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.08;
    transform: rotate(20deg);
    transition: all var(--transition-smooth);
    filter: grayscale(100%);
}

.country-card:hover .flag-bg {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
    filter: grayscale(0%);
}

.country-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    z-index: 2;
}

.country-card-link {
    color: var(--primary);
    font-size: 0.9em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.country-card:hover .country-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   VISUAL EFFECTS RESTORATION
   ============================================ */

/* CTA World Map Overlay */
#cta {
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    /* Behind content but above background */
}

.cta-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#cta .container {
    position: relative;
    z-index: 2;
    /* Content above overlay */
}

/* Countries Bottom Wave */
#countries {
    position: relative;
    padding-bottom: 8rem;
    /* Space for wave */
}

.section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.section-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.section-wave-bottom path {
    fill: var(--primary-subtle);
    opacity: 0.5;
}

/* Countries Grid - 4 Columns */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-card {
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image-placeholder {
    background: linear-gradient(135deg, var(--primary-subtle), var(--bg-hover));
    padding: 2.5rem;
    text-align: center;
}

.blog-image-placeholder i {
    font-size: 3rem;
    color: var(--primary);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-title {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-base);
}

.blog-link:hover {
    gap: 0.75rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.modal-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-body {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Advanced Reveal Animations */
[data-aos="reveal-left"] {
    position: relative;
    overflow: hidden;
}

[data-aos="reveal-left"]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

[data-aos="reveal-left"].aos-animate::after {
    transform: scaleX(0);
}

[data-aos="reveal-left"] img {
    opacity: 0;
    transition: opacity 0s 0.5s;
}

[data-aos="reveal-left"].aos-animate img {
    opacity: 1;
}

/* Ken Burns Triggered by AOS */
.hero-image-wrapper img.ken-burns {
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.aos-animate .hero-image-wrapper img.ken-burns {
    transform: scale(1);
}

/* Premium Card Hover Refinement */
.service-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   PREMIUM STATISTICS SECTION
   ============================================ */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-subtle) 100%);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lime-lg);
    border-color: var(--primary);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon-mini {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-badge);
    border-radius: 50%;
    border: 2px solid var(--primary);
    font-size: 1.25rem;
    color: var(--primary);
    box-shadow: var(--shadow-lime);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover .stat-icon-mini {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-lime-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animated pulse effect on hover */
.stat-item:hover .stat-number {
    animation: statPulse 0.6s ease;
}

@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Stats Grid */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   PERFORMANCE & SMOOTHNESS OPTIMIZATIONS
   ============================================ */

/* GPU Acceleration for animated elements */
.hero-image-wrapper img,
.service-card,
.info-card,
.stat-item,
.card,
.btn,
.nav-link {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Smoother Image Loading */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Consistent Hover Glow Effect */
.card:hover,
.service-card:hover,
.info-card:hover {
    box-shadow: 0 16px 40px var(--primary-glow);
}

/* Premium Button Transitions */
.btn {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
    transition-duration: 0.1s;
}

/* Staggered Fade Animation Classes */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* Smooth Fade In Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Link Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Smooth Focus States (Accessibility) */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    transition: outline-offset 0.2s ease;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--grey-badge);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.contact-item-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1rem;
}

.contact-item-content a:hover {
    color: var(--primary);
}

/* Form Styles */
.form-section {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--primary);
}

/* Footer Contact Icons with Grey Badges */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--grey-badge);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--grey-badge);
    border-radius: 50%;
    color: var(--primary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}