/* ================================================================
   RZV İklimlendirme - Ana Stil Dosyası
   ================================================================ */

/* ----- Google Font Import ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
    --primary: #0057b8;
    --primary-dark: #003d82;
    --primary-light: #e8f0fc;
    --secondary: #ff6b35;
    --secondary-dark: #e05520;
    --dark: #0f1c2e;
    --dark-2: #1a2d47;
    --gray: #6b7a8f;
    --gray-light: #f4f6f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #28a745;
    --shadow-sm: 0 2px 8px rgba(0,87,184,0.08);
    --shadow-md: 0 8px 30px rgba(0,87,184,0.12);
    --shadow-lg: 0 20px 60px rgba(0,87,184,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----- Utility Classes ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* Section Titles */
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e2d3d;
    margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px auto 30px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,87,184,0.35);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.topbar a:hover { color: var(--secondary); }
.topbar i { margin-right: 5px; color: var(--secondary); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}
.topbar-social a:hover { background: var(--secondary); color: var(--white); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}
.logo-text { line-height: 1.1; }
.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.logo-tagline {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-phone:hover { color: var(--primary); }
.nav-phone .phone-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, #0f1c2e 0%, #0d2a4a 40%, #0057b8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: float 8s ease-in-out infinite;
}
.particle:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -80px; animation-delay: 0s; }
.particle:nth-child(2) { width: 200px; height: 200px; bottom: 10%; left: 5%; animation-delay: 3s; }
.particle:nth-child(3) { width: 150px; height: 150px; top: 40%; right: 15%; animation-delay: 5s; }
.particle:nth-child(4) { width: 80px; height: 80px; top: 20%; left: 20%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge i { font-size: 0.9rem; }
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title span {
    background: linear-gradient(135deg, var(--secondary), #ffd470);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    gap: 32px;
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.2;
}
.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
/* Hero Right Card */
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-card-title i { color: var(--secondary); }
.hero-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hero-service-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px;
    transition: var(--transition);
    cursor: default;
}
.hero-service-item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(0,87,184,0.4);
    transform: translateY(-3px);
}
.hero-service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 10px;
}
.hero-service-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.hero-badge-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-badge-float.top-left {
    top: -20px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}
.hero-badge-float.bottom-right {
    bottom: -20px;
    right: -20px;
    animation: float 5s ease-in-out infinite reverse;
}
.float-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}
.float-title { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.float-sub { font-size: 0.68rem; color: var(--gray); }

/* ================================================================
   QUICK FEATURES BAR
   ================================================================ */
.features-bar {
    background: var(--primary);
    padding: 0;
}
.features-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.feature-bar-item:last-child { border-right: none; }
.feature-bar-item:hover { background: rgba(255,255,255,0.08); }
.feature-bar-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.feature-bar-text { line-height: 1.2; }
.feature-bar-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.feature-bar-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section { background: var(--gray-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}
.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.card-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.card-link i { transition: var(--transition); }
.service-card:hover .card-link { color: var(--secondary); }
.service-card:hover .card-link i { transform: translateX(4px); }

/* ================================================================
   STATS / COUNTER SECTION
   ================================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0,87,184,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 56px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 14px;
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.stat-number .plus {
    font-size: 2rem;
    color: var(--secondary);
}
.stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 8px;
}

/* ================================================================
   BRANDS SECTION
   ================================================================ */
.brands-section { background: var(--white); }
.brands-marquee-wrapper { overflow: hidden; position: relative; }
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
}
.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
.brands-marquee {
    display: flex;
    gap: 30px;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.brands-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-logo-item {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 70px;
    transition: var(--transition);
    flex-shrink: 0;
}
.brand-logo-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.brand-logo-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-2);
    transition: var(--transition);
    white-space: nowrap;
}
.brand-logo-item:hover span { color: var(--primary); }

/* ================================================================
   WHY US SECTION
   ================================================================ */
