﻿:root {
    --primary: #1a3a6b;
    --primary-dark: #0f1f3d;
    --primary-light: #2d6cc0;
    --accent: #e8f0fe;
    --cta: #25d366;
    --cta-hover: #1da851;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --white: #ffffff;
    --light: #f8fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--topbar-height) + var(--header-height));
}
body.topbar-disabled { --topbar-height: 0px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Scroll Progress */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--primary-light); z-index: 10001;
    width: 0; transition: width 0.1s linear;
}

/* Top Bar */
.top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
    height: var(--topbar-height); color: var(--white); font-size: 12px; font-weight: 700;
    background: linear-gradient(90deg, #0d4f9e 0%, #0f67bd 55%, #1783d3 100%);
    box-shadow: 0 6px 18px rgba(13,79,158,.18);
    overflow: hidden;
}
.top-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); pointer-events: none; }
.top-bar-inner {
    position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
    height: 100%; gap: 18px; min-width: 0;
}
.top-bar-contact-list { display: flex; align-items: stretch; gap: 0; min-width: 0; overflow: hidden; }
.top-bar-contact {
    display: inline-flex; align-items: center; gap: 9px; min-width: 0;
    padding: 0 18px; color: rgba(255,255,255,.95); border-left: 1px solid rgba(255,255,255,.18);
    transition: background var(--transition), color var(--transition);
}
.top-bar-contact:first-child { border-left: 0; padding-left: 0; }
.top-bar-contact:hover { color: var(--white); background: rgba(255,255,255,.08); }
.top-bar-icon { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.16); color: var(--white); flex: 0 0 auto; }
.top-bar-contact-wa .top-bar-icon { background: var(--cta); }
.top-bar-text { display: grid; line-height: 1.1; min-width: 0; }
.top-bar-text small { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .35px; text-transform: uppercase; }
.top-bar-text strong { color: var(--white); font-size: 12px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-bar-contact-mail .top-bar-text strong { max-width: 210px; }
.top-bar-emergency {
    display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; height: 30px;
    padding: 0 14px; border-radius: 999px; color: var(--white); background: #ef4444;
    box-shadow: 0 10px 24px rgba(239,68,68,.28); transition: transform var(--transition), background var(--transition);
}
.top-bar-emergency:hover { color: var(--white); background: #dc2626; transform: translateY(-1px); }
.top-bar-emergency strong { font-size: 12px; font-weight: 900; white-space: nowrap; }
.top-bar-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--white); box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: topPulse 1.8s infinite; }
@keyframes topPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); } 70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* Header */
.site-header {
    position: fixed; top: var(--topbar-height); left: 0; right: 0; z-index: 9999;
    background: var(--white); height: var(--header-height);
    box-shadow: var(--shadow-sm); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex; align-items: center; justify-content: flex-start;
    width: 100%; max-width: none;
    height: 100%; gap: clamp(14px, 1.6vw, 34px);
    padding-left: clamp(22px, 3vw, 58px);
    padding-right: clamp(22px, 3vw, 58px);
}
.logo { display: flex; flex-direction: column; line-height: 1.2; flex: 0 0 auto; min-width: clamp(190px, 13vw, 235px); }
.logo-text { font-size: clamp(19px, 1.1vw, 22px); font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
.logo-sub { font-size: 11px; color: var(--text-light); font-weight: 500; }

.main-nav { display: flex; align-items: center; justify-content: flex-start; flex: 1 1 auto; min-width: 0; }
.nav-list { display: flex; align-items: center; justify-content: flex-start; gap: clamp(0px, .25vw, 4px); min-width: 0; }
.nav-item { position: relative; flex: 0 0 auto; }
.nav-link {
    display: flex; align-items: center; gap: 6px; padding: 8px clamp(9px, .72vw, 14px); font-weight: 600; font-size: clamp(13px, .72vw, 14px);
    color: var(--text); border-radius: var(--radius-sm);
    transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--accent); }
