/* ============================================
   CARVOX - Transportation & Logistics Template
   Modern Tech Design — Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* ---- Preloader ---- */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #0f172a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.preloader-wrapper::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.preloader-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.preloader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}

.loader {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinning ring around the logo */
.loader::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #FF6B35;
    border-right-color: rgba(255, 107, 53, 0.3);
    animation: preloaderSpin 1.2s linear infinite;
}

.loader::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 107, 53, 0.15);
    border-left-color: rgba(255, 107, 53, 0.08);
    animation: preloaderSpin 2s linear infinite reverse;
}

/* Logo image inside loader */
.loader img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    animation: preloaderPulse 2s ease-in-out infinite;
    filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(1000%) hue-rotate(346deg) brightness(100%) contrast(98%);
}

/* Fallback text logo */
.loader-logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: -0.5px;
    animation: preloaderPulse 2s ease-in-out infinite;
    line-height: 1;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.loader-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.loader-dots::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Progress bar under loader */
.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
    border-radius: 2px;
    animation: preloaderBar 1.5s ease-in-out infinite;
}

@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---- Header ---- */
.header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), var(--shadow-sm);
    position: fixed;
}

.header.scrolled .header-top-bar {
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled .header-main {
    background: transparent;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header.scrolled .logo span {
    color: var(--primary-color);
}

.header.scrolled .logo img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(1deg) brightness(103%) contrast(101%);
}

.header.scrolled .header-contact {
    color: var(--text-gray);
}

.header.scrolled .header-contact i {
    color: var(--primary-color);
}

.header.scrolled .hamburger span {
    background: var(--text-dark);
}

.header.scrolled .btn-help {
    color: var(--text-dark);
    background: transparent;
    border: none;
}

.header.scrolled .btn-help:hover {
    color: var(--primary-color);
    background: transparent;
}

.header.scrolled .dropdown-menu {
    background: white;
}

.header.scrolled .dropdown-menu a {
    color: var(--text-dark);
}

.header.scrolled .dropdown-menu a:hover {
    color: var(--primary-color);
}

.header-top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header-contact {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.header-contact i {
    color: white;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-help,
.btn-quote {
    padding: 8px 20px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 0.2px;
}

.btn-help {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.btn-help:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.header-main {
    padding: 14px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--primary-color);
}

.logo-tagline {
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.header.scrolled .logo-tagline {
    border-left-color: #e5e7eb;
}

.logo-text-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    letter-spacing: 0.1px;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link i {
    font-size: 11px;
    transition: var(--transition);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(200%);
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    margin-top: 15px;
    z-index: 100;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.header:not(.scrolled) .hamburger span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: backgroundZoom 25s ease-in-out infinite alternate;
}

@keyframes backgroundZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.25) 80%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 240px 0 150px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
}

.hero-badge-mobile {
    display: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 36px;
    opacity: 0.92;
    font-weight: 400;
    max-width: 580px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-light);
}

.btn-hero-orange {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-hero-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-hero-orange:hover::before {
    left: 100%;
}

.btn-hero-orange:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-top: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Hero Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge.animate-fade-in-up {
    animation: fadeInUpScale 1s ease-out forwards;
}

@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-description.animate-fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-buttons.animate-fade-in-up {
    animation: fadeInUpBounce 1.2s ease-out forwards;
}

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    60% {
        transform: translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Trusted Section ---- */
.trusted-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trusted-header {
    text-align: center;
    margin-bottom: 56px;
}

.trusted-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rating-value {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-text {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.trusted-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.trusted-feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.trusted-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.trusted-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.trusted-feature-card:hover .trusted-icon {
    background: var(--primary-color);
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.trusted-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.trusted-feature-card:hover .trusted-icon i {
    color: white;
}

.trusted-feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-color);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- About Section ---- */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-feature-box {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature-box:hover .about-feature-icon {
    background: var(--primary-color);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.about-feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.about-feature-box:hover .about-feature-icon i {
    color: white;
}

.about-feature-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-feature-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.75;
}

.about-stats-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 13px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-transform: lowercase;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

.testimonial-box {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.testimonial-content {
    padding-left: 100px;
}

.testimonial-content p {
    font-size: 17px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author strong {
    display: block;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* ---- Services Section ---- */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 32px 28px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 14px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

/* ---- Why Choose Section ---- */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.why-choose-card {
    text-align: center;
    padding: 44px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    background: var(--bg-white);
}

.why-choose-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-color);
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.why-choose-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon i {
    color: white;
}

.why-choose-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--text-gray);
    line-height: 1.75;
    font-size: 14px;
}

/* ---- Blog Section ---- */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
    letter-spacing: 0.3px;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.blog-tags span {
    background: var(--bg-light);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* ---- CTA Section 2 ---- */
.cta-section-2 {
    padding: 72px 0;
    background: var(--bg-white);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cta-content-2 h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.3px;
}

/* ---- Journey Section ---- */
.journey-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    padding-top: 40px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--border-color), var(--primary-color), var(--border-color));
}

.timeline-item {
    text-align: center;
    padding: 28px;
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
}

.timeline-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 14px;
}

/* ---- Pricing Section ---- */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--primary-color);
    color: white;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.2;
}

.pricing-card > p {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.65;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 15px;
    color: var(--text-gray);
    margin-left: 4px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

.pricing-note {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.pricing-note p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.pricing-note i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-stats {
    text-align: center;
    margin-bottom: 56px;
}

.testimonial-stat h3 {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.testimonial-stat p {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-item {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 16px;
}

.testimonial-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-item .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.testimonial-item .testimonial-author-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: block;
    margin: 0 auto;
}

.testimonial-item .testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonials-rating {
    text-align: center;
    margin-bottom: 56px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.location-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.location-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.location-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.location-item p {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.stats-content {
    position: relative;
    z-index: 1;
}

.stats-content h2 {
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -1px;
}

.stats-content > p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.92;
    line-height: 1.8;
}

.stats-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.stats-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stats-tags span {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

/* ---- Blog Section 2 ---- */
.blog-section-2 {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.blog-card-2 {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card-2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 107, 53, 0.12);
}

.blog-card-2 h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--text-dark);
    line-height: 1.35;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 14px;
    text-transform: lowercase;
}

.blog-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ---- Footer ---- */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: capitalize;
}

.footer-phone {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 18px;
    display: block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    display: inline-block;
}

.footer-links a:hover::before {
    width: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 13px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
}

/* ---- Back to Top Button ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.back-to-top.show {
    display: flex;
}

/* ---- About Page Specific Styles ---- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 100px;
}

.about-intro-left h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    color: var(--text-dark);
}

.about-intro-left p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-intro-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-intro-badge .badge-number {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-intro-badge h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.about-partners-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
}

.about-partners-box .partners-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-partners-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.about-partners-box p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-partners-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}

.about-partners-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

.about-partners-features i {
    color: var(--primary-color);
}

.approach-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.approach-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 36px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 72px;
}

.mission-vision-card {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mission-vision-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.mission-vision-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.mission-vision-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.worldwide-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.worldwide-contact {
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 3px;
    font-weight: 500;
}

.contact-info-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.locations-header {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.locations-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.location-card {
    background: var(--bg-white);
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.location-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.location-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.location-card p {
    font-size: 13px;
    color: var(--text-gray);
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
    text-align: center;
}

.stats-item-about h3 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stats-item-about p {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-it-works-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.how-it-works-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.how-it-works-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 18px;
    font-family: var(--font-display);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.how-it-works-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.how-it-works-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.75;
}

.team-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card-about {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card-about:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-avatar {
    width: 112px;
    height: 112px;
    background: var(--bg-gray);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--primary-color);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--border-color);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.team-avatar i {
    position: relative;
    z-index: 1;
}

.team-card-about h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.team-card-about p {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.team-stats {
    text-align: center;
    margin-top: 56px;
}

.team-stats h3 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-stats p {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 500;
}

.faq-grid-about {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item-about {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item-about:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.faq-item-about h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item-about p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ---- Utility Classes ---- */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ---- Responsive (base, more in responsive.css) ---- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-content h2 {
        font-size: 56px;
    }
}