.whyus-section { background: var(--gray-light); }
.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.whyus-image-box { position: relative; }
.whyus-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.whyus-image-placeholder::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.whyus-exp-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.whyus-exp-badge .exp-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.whyus-exp-badge .exp-label {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}
.whyus-features { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.whyus-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.whyus-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}
.whyus-feature-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.whyus-feature-desc { font-size: 0.86rem; color: var(--gray); line-height: 1.5; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 0;
}
.cta-text .cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-text .cta-desc { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--dark);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo { margin-bottom: 18px; }
.footer-about .logo .logo-name { color: var(--white); }
.footer-about .logo .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a i { font-size: 0.7rem; color: var(--primary); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.82rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.55); }
.footer-contact-text a:hover { color: var(--white); }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float a {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: var(--transition);
}
.whatsapp-float a:hover {
    background: #1ebe5c;
    transform: scale(1.1);
}
@keyframes pulse-wa {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */
.page-hero {
    background: linear-gradient(135deg, #1a6fd8 0%, #0057b8 50%, #003d82 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 22px; line-height: 1.7; }
.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.12);
    padding: 6px 18px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.breadcrumb a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro { background: var(--white); }

/* Misyon & Vizyon */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.mv-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-4px); }
.mv-card:hover::after { transform: scaleX(1); }
.mv-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0;
}
.mv-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    color: var(--white);
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.about-image i { font-size: 4.5rem; opacity: 0.85; }
.about-image-text { font-size: 1rem; font-weight: 600; opacity: 0.75; }
.about-image-footer {
    margin-top: auto;
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.18);
    font-size: 0.85rem;
    opacity: 0.8;
    background: rgba(0,0,0,0.12);
}
.about-text .section-title { text-align: left; }
.about-text .divider { margin-left: 0; }
.about-text p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.value-card:hover::after { transform: scaleX(1); }
.value-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.value-body { display: flex; flex-direction: column; gap: 6px; }
.value-title { font-weight: 700; color: #1e2d3d; font-size: 0.97rem; margin: 0; }
.value-desc { font-size: 0.84rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-detail-section { background: var(--white); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section { background: var(--gray-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}
.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info-desc { font-size: 0.88rem; opacity: 0.7; margin-bottom: 36px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-info-item { display: flex; gap: 16px; }
.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ci-label { font-size: 0.78rem; opacity: 0.6; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.ci-value { font-size: 0.92rem; font-weight: 600; }
.ci-value a { color: var(--white); }
.contact-social { display: flex; gap: 10px; }
.contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.contact-social a:hover { background: var(--secondary); }
/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-subtitle { font-size: 0.88rem; color: var(--gray); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--gray-light);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,87,184,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-group.full { grid-column: 1 / -1; }
.form-submit { margin-top: 6px; }

/* ================================================================
   MAP SECTION
   ================================================================ */
.map-section { background: var(--white); }
.map-placeholder {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--gray);
    gap: 12px;
}
.map-placeholder i { font-size: 3rem; color: var(--primary); }
.map-placeholder p { font-size: 0.9rem; }

.map-embed {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ================================================================
   SUCCESS MESSAGE
   ================================================================ */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    display: none;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ================================================================
   ABOUT PAGE — ENHANCED HERO (İki Sütunlu)
   ================================================================ */
.about-hero { padding: 90px 0; }
.about-hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.about-hero-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
.ahc-stat { text-align: center; }
.ahc-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ahc-lbl {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.ahc-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ================================================================
   ABOUT PAGE — STORY SECTION (Görsel + Metin)
   ================================================================ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-intro-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.about-story-visual { display: flex; flex-direction: column; gap: 16px; }
.asv-main {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.asv-main::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.asv-main::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.asv-main > i { font-size: 4rem; opacity: 0.9; position: relative; z-index: 1; }
.asv-main-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.asv-main-sub {
    font-size: 0.82rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}
.asv-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.asv-info-item {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.asv-info-item:hover { border-color: var(--primary); background: var(--primary-light); }
.asv-info-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.asv-info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.asv-info-title { font-size: 0.72rem; font-weight: 700; color: var(--dark); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.asv-info-sub { font-size: 0.68rem; color: var(--gray); }

/* Feature List */
.about-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}
.afl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
}
.afl-item i { color: var(--success); font-size: 0.85rem; flex-shrink: 0; }

/* ================================================================
   ABOUT PAGE — TEAM GRID
   ================================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}
.team-card:hover::after { transform: scaleX(1); }
.team-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 2rem;
    margin: 0 auto 20px;
}
.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--dark); margin-bottom: 6px;
}
.team-role { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-exp { font-size: 0.8rem; color: var(--gray); }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .feature-bar-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .feature-bar-item:nth-child(even) { border-right: none; }
    .feature-bar-item:nth-last-child(-n+2) { border-bottom: none; }
    .whyus-grid { grid-template-columns: 1fr; }
    .whyus-image-box { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-hero-card { justify-content: center; }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .topbar { display: none; }
    /* Mobil menü */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 20px 24px;
        flex-direction: column;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        gap: 4px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 16px; border-radius: 8px; font-size: 0.97rem; }
    .hamburger { display: flex; }
    .nav-cta .btn { display: none; }
    /* Navbar telefon linkinde sadece ikon göster */
    .nav-phone span { display: none; }
    .nav-phone .phone-icon { width: 40px; height: 40px; }
    .hero { min-height: auto; }
    .hero-content { padding: 55px 0 50px; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-hero-card { flex-direction: column; gap: 16px; padding: 24px; }
    .ahc-divider { width: 40px; height: 1px; }
    .about-feature-list { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .features-bar-inner { grid-template-columns: 1fr; }
    .feature-bar-item { border-right: none; }
    .feature-bar-item:last-child { border-bottom: none; }
    .page-hero-title { font-size: 1.8rem; }
    .contact-form-card { padding: 28px 20px; }
    .contact-info-card { padding: 28px 20px; }
    .asv-info-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }
    .container { padding: 0 16px; }
    .hero-content { padding: 40px 0; }
    .hero-title { font-size: 1.65rem; }
    .hero-desc { font-size: 0.92rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { justify-content: flex-start; }
    .btn { justify-content: center; }
    .stat-number { font-size: 2.2rem; }
    .page-hero-title { font-size: 1.5rem; }
    .page-hero { padding: 55px 0; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { text-align: center; justify-content: center; }
    .brand-logo-item { min-width: 120px; height: 60px; padding: 12px 16px; }
    .contact-form-card { padding: 20px 14px; }
    .whatsapp-float { bottom: 20px; right: 16px; }
    .back-to-top { right: 16px; bottom: 88px; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .cta-text .cta-title { font-size: 1.7rem; }
}

@media (max-width: 360px) {
    .logo-tagline { display: none; }
    .hero-title { font-size: 1.4rem; }
    .section-title { font-size: 1.25rem; }
    .btn { padding: 12px 20px; font-size: 0.87rem; }
    .stat-number { font-size: 1.9rem; }
    .hero-stat-num { font-size: 1.5rem; }
    .section-badge { font-size: 0.72rem; letter-spacing: 1.5px; }
    .form-control { font-size: 0.88rem; }
    .hero-badge { font-size: 0.72rem; }
}
