/* =================================================================== */
/* INTELLEXPRESS THEME - COMPLETE STYLES FROM YOUR HTML                */
/* =================================================================== */


/* აიქონების და ფონტების იძულებითი გააქტიურება */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap');

body {
    font-family: 'Noto Sans Georgian', sans-serif !important;
}

/* Font Awesome-ის სელექტორების გასწორება */
.fa, .fas, .fab, .far, .fa-solid, .fa-brands {
    font-family: "Font Awesome 6 Free" !important; /* FA 6.x ვერსიისთვის */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900 !important;
}

.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

:root {
    --primary-red: #D3122E;
    --dark-red: #a10b20;
    --primary-black: #1A1A1A;
    --text-grey: #555;
    --light-bg: #f4f6f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Noto Sans Georgian', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    color: inherit; 
}
ul { 
    list-style: none; 
}
img { 
    max-width: 100%; 
    height: auto; 
    display: block;
}
button { 
    cursor: pointer; 
    font-family: inherit; 
    border: none; 
    outline: none; 
}

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

.section { 
    padding: 80px 0; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.section-title { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    font-weight: 800; 
    color: var(--primary-black);
    line-height: 1.2;
}
.section-titles { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    font-weight: 800; 
    color: white;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.title-bar { 
    width: 80px; 
    height: 4px; 
    background: linear-gradient(to right, var(--primary-red), #ff5252); 
    margin: 0 auto; 
    border-radius: 2px;
}


/* --- Dropdown Menu Styles --- */
.nav-links {
    position: relative;
    z-index: 100;
}

.nav-links li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white, #fff);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color, #e0e0e0);
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    width: 100%;
}

.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--primary-black, #1A1A1A);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-links .sub-menu a:hover {
    background: rgba(211, 18, 46, 0.05);
    color: var(--primary-red, #D3122E);
    padding-left: 25px;
}

.nav-links .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.nav-links .sub-menu .sub-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
}



.nav-links .menu-item-has-children:hover > a:after {
    transform: rotate(180deg);
    color: var(--primary-red, #D3122E);
}

/* --- Dropdown Menu Styles --- */
.nav-links {
    position: relative;
    z-index: 100;
}

.nav-links li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    width: 100%;
}

.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #1A1A1A;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links .sub-menu a:hover {
    background: rgba(211, 18, 46, 0.05);
    color: #D3122E;
    padding-left: 25px;
}

/* Dropdown arrow */
.nav-links .menu-item-has-children > a .dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-links .menu-item-has-children:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}
/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-black);
    color: #ccc;
    padding: 12px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.top-info { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center; 
    text-align: center; 
}
.top-info span { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    white-space: nowrap;
}
.top-info i { 
    color: var(--primary-red); 
    font-size: 0.9rem; 
}

/* --- Header --- */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition);
}
.logo img { 
    height: 35px; 
    width: auto; 
    transition: var(--transition);
}
.logo-img {
    height: 35px;
    width: auto;
    max-height: 35px;
}

.nav-links { 
    display: flex; 
    gap: 25px; 
}
.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-black);
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}
.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}
.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active { 
    color: var(--primary-red); 
}

.header-actions { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
}
.lang-select { 
    font-size: 0.85rem; 
    font-weight: 600; 
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    transition: var(--transition);
    white-space: nowrap;
}
.lang-select:hover {
    border-color: var(--primary-red);
}
.lang-select img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
}

/* კატეგორიების ზოლის სტილები */
.categories-bar {
    background-color: #000;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.categories-bar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.categories-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
}