.menu-icon { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.menu-arrow { font-size: 10px; opacity: .65; transition: transform var(--transition); }
.has-mega:hover .menu-arrow { transform: rotate(180deg); }
.nav-contact {
    background: var(--primary); color: var(--white) !important;
    padding: 10px 20px; border-radius: 50px;
}
.nav-contact:hover { background: var(--primary-light) !important; color: var(--white) !important; transform: translateY(-1px); }

/* Mega Menu */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); min-width: 300px; max-width: min(920px, calc(100vw - 32px));
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all var(--transition); z-index: 9998;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-inner { padding: 20px 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.mega-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px 22px; min-width: 280px; }
.is-mega .mega-grid { min-width: min(620px, calc(100vw - 88px)); }
.mega-title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.mega-col ul { display: grid; gap: 4px; }
.mega-col ul li a {
    display: flex; align-items: center; gap: 8px; padding: 8px 10px; font-size: 13px; color: var(--text);
    border-radius: 6px; transition: all var(--transition); text-decoration: none; font-weight: 500;
}
.mega-col ul li a svg { flex-shrink: 0; opacity: 0.6; transition: opacity var(--transition); }
.mega-col ul li a:hover { background: var(--accent); color: var(--primary); padding-left: 16px; }
.mega-col ul li a:hover svg { opacity: 1; }
.mega-visual {
    display: grid; gap: 8px; color: var(--text); background: var(--light); border-radius: var(--radius-sm);
    overflow: hidden; font-weight: 700; font-size: 13px;
}
.mega-visual img { width: 100%; height: 120px; object-fit: cover; }
.mega-visual span { padding: 0 12px 12px; }
.mega-visual:hover { color: var(--primary); }
@media (min-width: 769px) {
    .mega-inner.has-visual { grid-template-columns: minmax(0, 1fr) 180px; }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(45,108,192,.14);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 10px 28px rgba(15,31,61,.10);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 10002;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.mobile-menu-toggle:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(15,31,61,.14); border-color: rgba(45,108,192,.28); }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--primary-dark); border-radius: 999px; transition: all var(--transition); }
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Breadcrumbs */
.breadcrumbs { background: var(--light); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumbs ol { display: flex; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--text-lighter); }
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs span { color: var(--text); font-weight: 500; }

/* Hero Slider */
.hero-slider { position: relative; height: 580px; overflow: hidden; background: var(--primary-dark); }
.slider-wrapper { height: 100%; }
.slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { position: relative; min-width: 100%; height: 100%; display: flex; align-items: center; isolation: isolate; }
.slide-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%); background-repeat: no-repeat; background-size: cover; background-position: center center; z-index: 0; transform: scale(1.02); transition: transform 5s ease; }
.slide.active .slide-bg { transform: scale(1.08); }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 18% 22%, rgba(255,255,255,.16), transparent 24%), 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.035'%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"); pointer-events: none; }
.slide-bg::before { content: ''; position: absolute; inset: auto 6% 8% auto; width: min(420px, 38vw); height: min(420px, 38vw); border-radius: 50%; background: rgba(255,255,255,.08); filter: blur(22px); pointer-events: none; }
.slide-2 .slide-bg, .slide-3 .slide-bg { background-size: cover; background-position: center center; }
.slide-content { position: relative; z-index: 1; max-width: 750px; color: var(--white); animation: slideIn 0.8s ease-out; }
.slide-content-center { text-align: center; margin-left: auto; margin-right: auto; }
.slide-content-center p { margin-left: auto; margin-right: auto; }
.slide-content-center .hero-buttons { justify-content: center; }
.slide-content-right { text-align: right; margin-left: auto; }
.slide-content-right p { margin-left: auto; }
.slide-content-right .hero-buttons { justify-content: flex-end; }
@keyframes slideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.16); backdrop-filter: blur(14px); padding: 8px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 50px; font-size: 13px; font-weight: 800; margin-bottom: 24px; letter-spacing: .8px; text-transform: uppercase; box-shadow: 0 14px 38px rgba(0,0,0,.16); }
.hero-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 6px rgba(37,211,102,.18); }
.hero-slider h1 { font-size: clamp(34px, 5vw, 62px); font-weight: 950; line-height: 1.05; margin-bottom: 20px; letter-spacing: -1.8px; text-wrap: balance; }
.hero-slider p { font-size: 18px; opacity: 0.95; margin-bottom: 32px; max-width: 590px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slider-modern .btn { box-shadow: 0 16px 40px rgba(0,0,0,.20); }
.hero-slider-modern .btn-secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.hero-slider-modern .btn-secondary:hover { background: rgba(255,255,255,.24); color: var(--white); transform: translateY(-2px); }

/* Slider Controls */
.slider-controls { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); z-index: 5; pointer-events: none; display: flex; justify-content: space-between; padding: 0 20px; }
.slider-arrow { pointer-events: auto; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.24); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.slider-arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.slider-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; padding: 8px 10px; border-radius: 999px; background: rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.slider-dot { width: 28px; height: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.45); background: rgba(255,255,255,.18); cursor: pointer; transition: all var(--transition); padding: 0; }
.slider-dot.active { width: 44px; background: var(--white); border-color: var(--white); box-shadow: 0 0 14px rgba(255,255,255,0.45); }
.slider-dot:hover { border-color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 15px; border: none; cursor: pointer;
    transition: all var(--transition); text-align: center;
    justify-content: center;
}
.btn-primary { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--white); color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); color: var(--white); }
.btn-wa { background: var(--cta); color: var(--white); }
.btn-wa:hover { background: var(--cta-hover); transform: translateY(-2px); color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.btn-light { background: var(--white); color: var(--primary); font-size: 16px; font-weight: 800; }
.btn-light:hover { background: var(--light); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--white); color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
    display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary-light); margin-bottom: 12px;
}
.section-header h2 { font-size: 36px; font-weight: 900; letter-spacing: -0.5px; color: var(--primary-dark); margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-light { background: var(--light); }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary-light); transform: scaleX(0); transition: transform var(--transition); z-index: 2; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.has-image { padding: 0; display: flex; flex-direction: column; }
.service-image { position: relative; height: 190px; overflow: hidden; background: var(--accent); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image .service-icon { position: absolute; left: 18px; bottom: 18px; margin: 0; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.service-card.has-image:hover .service-icon { background: var(--primary); color: var(--white); transform: scale(1.06); }
.service-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card.has-image .service-link { margin-top: auto; }
.service-icon {
    width: 56px; height: 56px; background: var(--accent); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    color: var(--primary); transition: all var(--transition); flex-shrink: 0;
}
.service-card:not(.has-image):hover .service-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.service-card p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; line-height: 1.7; }
.service-link { font-weight: 700; font-size: 14px; color: var(--primary-light); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 10px; }

/* Homepage Vitrin Services */
.home-vitrin-services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(45, 108, 192, .12), transparent 28%),
        linear-gradient(180deg, var(--white) 0%, #f7fbff 100%);
}
.home-vitrin-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26,58,107,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(26,58,107,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}
.home-vitrin-shell {
    position: relative;
    padding: 44px;
    border: 1px solid rgba(45, 108, 192, .14);
    border-radius: 28px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 24px 70px rgba(15, 31, 61, .10);
    backdrop-filter: blur(14px);
}
.home-vitrin-header { max-width: 760px; margin-left: auto; margin-right: auto; }
.home-vitrin-header .section-label {
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--accent);
    letter-spacing: 1.4px;
}
.home-vitrin-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -1.4px;
}
.home-vitrin-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.home-vitrin-card {
    min-height: 100%;
    border: 1px solid rgba(45, 108, 192, .16);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
    box-shadow: 0 16px 40px rgba(15,31,61,.06);
}
.home-vitrin-card::after {
    content: '';
    position: absolute;
    right: -34px;
    top: -34px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(45,108,192,.10);
    transition: transform var(--transition), background var(--transition);
}
.home-vitrin-card:hover::after { transform: scale(1.5); background: rgba(45,108,192,.16); }
.home-vitrin-card .service-icon {
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #fff);
    box-shadow: inset 0 0 0 1px rgba(45,108,192,.10);
}

