/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --red: #C8102E;
    --red-dark: #A00D24;
    --red-light: #FEF2F2;
    --red-glow: rgba(200, 16, 46, 0.15);
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --shadow-red: 0 10px 30px -5px rgba(200, 16, 46, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
    --font: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    background: var(--red-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.section-header p {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 1.05rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px -5px rgba(200, 16, 46, 0.35);
}

.btn-outline {
    border: 2px solid var(--red);
    color: var(--red);
    background: transparent;
}
.btn-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 600;
}
.top-bar-phone:hover { color: var(--red); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); }
.logo-subtitle { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
}
.nav-link:hover, .nav-link.active {
    color: var(--red);
    background: var(--red-light);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-radius: 8px;
}
.dropdown-menu a:hover {
    background: var(--red-light);
    color: var(--red);
}

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

/* Mobile phone CTA in header */
.header-cta-mobile {
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red);
    background: var(--red-light);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.header-cta-mobile:hover {
    background: var(--red);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.hamburger span {
    display: block;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   Hero
   =========================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--red-light) 0%, #fff 40%, #FFF5F5 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, var(--red-glow) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(200,16,46,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.hero h1 { margin-bottom: 20px; }
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    position: relative;
    width: 280px;
    height: 280px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--red-light);
}
.hero-card-pulse {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid var(--red-glow);
    animation: card-pulse 3s ease-in-out infinite;
}
@keyframes card-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0; }
}
.hero-card-icon { margin-bottom: 12px; }
.hero-card-text { text-align: center; }
.hero-card-title { display: block; font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.hero-card-sub { display: block; font-size: 1rem; color: var(--red); font-weight: 600; }

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ===========================
   Services
   =========================== */
.services {
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}
.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
}
.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    flex: 1;
}
.service-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
}

/* ===========================
   Why Us
   =========================== */
.why-us {
    padding: 80px 0;
    background: var(--gray-50);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-light);
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}
.why-card:hover .why-number { opacity: 1; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
}
.cta-box {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-size: 1.05rem;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Service Areas
   =========================== */
.areas {
    padding: 80px 0;
    background: var(--gray-50);
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.area-chip:hover, .area-chip.active {
    border-color: var(--red);
    background: var(--red-light);
    color: var(--red);
    font-weight: 600;
}

/* ===========================
   FAQ
   =========================== */
.faq {
    padding: 80px 0;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-100);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-question svg { flex-shrink: 0; transition: var(--transition); }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 0 20px;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand .footer-desc {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 0.85rem;
    padding: 4px 0;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--white); }
.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 12px;
}
.footer-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ===========================
   Floating Buttons
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.call-float {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    z-index: 999;
    transition: var(--transition);
    animation: float-bounce 3s ease-in-out infinite 0.5s;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===========================
   Animations
   =========================== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Page-specific: İletişim
   =========================== */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-card p { font-size: 0.85rem; color: var(--gray-500); }
.contact-info-card a { color: var(--red); font-weight: 600; }

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Map */
.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 400px; border: none; }

/* ===========================
   Page-specific: Hakkımızda
   =========================== */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    background: linear-gradient(135deg, var(--red-light), var(--gray-50));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--gray-500); }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--red); }
.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }

/* ===========================
   Page-specific: Hizmet Detay
   =========================== */
.page-hero {
    background: linear-gradient(135deg, var(--red-light), #fff);
    padding: 100px 0 60px;
    text-align: center;
}
.page-hero .breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.page-hero .breadcrumb a { color: var(--red); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--gray-500); max-width: 600px; margin: 0 auto; }

.service-detail { padding: 60px 0; }
.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}
.service-detail-content h2 { margin: 32px 0 12px; font-size: 1.4rem; }
.service-detail-content p { margin-bottom: 16px; color: var(--gray-500); line-height: 1.8; }
.service-detail-content ul {
    margin: 16px 0;
    padding-left: 24px;
}
.service-detail-content ul li {
    margin-bottom: 8px;
    color: var(--gray-500);
}

.service-cta-inline {
    background: var(--red-light);
    border-left: 4px solid var(--red);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
}
.service-cta-inline p { color: var(--dark); font-weight: 500; margin-bottom: 12px; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-text { display: none; }
    .top-bar-inner { justify-content: center; }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 9999;
        padding: 24px;
    }
    .nav.open { display: flex; }
    .nav-link { font-size: 1.1rem; padding: 12px 24px; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 16px;
        display: none;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu { display: block; }

    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .header-actions .btn-whatsapp span { display: none; }
    .header-actions .btn-whatsapp {
        padding: 8px;
        border-radius: 50%;
        background: transparent;
        color: var(--whatsapp);
        box-shadow: none;
        border: 1.5px solid var(--whatsapp);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-actions .btn-whatsapp:hover {
        background: var(--whatsapp);
        color: var(--white);
    }
    .header-actions .btn-whatsapp svg {
        width: 16px;
        height: 16px;
    }

    /* Mobile: hide WhatsApp, show phone CTA */
    .header-whatsapp-desktop { display: none !important; }
    .header-cta-mobile { display: inline-flex !important; }

    .hero { padding: 50px 0 80px; }
    .hero h1 { font-size: 1.8rem; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .cta-box { padding: 40px 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .call-float { display: flex; }

    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { min-height: 250px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: 1fr; }
}

/* ===========================
   iOS Safe Area Support
   =========================== */
@supports (padding: env(safe-area-inset-bottom)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .whatsapp-float {
        bottom: calc(24px + env(safe-area-inset-bottom));
        right: calc(24px + env(safe-area-inset-right));
    }
    .call-float {
        bottom: calc(24px + env(safe-area-inset-bottom));
        left: calc(24px + env(safe-area-inset-left));
    }
    .footer-bottom {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    .top-bar {
        padding-top: env(safe-area-inset-top);
    }
}

/* ===========================
   Refined Floating Buttons (Mobile)
   =========================== */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .call-float {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
    }
    .call-float svg {
        width: 20px;
        height: 20px;
    }
}