/* WordPress მენიუს სტილები */
.categories-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.categories-menu li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.categories-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.categories-menu li a:hover {
    color: #ff6b00;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Fallback კატეგორიების სტილები */
.categories-fallback {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.categories-fallback .category-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.categories-fallback .category-link:hover {
    color: #ff6b00;
    background-color: rgba(255, 255, 255, 0.1);
}

/* მობილური ვერსიისთვის */
@media (max-width: 768px) {
    .categories-bar {
        padding: 8px 0;
    }
    
    .categories-wrapper {
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .categories-wrapper::-webkit-scrollbar {
        height: 3px;
    }
    
    .categories-wrapper::-webkit-scrollbar-track {
        background: #333;
    }
    
    .categories-wrapper::-webkit-scrollbar-thumb {
        background: #666;
    }
    
    .categories-menu,
    .categories-fallback {
        gap: 10px;
    }
    
    .categories-menu li a,
    .categories-fallback .category-link {
        font-size: 13px;
        padding: 4px 8px;
    }
}

/* --- ANIMATED BUTTON STYLES --- */
@keyframes btn-breathe {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(211, 18, 46, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(211, 18, 46, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(211, 18, 46, 0.2); }
}
@keyframes btn-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-agent {
    background: linear-gradient(45deg, #1A1A1A, #a10b20, #D3122E, #1A1A1A);
    background-size: 300% 300%;
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    /* Animation properties */
    animation: btn-gradient 5s ease infinite, btn-breathe 3s ease-in-out infinite;
}
.btn-agent:hover { 
    filter: brightness(1.1);
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    padding: 15px 20px;
    background: var(--primary-black);
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.mobile-actions-left {
    display: flex;
    gap: 12px;
    align-items: center;
}
.mobile-lang-select {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-lang-select img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    background: none;
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}
.mobile-menu-btn:hover {
    background: rgba(211, 18, 46, 0.1);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
    gap: 30px;
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 600px;
    padding: 20px 0;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}
.hero-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-btn {
    background: linear-gradient(to right, var(--primary-red), #ff5252);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 700;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    white-space: nowrap;
}
.hero-btn:hover { 
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(to right, var(--dark-red), var(--primary-red));
}

/* --- Slider Navigation --- */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 4;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 4;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(211, 18, 46, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* --- Currency Widget --- */
.hero-widget {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
}
.widget-tabs { 
    display: flex; 
    background: #f5f5f5; 
    border-bottom: 1px solid #eee;
}
.widget-tab {
    flex: 1;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: #777;
    transition: var(--transition);
    position: relative;
}
.widget-tab.active {
    background: var(--white);
    color: var(--primary-red);
}
.widget-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
}
.widget-body { 
    padding: 30px; 
}

/* Currency Display */
.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.currency-item:last-child {
    border-bottom: none;
}
.currency-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.currency-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 600;
}
.currency-name h4 {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 4px;
}
.currency-name span {
    font-weight: 600;
    color: var(--primary-black);
}
.currency-value {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
}
.currency-change {
    font-size: 0.75rem;
    margin-top: 4px;
    text-align: right;
}
.currency-change.positive {
    color: #00a859;
}
.currency-change.negative {
    color: var(--primary-red);
}

.widget-footer {
    margin-top: 20px;
    text-align: center;
}
.all-rates-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, var(--primary-black), #333);
    color: var(--white);
    border: none;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.all-rates-btn:hover { 
    background: linear-gradient(to right, var(--primary-red), var(--dark-red));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.update-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px;
    display: block;
}

/* --- Exchange Rates Section --- */
.rates-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.rate-card {
    background: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.rate-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.rate-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.rate-info h4 {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 5px;
}
.rate-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-black);
}
.rate-change {
    font-size: 0.8rem;
    margin-top: 5px;
}
.rate-change.positive { 
    color: #00a859; 
}
.rate-change.negative { 
    color: var(--primary-red); 
}

/* --- ფონის გლობალური ნათება (Blobs) --- */
.bg-ambient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}
.blob {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(211, 18, 46, 0.08) 0%, rgba(211, 18, 46, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}
.blob-1 { top: -150px; left: -150px; }
.blob-2 { top: -150px; right: -150px; }

/* "რატომ ინტელიექსპრესი?" სექციის სტილი */
.why-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section .section-header {
    margin-bottom: 80px;
}

.why-section .section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.why-section .title-underline {
    width: 65px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto 35px;
}

.why-section .section-header p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-grey);
    line-height: 1.8;
    font-size: 18px;
}

/* ბარათების სტილი (1-1-ში) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,1);
}

/* მსოფლიო რუკის პატერნი ფონზე */
.card-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    background-size: 400px;
    background-position: center;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

/* ზედა სქელი წითელი ხაზი */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 6px;
    background: var(--primary-red);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    z-index: 2;
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(211, 18, 46, 0.12);
}

.feature-card:hover::before {
    width: 120px;
}

/* ხატულის Glow ეფექტი */
.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-glow-bg {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(211, 18, 46, 0.15) 0%, rgba(211, 18, 46, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(0.9); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 1; }
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    box-shadow: 0 12px 30px rgba(211, 18, 46, 0.25);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.08) rotate(5deg);
}

/* გრადიენტები */
.icon-1 { background: linear-gradient(135deg, #d3122e, #a30e24); }
.icon-2 { background: linear-gradient(135deg, #d3122e, #a30e24); }
.icon-3 { background: linear-gradient(135deg, #d3122e, #a30e24); }

.feature-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--primary-black);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}
.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), #ff5252);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover:before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}
.service-card h3 { 
    margin-bottom: 15px; 
    font-size: 1.4rem; 
    font-weight: 700;
    line-height: 1.3;
}
.service-card p { 
    color: var(--text-grey); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}
.service-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.service-link:hover {
    gap: 12px;
}

/* --- App Section --- */
.app-section {
    background: linear-gradient(135deg, #f4f6f9 0%, #e8ecf3 100%);
    overflow: hidden;
    position: relative;
}
.app-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(211, 18, 46, 0.1), transparent);
    border-radius: 50%;
    transform: translate(100px, -100px);
}
.app-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.app-content { 
    flex: 1; 
    max-width: 600px; 
}
.app-image { 
    flex: 1; 
    text-align: center; 
    position: relative; 
}
.app-image img {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}
.app-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.app-features {
    margin: 25px 0;
}
.app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}
.app-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.app-feature div h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.app-feature div p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.5;
}
.app-btn-group { 
    display: flex; 
    gap: 12px; 
    margin-top: 25px; 
    flex-wrap: wrap; 
}
.store-btn {
    display: flex;
    align-items: center;
    background: var(--primary-black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    gap: 12px;
    min-width: 170px;
    box-shadow: var(--shadow-sm);
}
.store-btn:hover { 
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.store-icon { 
    font-size: 1.8rem; 
}
.store-text span { 
    display: block; 
    font-size: 0.7rem; 
    opacity: 0.8; 
    line-height: 1.2; 
}
.store-text strong { 
    font-size: 1rem; 
    font-weight: 600; 
    line-height: 1.2; 
}

/* --- Stats --- */
.stats { 
    background: linear-gradient(135deg, var(--primary-black) 0%, #2d2d2d 100%); 
    color: var(--white); 
    padding: 70px 0; 
    position: relative;
    overflow: hidden;
}
.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(211,18,46,0.05)"/></svg>');
    background-size: cover;
}
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    text-align: center; 
    position: relative;
    z-index: 1;
    gap: 30px; 
}
.stat-item {
    padding: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}
.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}
.stat-item:nth-child(odd):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}
.stat-item:nth-child(2):after,
.stat-item:nth-child(4):after {
    display: none;
}
.stat-item h2 { 
    font-size: 3rem; 
    color: var(--primary-red); 
    margin-bottom: 8px; 
    font-weight: 800;
    line-height: 1;
}
.stat-item p { 
    font-size: 1rem; 
    opacity: 0.9; 
    font-weight: 500; 
}