/* Trust Section */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.trust-card {
    text-align: center; padding: 32px 20px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all var(--transition);
}
.trust-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.trust-icon {
    width: 64px; height: 64px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    color: var(--primary); font-size: 24px; transition: all var(--transition);
}
.trust-card:hover .trust-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.trust-card h4 { font-weight: 700; margin-bottom: 6px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--white); transition: all var(--transition); }
.faq-item:hover { border-color: var(--accent); }
.faq-question {
    width: 100%; padding: 20px 24px; font-size: 16px; font-weight: 600;
    text-align: left; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; color: var(--text);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow { transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 24px 20px; color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* Customer Reviews */
.customer-reviews-section { overflow: hidden; }
.reviews-showcase { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 28px; align-items: stretch; }
.reviews-summary-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.google-badge, .review-source { font-weight: 900; color: #4285f4; background: var(--white); }
.google-badge { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.reviews-summary-card h3 { font-size: 24px; color: var(--primary-dark); }
.summary-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.summary-rating strong { font-size: 36px; line-height: 1; color: var(--primary-dark); }
.review-stars { color: #fbbc04; letter-spacing: 1px; font-size: 15px; white-space: nowrap; }
.reviews-summary-card p { color: var(--text-light); font-size: 14px; }
.summary-count { display: inline-flex; width: fit-content; padding: 7px 12px; border-radius: 999px; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 13px; }
.reviews-carousel-wrap { position: relative; min-width: 0; display: flex; align-items: center; }
.reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 340px); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 4px 16px; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-height: 265px; scroll-snap-align: start; background: linear-gradient(145deg, #111827, #1f2937); color: rgba(255,255,255,.9); border-radius: 24px; padding: 22px; box-shadow: 0 18px 42px rgba(15,23,42,.22); display: flex; flex-direction: column; gap: 14px; border: 1px solid rgba(255,255,255,.08); }
.review-card-head { display: grid; grid-template-columns: 48px minmax(0, 1fr) 34px; gap: 12px; align-items: center; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.18); }
.review-avatar-initials { display: grid; place-items: center; background: linear-gradient(135deg, #4285f4, #34a853); color: var(--white); font-weight: 900; font-size: 14px; }
.review-card h3 { font-size: 16px; color: var(--white); margin-bottom: 2px; }
.review-card-head span:not(.review-source) { color: rgba(255,255,255,.56); font-size: 12px; }
.review-source { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.review-card p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.75; }
.verified-review { margin-top: auto; color: #86efac; font-size: 12px; font-weight: 800; }
.review-nav { position: absolute; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--primary-dark); box-shadow: var(--shadow); cursor: pointer; font-size: 30px; line-height: 1; display: grid; place-items: center; transition: all var(--transition); }
.review-nav:hover { transform: scale(1.08); color: var(--primary-light); }
.review-prev { left: -18px; }
.review-next { right: -18px; }

/* Blog Preview */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { aspect-ratio: 16/9; background: var(--accent); overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 20px 24px; }
.blog-card-date { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.blog-card p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.blog-card-link { font-weight: 700; font-size: 14px; color: var(--primary-light); }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 0; color: var(--white); }
.cta-banner-inner { display: flex; align-items: center; justify-content: center; text-align: center; }
.cta-banner h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; opacity: 0.9; margin-bottom: 24px; max-width: 500px; }
.cta-banner-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color var(--transition), padding var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact li a { color: rgba(255,255,255,0.65) !important; }
.footer-contact li a:hover { color: var(--white) !important; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary-light); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0; text-align: center; font-size: 13px; }

/* Floating Buttons */
.float-call, .float-wa {
    position: fixed; z-index: 9997; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); transition: all var(--transition); cursor: pointer;
}
.float-call { bottom: 24px; left: 24px; background: var(--primary); color: var(--white); animation: floatPulse 2s infinite; }
@keyframes floatPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(26,58,107,0.4); } 50% { box-shadow: 0 0 0 15px rgba(26,58,107,0); } }
.float-call:hover { transform: scale(1.1); background: var(--primary-light); }
.float-wa { bottom: 24px; right: 24px; background: var(--cta); color: var(--white); }
.float-wa:hover { transform: scale(1.1); background: var(--cta-hover); }

/* AI Chatbot */
.ai-chatbot { position: fixed; right: 24px; bottom: 92px; z-index: 9998; font-family: inherit; }
.ai-chatbot-toggle {
    position: relative; width: 56px; height: 56px; border: 0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white);
    box-shadow: var(--shadow-lg); cursor: pointer; transition: all var(--transition);
}
.ai-chatbot-toggle:hover { transform: scale(1.08); }
.ai-chatbot-pulse { position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(45,108,192,.28); animation: aiPulse 2.4s infinite; }
@keyframes aiPulse { 0% { transform: scale(.9); opacity: .8; } 75%, 100% { transform: scale(1.45); opacity: 0; } }
.ai-chatbot-panel {
    position: absolute; right: 0; bottom: 72px; width: min(360px, calc(100vw - 32px)); overflow: hidden;
    background: var(--white); border: 1px solid var(--border); border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15,23,42,.22);
}
.ai-chatbot-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.ai-chatbot-head strong { display: block; font-size: 15px; }
.ai-chatbot-head small { display: block; margin-top: 3px; opacity: .8; font-size: 12px; }
.ai-chatbot-close { border: 0; background: rgba(255,255,255,.14); color: var(--white); border-radius: 50%; width: 32px; height: 32px; font-size: 24px; line-height: 1; cursor: pointer; }
.ai-chatbot-messages { height: 320px; overflow-y: auto; padding: 16px; background: #f8fafc; }
.ai-chatbot-message { max-width: 88%; margin-bottom: 10px; padding: 11px 13px; border-radius: 16px; font-size: 14px; line-height: 1.5; word-break: break-word; }
.ai-chatbot-message.bot { background: var(--white); color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 6px; }
.ai-chatbot-message.user { margin-left: auto; background: var(--primary); color: var(--white); border-bottom-right-radius: 6px; }
.ai-chatbot-message.loading { color: var(--text-light); font-style: italic; }
.ai-chatbot-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: var(--white); }
.ai-chatbot-form input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 999px; padding: 12px 14px; font: inherit; outline: none; }
.ai-chatbot-form input:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,108,192,.12); }
.ai-chatbot-form button { border: 0; border-radius: 999px; padding: 0 16px; background: var(--cta); color: var(--white); font-weight: 700; cursor: pointer; }
.ai-chatbot-form button:disabled { opacity: .65; cursor: not-allowed; }

/* Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--text); }
.form-control {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px; color: var(--text); background: var(--white);
    transition: all var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,108,192,0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* Page Content */
.page-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.page-content h1 { font-size: 36px; font-weight: 900; margin-bottom: 24px; color: var(--primary-dark); }
.page-content h2 { font-size: 26px; font-weight: 700; margin: 32px 0 12px; color: var(--primary); }
.page-content h3 { font-size: 20px; font-weight: 700; margin: 24px 0 8px; color: var(--primary-dark); }
.page-content p { margin-bottom: 16px; line-height: 1.8; }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 24px; }
.page-content li { margin-bottom: 8px; line-height: 1.7; }
.page-content img { border-radius: var(--radius); margin: 24px 0; }

/* Modern Contact Page */
.contact-page-modern { max-width: var(--max-width); padding: 54px 24px 84px; }
.contact-reference-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr); gap: 28px; align-items: stretch; }
.contact-form-card, .contact-info-rich, .contact-map-card { overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: 0 24px 70px rgba(15,31,61,.11); }
.contact-reference-form { padding: 0 0 32px; }
.contact-card-title { display: flex; align-items: center; justify-content: center; min-height: 104px; padding: 24px; color: var(--white); background: linear-gradient(135deg, #0d4f9e, #0b5fc8); }
.contact-card-title h1, .contact-card-title h2 { margin: 0; color: var(--white); font-size: clamp(28px, 3vw, 38px); font-weight: 900; letter-spacing: -.7px; }
.contact-form-modern { max-width: none; padding: 38px 42px 0; }
.contact-alert { margin: 24px 42px 0; }
.contact-section-label { display: block; margin-bottom: 12px; color: var(--primary-dark); font-size: 18px; font-weight: 900; }
.contact-service-block { margin-bottom: 28px; }
.contact-service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.contact-service-option { position: relative; display: grid; place-items: center; gap: 10px; min-height: 112px; padding: 14px 8px; border: 1px solid rgba(148,163,184,.22); border-radius: 10px; color: var(--text); background: #fff; cursor: pointer; transition: all var(--transition); }
.contact-service-option input { position: absolute; opacity: 0; pointer-events: none; }
.contact-service-option:hover, .contact-service-option:has(input:checked) { border-color: var(--primary); box-shadow: 0 12px 28px rgba(45,108,192,.13); transform: translateY(-2px); }
.contact-service-icon { display: grid; place-items: center; height: 32px; font-size: 30px; font-weight: 900; line-height: 1; }
.contact-icon-red { color: #ef4444; } .contact-icon-blue { color: #3b82f6; } .contact-icon-green { color: #22c55e; } .contact-icon-purple { color: #a855f7; } .contact-icon-orange { color: #f97316; }
.contact-service-option strong { color: var(--primary-dark); font-size: 13px; font-weight: 900; }
.form-row-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-modern .form-group { margin-bottom: 20px; }
.contact-form-modern label { color: var(--primary-dark); font-size: 18px; font-weight: 900; }
.contact-form-modern label span { color: var(--danger); }
.contact-form-modern .form-control { min-height: 58px; border: 1px solid rgba(148,163,184,.28); border-radius: 10px; padding: 15px 22px; background: #fbfdff; font-size: 19px; box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.contact-form-modern .form-control:focus { background: var(--white); border-color: #0b5fc8; box-shadow: 0 0 0 4px rgba(11,95,200,.10); }
.contact-form-modern textarea.form-control { min-height: 142px; padding-top: 18px; }
.contact-security-box { display: flex; flex-direction: column; gap: 4px; margin: 12px 0 24px; padding: 18px 22px; border: 1px solid rgba(148,163,184,.24); border-radius: 10px; background: #f8fafc; }
.contact-security-box strong { color: var(--primary-dark); font-size: 18px; }
.contact-security-box span { color: var(--text-light); font-size: 14px; }
.contact-form-modern .form-submit { min-height: 66px; border-radius: 10px; background: linear-gradient(135deg, #0d4f9e, #0b5fc8); color: var(--white); font-size: 22px; font-weight: 900; box-shadow: 0 14px 30px rgba(13,79,158,.20); }
.contact-form-modern .form-submit:hover { background: linear-gradient(135deg, #083b78, #0d4f9e); color: var(--white); }
.contact-info-rich { position: relative; padding: 0 46px 42px; color: var(--white); background: linear-gradient(160deg, #0b63d8 0%, #0755c5 56%, #0349b2 100%); }
.contact-info-rich a { color: var(--white); }
.contact-info-title { justify-content: flex-start; gap: 16px; min-height: 104px; padding: 24px 0; background: transparent; }
.contact-title-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55); font-size: 24px; }
.contact-info-divider { height: 1px; margin-bottom: 30px; background: rgba(255,255,255,.16); }
.contact-info-illustration { position: absolute; right: 110px; top: 165px; width: 280px; height: 430px; display: grid; place-items: center; border-radius: 6px; color: rgba(255,255,255,.12); background: rgba(255,255,255,.12); font-size: 56px; font-weight: 900; line-height: .9; text-align: center; pointer-events: none; }
.contact-info-list-rich { position: relative; z-index: 1; display: grid; gap: 20px; max-width: 520px; }
.contact-info-row { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; color: var(--white); }
.contact-info-row:hover { color: var(--white); }
.contact-info-row-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 8px; background: rgba(255,255,255,.18); font-size: 24px; font-weight: 900; }
.contact-info-row small { display: block; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.contact-info-row strong { display: block; margin-top: 3px; color: var(--white); font-size: 20px; font-weight: 900; line-height: 1.28; }
.contact-tracking-card { position: relative; z-index: 1; display: grid; place-items: center; margin-top: 34px; padding: 30px 24px 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.08); text-align: center; }
.contact-live-badge { position: absolute; top: 14px; right: 22px; padding: 6px 12px; border-radius: 6px; background: #ff4d5e; color: var(--white); font-size: 12px; font-weight: 900; }
.contact-tracking-icon { display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; font-size: 38px; box-shadow: 0 0 0 16px rgba(255,255,255,.04); }
.contact-tracking-card strong { color: var(--white); font-size: 25px; font-weight: 900; }
.contact-tracking-card p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-weight: 700; }
.contact-whatsapp-cta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 76px; margin-top: 0; border-radius: 0 0 14px 14px; background: #22c55e; color: var(--white); font-size: 25px; font-weight: 900; }
.contact-whatsapp-cta:hover { color: var(--white); background: #16a34a; }
.contact-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.contact-map-card { padding: 18px; }
.contact-map-card h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; color: #0b5fc8; font-size: 20px; }
.contact-map-card h3::before { content: 'âŒ–'; color: #0b5fc8; }
.contact-map-preview { display: grid; place-items: center; min-height: 310px; overflow: hidden; border-radius: 12px; background: linear-gradient(135deg, #e8f1ff, #f8fafc 45%, #dbeafe); color: #0d4f9e; font-size: 22px; font-weight: 900; }

/* Blog Detail */
.blog-detail { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.blog-detail h1 { font-size: 36px; font-weight: 900; margin-bottom: 16px; color: var(--primary-dark); }
.blog-detail-meta { display: flex; gap: 16px; font-size: 14px; color: var(--text-light); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.blog-detail-image { border-radius: var(--radius); margin-bottom: 32px; overflow: hidden; }
.blog-detail-content { font-size: 16px; line-height: 1.9; }
.blog-detail-content h2 { font-size: 26px; font-weight: 700; margin: 40px 0 12px; color: var(--primary); }
.blog-detail-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 8px; color: var(--primary-dark); }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content ul { margin-bottom: 16px; padding-left: 24px; list-style: disc; }
.blog-detail-content li { margin-bottom: 8px; }

/* Service Detail */
.service-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); padding: 60px 0; text-align: center; }
.service-header h1 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.service-header p { font-size: 17px; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.service-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }

/* About Page */
.about-hero { padding: 80px 0 60px; text-align: center; }
.about-hero h1 { font-size: 42px; font-weight: 900; color: var(--primary-dark); margin-bottom: 16px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 40px 0 80px; align-items: center; }
.about-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.about-text p { margin-bottom: 16px; line-height: 1.8; }
.about-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--accent); }

/* Blog Listing */
.blog-listing { padding: 60px 0; }
.blog-listing-header { text-align: center; margin-bottom: 40px; }
.blog-listing-header h1 { font-size: 36px; font-weight: 900; color: var(--primary-dark); }

/* Alert */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; font-size: 14px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: var(--accent); color: var(--primary); border: 1px solid #bfdbfe; }

/* Utility */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Lazy Load */
img.lazy { opacity: 0; transition: opacity 0.4s ease; }
img.lazy.loaded { opacity: 1; }

/* ════════════════════════════════════════════════════════════════════════════
   CONTACT V2 — Referans koyu mavi iletişim tasarımı
   CDN/Tailwind kullanmadan mevcut production CSS ile uygulanır
   ════════════════════════════════════════════════════════════════════════════ */

.contact-page-v2 {
    max-width: none !important;
    margin: 0 !important;
    padding: 54px 0 84px;
    background:
        radial-gradient(circle at 18% 0%, rgba(96,165,250,.22), transparent 34%),
        linear-gradient(
            180deg,
            var(--contact-v2-bg-start, #0045a5) 0%,
            var(--contact-v2-bg-mid, #003a8c) 58%,
            var(--contact-v2-bg-end, #002f73) 100%
        );
    color: var(--white);
}
.contact-page-v2 .container { max-width: 1280px; }

.contact-v2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
    gap: 32px;
    align-items: start;
}

.contact-v2-form-card,
.contact-v2-info-card,
.contact-v2-map-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.26);
}

.contact-v2-form-card { background: #003a8c; }
.contact-v2-form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(0,0,0,.18);
}
.contact-v2-form-header h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -.8px;
}

.contact-v2-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 40px 0;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}
.contact-v2-alert--success { background: rgba(34,197,94,.16); color: #bbf7d0; border: 1px solid rgba(34,197,94,.32); }
.contact-v2-alert--error { background: rgba(239,68,68,.16); color: #fecaca; border: 1px solid rgba(239,68,68,.32); }

.contact-v2-form { padding: 34px 40px 40px; }
.contact-v2-service-wrap { margin-bottom: 26px; }
.contact-v2-label,
.contact-v2-group label {
    display: block;
    margin-bottom: 8px;
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 900;
}
.contact-v2-required { color: #fecaca; }

.contact-v2-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}
.contact-v2-service-opt { position: relative; display: block; margin: 0; cursor: pointer; }
.contact-v2-service-opt input { position: absolute; opacity: 0; pointer-events: none; }
.contact-v2-service-inner {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 112px;
    padding: 14px 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    color: var(--white);
    transition: all .22s ease;
}
.contact-v2-service-inner:hover,
.contact-v2-service-opt input:checked + .contact-v2-service-inner {
    border-color: #60a5fa;
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.contact-v2-service-opt input:focus + .contact-v2-service-inner { outline: 2px solid #93c5fd; outline-offset: 2px; }
.contact-v2-service-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: transparent; }
.contact-v2-service-icon svg { width: 30px; height: 30px; }
.contact-v2-icon-red { color: #f87171; }
.contact-v2-icon-blue { color: #60a5fa; }
.contact-v2-icon-green { color: #4ade80; }
.contact-v2-icon-purple { color: #c084fc; }
.contact-v2-icon-orange { color: #fb923c; }
.contact-v2-service-inner strong { color: var(--white); font-size: 11px; font-weight: 900; text-align: center; text-transform: uppercase; letter-spacing: .2px; }

.contact-v2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-v2-group { margin-bottom: 18px; }
.contact-v2-input {
    width: 100%;
    display: block;
    min-height: 54px;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all .2s ease;
}
.contact-v2-input::placeholder { color: rgba(255,255,255,.42); }
.contact-v2-input:focus { background: rgba(255,255,255,.12); border-color: #60a5fa; box-shadow: 0 0 0 4px rgba(96,165,250,.12); }
.contact-v2-textarea { min-height: 124px; resize: vertical; padding-top: 14px; }

.contact-v2-captcha {
    margin: 10px 0 24px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}
.contact-v2-captcha-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: #bbf7d0; font-size: 14px; }
.contact-v2-captcha-head svg { color: #4ade80; }
.contact-v2-captcha-body { display: flex; align-items: center; gap: 14px; }
.contact-v2-captcha-q { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; min-height: 48px; padding: 0 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.10); color: var(--white); font-size: 20px; font-weight: 900; }
.contact-v2-captcha-input { max-width: 150px; text-align: center; font-weight: 900; }

.contact-v2-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 16px 28px;
    border: none;
    border-radius: 16px;
    background: #2563eb;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0,31,92,.32);
    transition: all .22s ease;
}
.contact-v2-submit:hover { background: #3b82f6; transform: translateY(-1px); box-shadow: 0 22px 44px rgba(0,31,92,.38); }
.contact-v2-submit:active { transform: translateY(0); }

.contact-v2-info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,.12);
    color: var(--white);
}
.contact-v2-info-card a { color: var(--white); }
.contact-v2-info-card::before {
    content: 'USTAYA\A SOR';
    white-space: pre;
    position: absolute;
    right: 36px;
    top: 145px;
    color: rgba(255,255,255,.08);
    font-size: 64px;
    font-weight: 900;
    line-height: .86;
    text-align: right;
    pointer-events: none;
}
.contact-v2-info-header {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 24px 40px;
}
.contact-v2-info-header-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #bfdbfe; }
.contact-v2-info-header-icon svg { width: 40px; height: 40px; }
.contact-v2-info-header h2 { margin: 0; color: var(--white); font-size: clamp(26px, 3vw, 34px); font-weight: 900; letter-spacing: -.5px; }
.contact-v2-info-body { position: relative; z-index: 1; padding: 0 40px 36px; flex: 1; }
.contact-v2-info-list { display: grid; gap: 18px; }
.contact-v2-info-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 0; border-radius: 14px; background: transparent; transition: background .2s ease; }
.contact-v2-info-item:hover { background: rgba(255,255,255,.045); }
.contact-v2-info-link { text-decoration: none; }
.contact-v2-info-link:hover { color: var(--white); }
.contact-v2-info-item-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.10); color: #bfdbfe; }
.contact-v2-info-item small { display: block; color: rgba(191,219,254,.62); font-size: 11px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.contact-v2-info-item strong { display: block; margin-top: 3px; color: var(--white); font-size: 16px; font-weight: 800; line-height: 1.35; word-break: break-word; }

.contact-v2-tracking { position: relative; display: grid; place-items: center; gap: 8px; margin-top: 28px; padding: 34px 22px 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.10); text-align: center; }
.contact-v2-live-badge { position: absolute; top: 14px; right: 18px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 7px; background: #dc2626; color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: 1px; animation: contactLivePulse 2s ease-in-out infinite; }
@keyframes contactLivePulse { 0%,100% { opacity: 1; } 50% { opacity: .62; } }
.contact-v2-tracking-icon { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.08); }
.contact-v2-tracking strong { color: var(--white); font-size: 20px; font-weight: 900; }
.contact-v2-tracking p { margin: 0; color: #bfdbfe; font-size: 13px; font-weight: 700; line-height: 1.4; }
.contact-v2-wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 72px; padding: 18px 24px; background: #25d366; color: var(--white); font-size: 19px; font-weight: 900; text-decoration: none; transition: background .2s ease; flex-shrink: 0; }
.contact-v2-wa-btn:hover { background: #16a34a; color: var(--white); }

.contact-v2-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.contact-v2-map-card { background: #003a8c; padding: 20px; }
.contact-v2-map-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--white); font-size: 19px; font-weight: 900; }
.contact-v2-map-card h3 svg { flex-shrink: 0; color: #93c5fd; }
.contact-v2-map-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 18px; background: #111827; line-height: 0; }
.contact-v2-map-frame iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(1) opacity(.82) contrast(1.18); }
/* Service page CTA section */
.service-cta {

    background: var(--accent); border-radius: var(--radius); padding: 40px;
    text-align: center; margin: 40px 0;
}
.service-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.service-cta p { margin-bottom: 20px; color: var(--text); }
.service-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Regions */
.regions-hero,
.region-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 68px;
    background: radial-gradient(circle at 18% 15%, rgba(45,108,192,.35), transparent 32%), linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}
.regions-hero::after,
.region-detail-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.regions-hero .container,
.region-detail-hero-inner { position: relative; z-index: 1; }
.regions-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.regions-hero h1,
.region-detail-hero h1 { margin: 0 0 14px; max-width: 820px; font-size: clamp(36px, 5vw, 60px); line-height: 1.02; font-weight: 900; letter-spacing: -1px; }
.regions-hero p,
.region-detail-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.84); font-size: 18px; line-height: 1.75; }
.regions-listing { padding: 64px 0 80px; background: linear-gradient(180deg, #f8fafc, var(--white)); }
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.region-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.region-card:hover { transform: translateY(-7px); border-color: #bfdbfe; box-shadow: var(--shadow-lg); }
.region-card-image { display: grid; place-items: center; height: 210px; background: linear-gradient(135deg, #dbeafe, #eff6ff); color: var(--primary); overflow: hidden; }
.region-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.region-card:hover .region-card-image img { transform: scale(1.06); }
.region-card-placeholder { font-size: 54px; filter: drop-shadow(0 10px 18px rgba(30,58,138,.18)); }
.region-card-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.region-card-badge { align-self: flex-start; margin-bottom: 12px; padding: 5px 10px; border-radius: 999px; background: #dcfce7; color: #166534; font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.region-card h2 { margin: 0 0 10px; font-size: 23px; line-height: 1.2; }
.region-card h2 a { color: var(--primary-dark); text-decoration: none; }
.region-card h2 a:hover { color: var(--primary-light); }
.region-card p { flex: 1; margin: 0 0 22px; color: var(--text-light); line-height: 1.75; }
.regions-empty { max-width: 720px; margin: 0 auto; padding: 44px; border: 1px dashed #cbd5e1; border-radius: 22px; background: var(--white); text-align: center; }
.region-detail-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: 44px; align-items: center; }
.region-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.region-detail-media { overflow: hidden; border: 8px solid rgba(255,255,255,.12); border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.region-detail-media img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.region-detail-section { padding: 68px 0 84px; background: var(--white); }
.region-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.region-detail-content { color: var(--text); font-size: 17px; line-height: 1.85; }
.region-detail-content h2,
.region-detail-content h3 { margin: 30px 0 12px; color: var(--primary-dark); line-height: 1.25; }
.region-detail-content p { margin: 0 0 18px; }
.region-detail-content ul { margin: 0 0 20px 20px; }
.region-detail-sidebar { position: sticky; top: calc(var(--topbar-height) + var(--header-height) + 18px); display: grid; gap: 18px; }
.region-side-card { padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: #f8fafc; box-shadow: var(--shadow-sm); }
.region-side-card h2,
.region-side-card h3 { margin: 0 0 10px; color: var(--primary-dark); }
.region-side-card p { margin: 0 0 18px; color: var(--text-light); }
.region-seo-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.region-seo-tags span { padding: 6px 10px; border-radius: 999px; background: var(--white); color: var(--primary); border: 1px solid #dbeafe; font-size: 12px; font-weight: 800; }
@media (max-width: 900px) {
    .region-detail-hero-inner,
    .region-detail-layout { grid-template-columns: 1fr; }
    .region-detail-sidebar { position: static; }
}
@media (max-width: 640px) {
    .regions-hero,
    .region-detail-hero { padding: 54px 0 48px; }
    .regions-listing,
    .region-detail-section { padding: 44px 0 56px; }
    .region-card-body { padding: 22px; }
    .region-card-image { height: 180px; }
}
