:root {
    --primary: #073964;
    --primary-2: #0a4b80;
    --primary-dark: #052842;
    --accent: #ff7a1a;
    --accent-dark: #e45f00;
    --success: #16a34a;
    --text: #11243d;
    --muted: #607088;
    --border: #dfe7f1;
    --light: #f6f9fd;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(7, 57, 100, .13);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 999;
}

.skip-link:focus {
    left: 10px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(223, 231, 241, .82);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
}

.main-nav a {
    color: #223655;
    font-weight: 700;
    font-size: 15px;
    padding: 27px 0 23px;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 10px;
    padding: 13px 20px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    min-height: 46px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ff8f34);
    box-shadow: 0 12px 24px rgba(255, 122, 26, .28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark), #ff7a1a);
}

.btn-secondary {
    color: #fff;
    background: var(--primary);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .72);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-outline-dark {
    color: var(--primary);
    border: 1px solid var(--border);
    background: #fff;
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .44);
    background: rgba(255, 255, 255, .06);
}

.btn-whatsapp {
    color: #fff;
    background: var(--success);
}

.btn-large {
    min-height: 54px;
    padding: 16px 24px;
    border-radius: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 40, 66, .98) 0%, rgba(7, 57, 100, .94) 41%, rgba(7, 57, 100, .22) 71%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at 70% 20%, rgba(255, 122, 26, .24), transparent 28%),
        linear-gradient(120deg, #062944, #0b4c7e);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 40, 66, .08) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    align-items: center;
    gap: 36px;
    padding: 64px 0 112px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 560px;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 72px;
    padding: 13px 12px;
    border: 1px solid rgba(255, 122, 26, .56);
    border-radius: 12px;
    background: rgba(2, 25, 43, .32);
}

.hero-badge .icon-wrap {
    width: 34px;
    height: 34px;
}

.hero-badge strong {
    display: block;
    font-size: 14px;
    line-height: 1.15;
}

.hero-art {
    align-self: end;
    transform: translateY(28px);
    filter: drop-shadow(0 28px 36px rgba(2, 17, 32, .28));
}

.quick-quote {
    position: relative;
    z-index: 5;
    margin-top: -56px;
    margin-bottom: 48px;
}

.quick-quote-card {
    display: grid;
    grid-template-columns: 1.02fr repeat(4, 1fr) auto;
    gap: 12px;
    align-items: stretch;
    padding: 18px;
    border-radius: 16px;
    background: var(--primary);
    box-shadow: 0 20px 55px rgba(5, 40, 66, .28);
}

.quick-quote-title {
    color: #fff;
    padding: 5px 6px 0 0;
}

.quick-quote-title h2 {
    margin: 0 0 4px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.quick-quote-title p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.field {
    position: relative;
}

.field label {
    display: block;
    margin-bottom: 6px;
    color: #17314f;
    font-size: 12px;
    font-weight: 900;
}

.quick-quote .field label {
    color: #fff;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 14px;
    background: #fff;
    color: #10233c;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, .12);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: var(--light);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
}

.section-heading.center {
    display: block;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.section-heading p {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.about-preview {
    padding-top: 8px;
}

.about-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 40px;
    align-items: center;
}

.lead {
    color: #344a66;
    font-size: 18px;
    margin: 18px 0;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #263b57;
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
    line-height: 1;
}

.about-mosaic {
    display: grid;
    grid-template-columns: 1.28fr .92fr;
    gap: 14px;
}

.about-mosaic img {
    width: 100%;
    height: 100%;
    min-height: 218px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-mosaic .stack {
    display: grid;
    gap: 14px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.stat-mini strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
}

.stat-mini span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.icon-wrap {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--accent);
    background: rgba(255, 122, 26, .1);
    border: 1px solid rgba(255, 122, 26, .24);
}

.icon-wrap svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 57, 100, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 26, .42);
    box-shadow: 0 20px 44px rgba(7, 57, 100, .13);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
}

.service-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.2;
}

.service-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 12px;
    margin: 16px 0 14px;
    background: #eef4fb;
}

.service-card p {
    color: var(--muted);
    margin: 0 0 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--accent);
    font-weight: 900;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.feature-item {
    text-align: center;
    padding: 18px 12px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
}

.feature-item:hover {
    background: #fff;
    border-color: var(--border);
}

.feature-item .icon-wrap {
    margin: 0 auto 12px;
}

.feature-item h3 {
    color: var(--primary);
    margin: 0 0 7px;
    font-size: 15px;
}

.feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

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

.process-step {
    position: relative;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.process-step::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    width: 18px;
    height: 28px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(7, 57, 100, .12), transparent);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-no {
    position: absolute;
    right: 18px;
    top: 16px;
    color: rgba(7, 57, 100, .12);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.process-step h3 {
    margin: 18px 0 8px;
    color: var(--primary);
}

.process-step p {
    margin: 0;
    color: var(--muted);
}

.stats-band {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 40, 66, .98), rgba(9, 74, 126, .96)),
        url('../img/footer-pattern.svg') center/cover;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 108px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}

.stat-card .icon-wrap {
    color: #fff;
    background: rgba(255, 122, 26, .9);
    border-color: transparent;
}

.stat-card strong {
    display: block;
    font-size: 36px;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

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

.testimonial {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 57, 100, .06);
}

.testimonial-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 22px;
    font-weight: 900;
}

.testimonial h3 {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
}

.testimonial .stars {
    color: #ffb020;
    letter-spacing: 2px;
}

.testimonial p {
    margin: 12px 0;
    color: #314760;
}