/* --- Enhanced Network Map --- */
.network-map {
    position: relative;
    margin-top: 40px;
}

.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.map-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: var(--white);
}

.map-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-black);
}

.map-header p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1rem;
}

.map-content {
    display: flex;
    flex: 1;
    height: auto;
    position: relative;
}

#interactiveMap {
    flex: 1;
    height: auto;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 30px;
    display: block;
}

/* NEW GRID STYLES FOR MAP CONTENT */
.map-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.country-card-display {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.country-card-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 18, 46, 0.1);
    border-color: rgba(211, 18, 46, 0.2);
}

.country-card-display.highlighted {
    border: 1px solid #D3122E;
    box-shadow: 0 4px 15px rgba(211, 18, 46, 0.1);
}

.cc-flag {
    width: 48px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.cc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #1A1A1A;
    margin-bottom: 2px;
    line-height: 1.2;
}

.cc-region {
    font-size: 0.75rem;
    color: #777;
}

.cc-badge {
    background: #ffebee;
    color: #D3122E;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.map-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #2d2d2d 100%);
    border-radius: var(--radius-lg);
    color: white;
}

.map-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.map-stat:hover {
    background: rgba(211, 18, 46, 0.2);
    transform: translateY(-5px);
}

.map-stat h4 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-weight: 700;
}

