/* ================================
   Bi Dünya Nakliyat - Modern CSS
   Renk Paleti: Mavi & Turuncu
   ================================ */

/* CSS Variables */
:root {
    --primary: #1a56db;
    --primary-dark: #0e3ba0;
    --primary-light: #3b7dff;
    --primary-bg: #e8f0fe;
    --secondary: #f97316;
    --secondary-dark: #e05d00;
    --secondary-light: #fb923c;
    --secondary-bg: #fff4e6;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --white: #ffffff;
    --bg: #f8fafc;
    --bg-2: #f1f5f9;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);
    --shadow-primary: 0 10px 30px -5px rgba(26, 86, 219, 0.3);
    --shadow-secondary: 0 10px 30px -5px rgba(249, 115, 22, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1a365d 40%, #1e40af 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--secondary);
}

/* ================================
   PRELOADER
   ================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    color: var(--white);
}

.truck-loader {
    font-size: 4rem;
    animation: truckMove 1.5s ease-in-out infinite;
    color: var(--secondary);
    margin-bottom: 20px;
}

@keyframes truckMove {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

.loader-road {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-road::after {
    content: '';
    display: block;
    width: 60%;
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
    animation: roadMove 1.2s ease-in-out infinite;
}

@keyframes roadMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.loader-container p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ================================
   BACK TO TOP
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(26, 86, 219, 0.4);
}

/* ================================
   WHATSAPP FLOAT
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 998;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
}

/* ================================
   HEADER / NAVBAR
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
    transition: var(--transition);
}

.header.scrolled .top-bar {
    display: none;
}

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

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--secondary);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background: var(--gradient-secondary);
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--secondary);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-3);
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-bg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-secondary);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

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

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

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

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

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -5px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--white);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 30%;
    background: var(--secondary);
    opacity: 0.08;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(15px, -15px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--secondary-light);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typed-text {
    color: var(--secondary-light);
    min-height: 1.2em;
    display: inline-block;
}

.cursor {
    color: var(--secondary);
    animation: blink 1s step-end infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-feature i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Hero Visual - Card Stack */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    height: 500px;
    width: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    transition: var(--transition-slow);
    cursor: default;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.05) !important;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.floating-card span {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.floating-card small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-1 i { color: var(--secondary); }

.card-2 {
    top: 10px;
    right: 20px;
    animation: cardFloat2 7s ease-in-out infinite;
}

.card-2 i { color: #60a5fa; }

.card-3 {
    bottom: 100px;
    left: 0;
    animation: cardFloat3 5s ease-in-out infinite;
}

.card-3 i { color: #34d399; }

.card-4 {
    bottom: 80px;
    right: 10px;
    animation: cardFloat4 8s ease-in-out infinite;
}

.card-4 i { color: #fbbf24; }

.hero-truck-illustration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.08);
    animation: truckBounce 3s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

@keyframes cardFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -12px); }
}

@keyframes truckBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.section-badge i {
    color: var(--secondary);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   STATISTICS SECTION
   ================================ */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 16px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-lighter);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
    group: true;
}

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

.service-card.featured {
    background: var(--gradient-hero);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 40px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.service-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.1);
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.15);
    color: var(--secondary);
}

.service-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
}

.service-card.featured .service-number {
    opacity: 0.15;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255,255,255,0.8);
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--dark-3);
    padding: 4px 0;
}

.service-card.featured .service-features li {
    color: rgba(255,255,255,0.9);
}

.service-features i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
    color: var(--secondary);
}

.service-card.featured .service-link {
    color: var(--secondary-light);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-card {
    position: absolute;
    background: var(--gradient-hero);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.about-img-card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.about-img-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-img-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.main-card {
    top: 0;
    left: 0;
    width: 280px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.secondary-card {
    bottom: 40px;
    right: 0;
    width: 260px;
    background: var(--gradient-secondary) !important;
    box-shadow: var(--shadow-secondary);
    z-index: 2;
}

.about-experience-badge {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    border: 4px solid var(--secondary);
}

.exp-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-desc {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--secondary-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-highlight-item:hover .highlight-icon {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: rotate(-5deg);
}

.about-highlight-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-highlight-item p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
    padding: 100px 0;
    background: var(--bg);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: var(--gray-lighter);
    z-index: 0;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-secondary);
    border-radius: 10px;
    transition: width 2s ease-out;
}

.process-line.animated::after {
    width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-primary);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 65px;
    height: 65px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--secondary);
    transition: var(--transition);
}

.step-content:hover .step-icon {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ================================
   WHY US SECTION
   ================================ */
.why-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.why-section .section-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--secondary-light);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.why-section .section-header h2 {
    color: var(--white);
}

.why-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    color: var(--white);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--secondary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--bg);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-lighter);
    background: var(--white);
    color: var(--gray);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover {
    transform: scale(1.02);
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.gallery-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.gallery-card p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 115, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ================================
   QUOTE SECTION
   ================================ */
.quote-section {
    padding: 100px 0;
    background: var(--white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.quote-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.quote-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.quote-benefits {
    margin-bottom: 36px;
}

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-3);
}

.quote-benefit i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.quote-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mini-contact:hover {
    background: var(--primary-bg);
}

.mini-contact i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mini-contact small {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}

.mini-contact strong {
    font-size: 1rem;
    color: var(--dark);
}

/* Quote Form */
.quote-form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
}

.form-header {
    background: var(--gradient-primary);
    padding: 20px 28px;
    color: var(--white);
}

.form-header h3 {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-form {
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-3);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--dark-3);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.9rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray-lighter);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-item {
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   REGIONS SECTION
   ================================ */
.regions-section {
    padding: 100px 0;
    background: var(--bg);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.region-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    cursor: default;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.region-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.region-card h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.region-card span {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: var(--primary-bg);
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 36px;
    border: 1px solid var(--gray-lighter);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.contact-form h3 i {
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .btn-full {
    margin-top: 16px;
}

/* ================================
   MAP SECTION
   ================================ */
.map-section {
    padding: 0 0 80px;
    background: var(--white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-lighter);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.footer-col > p {
    font-size: 0.92rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul a i {
    font-size: 0.65rem;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

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

.footer-bottom p {
    font-size: 0.88rem;
    opacity: 0.6;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    opacity: 0.6;
}

.footer-badges i {
    color: var(--secondary);
}

/* ================================
   MODAL
   ================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: modalSlide 0.3s ease;
}

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

.modal-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ================================
   AOS-like Animations
   ================================ */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-line {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta span {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        margin: 0 auto 36px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-stack {
        height: 350px;
    }
    
    .main-card {
        width: 220px;
    }
    
    .secondary-card {
        width: 200px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .about-image-stack {
        height: 300px;
    }
    
    .main-card {
        width: 200px;
        padding: 20px;
    }
    
    .secondary-card {
        width: 180px;
        padding: 20px;
    }
    
    .about-experience-badge {
        width: 110px;
        height: 110px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header, .back-to-top, .whatsapp-float, #preloader {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
