/* ===== CSS VARIABLES ===== */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --accent: #457b9d;
    --text: #212529;
    --text-light: #6c757d;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1d3557;
    --border: #dee2e6;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== TOPBAR ===== */
.topbar {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-phone {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.topbar-phone:hover { color: var(--primary); }

/* ===== HEADER ===== */
.header {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-text .logo-icon { font-size: 24px; }
.logo-icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
}
.logo img { max-height: 50px; width: auto; }

/* Nav */
.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: #fff5f5; }
.nav-link .arrow { font-size: 10px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    margin-top: 6px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text);
}
.dropdown li a:hover { background: #fff5f5; color: var(--primary); }

/* Header CTA */
.btn-call {
    background: var(--primary);
    color: #fff;
    padding: 16px 22px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 182px;
    animation: ctaFloat 1.4s ease-in-out infinite;
}
.btn-call-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.btn-call-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}
.btn-call:hover {
    background: var(--primary-dark);
    animation-play-state: paused;
    transform: translateY(-1px);
}
@keyframes ctaFloat {
    0% { transform: translateY(0); }
    25% { transform: translateY(-1px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-1px); }
    100% { transform: translateY(0); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.menu-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: var(--transition);
    display: block;
}
.mobile-nav-cta { display: none; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.32) 45%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    display: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 740px;
    padding: 8px 0;
    margin-left: 0;
    transform: translateX(-88px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.1vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 10px;
}
.hero-sub {
    font-size: 12.5px;
    opacity: 0.92;
    margin-bottom: 12px;
    line-height: 1.55;
    max-width: 700px;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 11px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,57,70,0.4); }
.btn-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 11px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    opacity: 1;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.95);
    backdrop-filter: blur(3px);
}
.hero-tag::before {
    content: '✓';
    width: 14px; height: 14px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 12px;
    text-align: center;
}
.section-sub {
    color: var(--text-light);
    text-align: center;
    font-size: 15px;
    margin-bottom: 48px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DEVICE TABS ===== */
.device-tabs { padding: 26px 0 0; background: #f8fafc; }
.device-tabs .section-title { color: var(--secondary); }
.device-tabs .section-sub { color: var(--text-light); margin-bottom: 20px; }
.tabs-wrapper { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.tab-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 124px;
    min-height: 102px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.tab-btn.active, .tab-btn:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}
.tab-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.85;
    filter: brightness(0) saturate(100%);
}
.tab-label { white-space: nowrap; }
.tab-cta-strip {
    margin-top: 6px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ef4444;
    padding: 10px 16px 12px;
    text-align: center;
}
.tab-cta-text {
    color: rgba(255,255,255,0.95);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}
.tab-cta-phone {
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 0.4px;
}

/* ===== REVIEWS ===== */
.reviews-track-wrapper { overflow: hidden; }
.reviews-track {
    display: flex;
    gap: 20px;
    animation: scrollReviews 30s linear infinite;
    width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
.reviews-track--reverse { animation-direction: reverse; animation-duration: 36s; }
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-width: 280px;
    max-width: 300px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.review-stars { color: #ffc107; font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; }
.review-author strong { display: block; font-weight: 700; color: var(--secondary); }
.review-author span { color: var(--text-light); }
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-placeholder { font-size: 64px; }
.service-diagonal-ribbon {
    position: absolute;
    top: 12px;
    left: -34px;
    transform: rotate(-45deg);
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 42px;
    z-index: 2;
}
.service-corner-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.95);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    z-index: 2;
}
.service-image-title {
    position: absolute;
    top: 10px;
    left: 56px;
    right: 56px;
    text-align: center;
    color: #ef4444;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(255,255,255,0.75);
    z-index: 2;
}
.service-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: #fff5f5;
    border: 1px solid #fecdd3;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.service-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.service-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 40px; margin-bottom: 14px; }
.feature-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}
.feature-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* Home dark feature band */
.features-highlight {
    background: #0b1a44;
    color: #fff;
    padding-bottom: 0;
}
.features-highlight .container {
    max-width: 1080px;
}
.features-highlight .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 8px;
}
.features-highlight .section-sub {
    color: rgba(255,255,255,0.82);
    text-align: left;
    margin: 0 0 22px;
    max-width: 980px;
    font-size: 13px;
}
.features-highlight .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 28px;
}
.features-highlight .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
    text-align: center;
    padding: 22px 18px;
}
.features-highlight .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.28);
}
.features-highlight .feature-title {
    color: #fff;
    font-size: 18px;
}
.features-highlight .feature-desc {
    color: rgba(255,255,255,0.84);
    font-size: 13px;
}
.features-highlight .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    margin: 0 auto 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.feature-icon-text {
    font-size: 20px;
    line-height: 1;
}
.features-cta-strip {
    background: #ef4444;
    text-align: center;
    padding: 12px 16px 14px;
}
.features-cta-text {
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}
.features-cta-phone {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 60px 0;
}
.cta-banner-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 28px;
    padding: 42px 28px;
    box-shadow: 0 20px 45px rgba(193,18,31,0.22);
}
.cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 12px;
}
.cta-banner p { opacity: 0.9; font-size: 16px; margin-bottom: 28px; }
.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ===== SERVICE INFO SECTION (BOTTOM) ===== */
.service-info-section { padding-top: 54px; }
.service-info-section .container { max-width: 1060px; }
.service-info-head { text-align: center; margin-bottom: 24px; }
.service-info-head h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
}
.service-info-head p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}
.service-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.service-mini-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.service-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #f0d7de;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-mini-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
    line-height: 1.35;
}
.service-mini-card p {
    font-size: 13px;
    color: var(--text-light);
}
.service-info-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
}
.service-info-box,
.service-contact-box {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 22px 24px;
}
.service-info-box h3,
.service-contact-box h3 {
    font-size: 20px;
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 14px;
}
.service-list {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.service-list li {
    position: relative;
    padding-left: 18px;
    color: #374151;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}
.service-help-card {
    background: #fff6f7;
    border: 1px solid #f4d5da;
    border-radius: 14px;
    text-align: center;
    padding: 16px;
}
.service-help-card span {
    display: block;
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
}
.service-help-card a {
    font-size: 40px;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 0.3px;
}
.service-contact-item {
    margin-bottom: 12px;
    font-size: 16px;
    color: #374151;
}
.service-contact-item a {
    color: inherit;
    font-weight: 700;
}
.service-note-box {
    margin-top: 16px;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
}
.service-note-box strong {
    display: block;
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 6px;
}
.service-note-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
}
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-list { margin-bottom: 28px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.about-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.about-info {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
}
.about-info-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.about-info-item:last-child { border-bottom: none; }
.about-info-label { font-size: 12px; opacity: 0.7; margin-bottom: 4px; }
.about-info-value { font-size: 15px; font-weight: 600; }
.about-info-value a { color: #fff; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card { background: var(--secondary); color: #fff; border-radius: var(--radius-lg); padding: 32px; }
.contact-info-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { font-size: 22px; flex-shrink: 0; }
.contact-info-text label { display: block; font-size: 11px; opacity: 0.7; margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { font-size: 15px; font-weight: 600; color: #fff; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--secondary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; }

/* ===== PAGE CONTENT ===== */
.page-header {
    position: relative;
    background: var(--page-header-bg, url('images/banner.webp')) center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.3) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 42px); font-weight: 900; }
.page-header-visual {
    min-height: 270px;
    height: 270px;
    padding: 0;
    background-size: cover;
    background-position: 61% 47%;
}
.page-header-visual-tall {
    min-height: 540px;
    height: 540px;
}
.page-header-service-tall {
    padding: 120px 0;
}
.page-header-visual::before { display: none; }
.page-content { padding: 60px 0; }
.page-content .content { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.page-content h2 { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--secondary); margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; color: var(--text-light); }

/* ===== FLOAT CALL ===== */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230,57,70,0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    animation: pulse 2s ease infinite;
}
.float-call:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(230,57,70,0.6); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(230,57,70,0.5); }
    50% { box-shadow: 0 4px 30px rgba(230,57,70,0.8); }
}

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: #fff; padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 900; margin-bottom: 16px; }
.footer-desc { font-size: 13px; opacity: 0.7; line-height: 1.7; margin-bottom: 20px; }
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.footer-wa:hover { background: #128C7E; }
.footer-heading { font-family: var(--font-head); font-size: 15px; font-weight: 800; margin-bottom: 18px; opacity: 0.9; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; opacity: 0.7; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--primary); }
.footer-contact-item { display: block; font-size: 13px; opacity: 0.8; margin-bottom: 10px; }
.footer-phone { font-weight: 700; font-size: 16px !important; opacity: 1 !important; color: #fff; }
.footer-bottom {
    background: var(--secondary);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom-inner p { font-size: 12px; opacity: 0.75; margin-bottom: 6px; }
.footer-note { max-width: 600px; margin: 0 auto; }

/* ===== FOOTER MAP ===== */
.footer-map-section {
    background: var(--secondary);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0 26px;
}
.footer-map-frame {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
    min-height: 320px;
}
.footer-map-frame iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}
.footer-map-placeholder {
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    color: #e5e7eb;
    text-align: center;
    gap: 10px;
    padding: 16px;
}
.footer-map-placeholder p { font-size: 14px; }
.footer-map-btn {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.footer-map-btn:hover { background: var(--primary-dark); }

/* ===== SUCCESS/ERROR ALERTS ===== */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 10px 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .header { padding: 10px 0; }
    .header-inner { flex-wrap: wrap; }
    .logo img { max-height: 34px; }
    .logo-text { font-size: 17px; gap: 6px; }
    .logo-icon-image { width: 20px; height: 20px; }
    .logo-text .logo-icon { font-size: 20px; }
    .nav { order: 3; width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .nav.open { max-height: 600px; }
    .nav-list { flex-direction: column; gap: 0; padding: 12px 0; align-items: stretch; }
    .nav-list > li { width: 100%; }
    .nav-link { padding: 10px 16px; width: 100%; justify-content: flex-start; text-align: left; }
    .has-dropdown { width: 100%; }
    .has-dropdown .nav-link { justify-content: space-between; }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .has-dropdown.open .dropdown { max-height: 500px; padding-top: 4px; padding-bottom: 6px; }
    .has-dropdown .arrow { transition: transform 0.25s ease; }
    .has-dropdown.open .arrow { transform: rotate(180deg); }
    .mobile-nav-cta { display: block; padding: 10px 8px 2px; }
    .mobile-btn-call {
        width: 100%;
        min-width: 0;
        padding: 14px 20px 12px;
    }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .hero { min-height: 520px; align-items: center; }
    .hero .container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }
    .hero-content { padding: 40px 0; margin-left: 0; transform: none; }
    .hero-tag { padding: 5px 10px; font-size: 11px; }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }
    .btn-primary, .btn-outline {
        justify-content: flex-start;
        width: 272px;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 16px;
        white-space: nowrap;
    }
    .btn-outline { width: 208px; }
    .btn-outline { background: rgba(255,255,255,0.14); border-width: 1.5px; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .features-highlight .section-title,
    .features-highlight .section-sub { text-align: center; }
    .features-highlight .features-grid { grid-template-columns: 1fr 1fr; }
    .features-cta-phone { font-size: 24px; }
    .service-mini-cards { grid-template-columns: 1fr; }
    .service-info-grid { grid-template-columns: 1fr; }
    .service-info-section .container { max-width: 100%; }
    .service-help-card a { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-links-regions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }
    .footer-links-regions li { margin-bottom: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .float-call { bottom: 16px; right: 16px; font-size: 13px; padding: 12px 20px; }
    .reviews-track-wrapper--secondary { display: none; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-highlight .features-grid { grid-template-columns: 1fr; }
    .tabs-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        justify-content: stretch;
        margin-bottom: 14px;
    }
    .tab-btn {
        width: 100%;
        min-width: 0;
        min-height: 96px;
        padding: 12px 12px;
        font-size: 13px;
    }
    .tab-icon { width: 24px; height: 24px; }
    .tab-cta-strip { padding: 9px 12px 10px; }
    .tab-cta-phone { font-size: 23px; }
    .cta-banner-card { padding: 32px 20px; border-radius: 22px; }
    .service-info-head h2 { font-size: 24px; }
    .service-info-head p { font-size: 14px; }
    .service-help-card a { font-size: 26px; }
    .service-mini-card { padding: 12px 12px; }
    .service-contact-item { font-size: 15px; }
    .footer-map-frame,
    .footer-map-frame iframe,
    .footer-map-placeholder { min-height: 260px; height: 260px; }
}