.map-stat p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.region-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.region-btn {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-grey);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #eee;
}

.region-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.region-btn:hover:not(.active) {
    background: #e9e9e9;
}

/* --- News --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}
.news-card.animated {
    opacity: 1;
    transform: translateY(0);
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.news-img {
    height: 220px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.news-card:hover .news-img {
    transform: scale(1.05);
}
.news-content { 
    padding: 25px; 
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-date { 
    font-size: 0.8rem; 
    color: #888; 
    margin-bottom: 12px; 
    display: block; 
    font-weight: 500;
}
.news-title { 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin-bottom: 12px; 
    display: block; 
    line-height: 1.4; 
    flex: 1;
}
.news-excerpt {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.news-link { 
    color: var(--primary-red); 
    font-weight: 600; 
    font-size: 0.9rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: auto; 
}
.news-link:hover {
    gap: 12px;
}

/* --- Partners --- */
.partners-section {
    padding: 50px 0;
    background: var(--light-bg);
}
.partners-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px 0;
}
.partner-logo {
    width: 130px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    background: white;
    border-radius: var(--radius);
    padding: 15px;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Footer --- */
footer { 
    background: linear-gradient(135deg, #151515 0%, #0a0a0a 100%); 
    color: #999; 
    font-size: 0.95rem; 
    position: relative;
}
.footer-top { 
    padding: 70px 0 50px; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 40px; 
}
.footer-col h4 { 
    color: var(--white); 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-red);
}
.footer-col ul li { 
    margin-bottom: 12px; 
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col ul li i {
    color: var(--primary-red);
    width: 16px;
    font-size: 0.9rem;
}
.footer-col ul li a { 
    transition: var(--transition); 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.footer-col ul li a:hover { 
    color: var(--primary-red); 
    padding-left: 5px; 
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: var(--transition);
    font-size: 1rem;
}
.footer-social a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}
.footer-newsletter {
    margin-top: 20px;
}
.newsletter-form {
    display: flex;
    margin-top: 12px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    background: #222;
    color: white;
    border-radius: var(--radius) 0 0 var(--radius);
    outline: none;
    font-size: 0.9rem;
}
.newsletter-form button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}
.newsletter-form button:hover {
    background: var(--dark-red);
}
.footer-bottom { 
    background: #0a0a0a; 
    padding: 20px 0; 
    text-align: center; 
    border-top: 1px solid #222; 
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: #777;
    transition: var(--transition);
    font-size: 0.85rem;
}
.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.8);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.mobile-menu-close:hover {
    background: rgba(255,255,255,0.1);
}
.mobile-menu-nav {
    flex: 1;
    padding: 30px 20px;
    overflow-y: auto;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-links a {
    color: white;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary-red);
    padding-left: 10px;
}
.mobile-nav-links a i {
    font-size: 1rem;
    opacity: 0.5;
    transition: var(--transition);
}
.mobile-nav-links a:hover i {
    opacity: 1;
    transform: translateX(5px);
}
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.8);
}
.mobile-menu-contact {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}
.mobile-menu-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-menu-contact i {
    color: var(--primary-red);
    width: 20px;
}