.testimonial small {
    color: var(--muted);
    font-weight: 800;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 57, 100, .06);
}

.card-pad {
    padding: 24px;
}

.faq-list {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border: 0;
    color: var(--primary);
    background: #fff;
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.faq-question span:last-child {
    color: var(--accent);
    font-size: 22px;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: #344a66;
}

.faq-item.open .faq-answer {
    display: block;
}

.map-card iframe,
.map-card .map-placeholder {
    width: 100%;
    min-height: 338px;
    border: 0;
    border-radius: 16px 16px 0 0;
}

.contact-card {
    padding: 22px;
}

.contact-card h3 {
    margin: 0 0 14px;
    color: var(--primary);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    color: #334963;
}

.contact-list a {
    color: var(--primary);
    font-weight: 800;
}

.page-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 40, 66, .98), rgba(9, 74, 126, .92)),
        url('../img/footer-pattern.svg') center/cover;
}

.page-hero-inner {
    padding: 72px 0;
}

.page-hero h1 {
    max-width: 850px;
    margin: 10px 0 14px;
    font-size: clamp(38px, 6vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fff;
}

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

.content-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 57, 100, .06);
}

.content-card h2,
.content-card h3 {
    color: var(--primary);
    letter-spacing: -0.03em;
}

.content-card h2 {
    font-size: 34px;
    line-height: 1.12;
    margin-top: 0;
}

.content-card p {
    color: #334963;
}

.content-card ul {
    color: #334963;
}

.content-card img.main-img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 0 24px;
}

.sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.sidebar-box {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 57, 100, .06);
}

.sidebar-box h3 {
    margin: 0 0 14px;
    color: var(--primary);
}

.sidebar-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #273d57;
    background: var(--light);
    font-weight: 800;
}

.sidebar-links a:hover {
    color: #fff;
    background: var(--primary);
}

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

.blog-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 57, 100, .06);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card time {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.blog-card h3 {
    color: var(--primary);
    margin: 8px 0 10px;
    line-height: 1.25;
}

.blog-card p {
    color: var(--muted);
}

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

.location-card {
    position: relative;
    overflow: hidden;
    min-height: 162px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background:
        linear-gradient(140deg, rgba(7, 57, 100, .96), rgba(10, 75, 128, .86)),
        url('../img/footer-pattern.svg') center/cover;
    color: #fff;
    box-shadow: 0 12px 30px rgba(7, 57, 100, .1);
}

.location-card h3 {
    margin: 0 0 8px;
}

.location-card p {
    color: rgba(255, 255, 255, .8);
    margin: 0 0 16px;
}

.location-card .read-more {
    color: #fff;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 800;
}

.alert-success {
    color: #0f6a2d;
    background: #dcfce7;
}

.alert-error {
    color: #991b1b;
    background: #fee2e2;
}

.thanks-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    font-size: 42px;
    font-weight: 900;
}

.footer-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 40, 66, .94), rgba(7, 57, 100, .86)),
        url('../img/cta-bg.svg') center/cover;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 52px 0;
}

.footer-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.footer-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer {
    color: #dcecff;
    background: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .8fr 1fr;
    gap: 36px;
    padding: 48px 0 34px;
}

.footer-grid h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
}

.footer-about p {
    max-width: 350px;
    color: rgba(220, 236, 255, .76);
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(220, 236, 255, .82);
}

.footer-links a:hover,
.contact-list a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-weight: 900;
}

.social-links a:hover {
    background: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    color: rgba(220, 236, 255, .72);
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    box-shadow: 0 18px 40px rgba(22, 163, 74, .35);
    font-size: 28px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .header-cta {
        display: none;
    }

    .main-nav {
        gap: 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 88px;
    }

    .hero-art {
        max-width: 820px;
        margin: 0 auto;
        transform: translateY(0);
    }

    .quick-quote-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-quote-title {
        grid-column: 1 / -1;
    }

    .about-grid,
    .split-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .feature-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 880px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        inset: 76px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 14px;
        border-bottom: 0;
        border-radius: 10px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: #fff;
        background: var(--primary);
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 46px 0 84px;
    }

    .hero-badges,
    .stats-grid,
    .process,
    .testimonials,
    .blog-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mosaic,
    .stat-row,
    .form-grid,
    .footer-grid,
    .footer-cta-inner {
        grid-template-columns: 1fr;
    }

    .footer-cta-inner {
        display: grid;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        display: grid;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .feature-strip,
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 620px) {
    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 184px;
        height: auto;
    }

    .main-nav {
        inset-top: 68px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .hero-badges,
    .quick-quote-card,
    .service-grid,
    .feature-strip,
    .process,
    .stats-grid,
    .testimonials,
    .blog-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }

    .section-heading {
        display: block;
    }

    .content-card {
        padding: 22px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }
}

.input-error { border-color: #dc2626 !important; box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important; }


/* Yönetilebilir görseller ve slider güncellemesi */
.hero-slide {
    position: relative;
    z-index: 2;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-art picture,
.hero-art img {
    width: 100%;
    height: auto;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 74px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    cursor: pointer;
}

.hero-dots button.active {
    width: 30px;
    background: var(--accent);
}

.avatar-img {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef4fb;
    border: 2px solid #fff;
    box-shadow: 0 10px 24px rgba(7, 57, 100, .12);
}

.page-feature-image {
    width: 100%;
    margin: 0 0 26px;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    background: #eef4fb;
}

.location-card-img {
    width: 100%;
    margin: -5px 0 16px;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    background: #eef4fb;
}

@media (max-width: 620px) {
    .hero-dots {
        bottom: 58px;
    }
}