/* --- WordPress Specific Styles --- */
/* Content Area */
#main {
    min-height: 50vh;
}

/* WordPress Posts */
.entry-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--primary-black);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content a {
    color: var(--primary-red);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--dark-red);
}

/* WordPress Images */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5em 0;
}

/* WordPress Lists */
.entry-content ul,
.entry-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.entry-content li {
    margin-bottom: 0.5em;
}

/* WordPress Widgets */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-red);
}

/* WordPress Search Form */
.search-form {
    display: flex;
    margin-top: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.9rem;
}

.search-form button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
}

/* WordPress Comments */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section { padding: 70px 0; }
    .map-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero .container { 
        flex-direction: column; 
        text-align: center;
        gap: 40px;
    }
    .hero-content { 
        max-width: 100%; 
        margin-bottom: 0;
    }
    .hero-widget { 
        max-width: 500px; 
        margin: 0 auto;
    }
    .app-wrapper { flex-direction: column; }
    .app-content { 
        text-align: center; 
        max-width: 100%;
    }
    .app-image { 
        order: -1; 
        margin-bottom: 30px;
    }
    .app-image img {
        transform: none;
    }
    .app-btn-group { justify-content: center; }
    
    /* Desktop Header Actions - Hide on mobile */
    .header-actions .btn-agent,
    .header-actions .lang-select {
        display: none;
    }
    
    /* Show mobile header actions */
    .mobile-header-actions {
        display: flex;
    }
    
    .mobile-menu-btn { 
        display: flex; 
    }
    
    .nav-links { 
        display: none;
    }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-arrow {
        display: none;
    }

    /* Why section responsive */
    .why-section .section-header h2 {
        font-size: 34px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .map-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .top-bar .container { padding: 0 15px; }
    .top-info { 
        gap: 15px; 
        font-size: 0.8rem;
    }
    .hero-btn-group { 
        justify-content: center; 
        flex-direction: column;
        width: 100%;
    }
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    .services-grid,
    .news-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    .rates-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 35px; 
    }
    .header-inner {
        height: 65px;
        padding: 0 15px;
    }
    .container {
        padding: 0 15px;
    }
    .feature-card {
        padding: 40px 25px;
    }
    .why-section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .section { padding: 60px 0; }
    .hero { min-height: 500px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; }
    .section-title { font-size: 1.6rem; }
    .logo img { height: 30px; }
    .hero-btn { 
        padding: 14px 20px; 
        font-size: 0.85rem;
    }
    .rates-grid { 
        grid-template-columns: 1fr; 
        gap: 10px; 
    }
    .store-btn { 
        min-width: 100%; 
        justify-content: center;
    }
    .mobile-header-actions { 
        flex-direction: row; 
        padding: 12px 15px;
    }
    .mobile-actions-left { 
        width: 100%; 
        justify-content: space-between; 
        gap: 15px;
    }
    .btn-agent {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    .mobile-lang-select {
        font-size: 0.85rem;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-item h2 {
        font-size: 2.5rem;
    }
    .stat-item p {
        font-size: 0.9rem;
    }
    .stat-item:nth-child(odd):after {
        display: none;
    }
    .widget-body {
        padding: 25px 20px;
    }
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    .mobile-menu-nav {
        padding: 25px 15px;
    }
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 16px 0;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .why-section .section-header h2 {
        font-size: 28px;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    .feature-card h3 {
        font-size: 22px;
    }
    .map-cards-grid { grid-template-columns: 1fr; }
}