:root {
    --primary: #2e7d32;
    --primary-dark: #215c25;
    --secondary: #1565c0;
    --secondary-dark: #0d47a1;
    --background: #ffffff;
    --surface: #f5f9f7;
    --surface-alt: #eef5ff;
    --text: #163022;
    --muted: #5d6f64;
    --border: rgba(21, 101, 192, 0.12);
    --shadow: 0 24px 60px rgba(17, 53, 87, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(46, 125, 50, 0.09), transparent 24%),
        radial-gradient(circle at bottom right, rgba(21, 101, 192, 0.08), transparent 26%),
        var(--background);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

main {
    overflow: hidden;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section--compact {
    padding: 64px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title,
.hero-title,
.page-hero__title,
.cta-band__title {
    margin: 1rem 0;
    font-family: "DM Serif Display", serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section-intro {
    max-width: 680px;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.95rem 1.4rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(17, 53, 87, 0.18);
}

.btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn--secondary {
    color: #ffffff;
    background: var(--secondary);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--light {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.92);
}

body[data-page="home"] .hero .btn--light {
    color: #ffffff;
    background: linear-gradient(135deg, #ff8f00, #ef6c00);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 30px rgba(239, 108, 0, 0.35);
}

body[data-page="home"] .hero .btn--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(6px);
}

body[data-page="home"] .hero .btn--light:hover,
body[data-page="home"] .hero .btn--light:focus-visible {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

body[data-page="home"] .hero .btn--ghost:hover,
body[data-page="home"] .hero .btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.2);
}

body[data-page="home"] .cta-band .btn--light {
    color: #ffffff;
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

body[data-page="home"] .cta-band .btn--ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(21, 101, 192, 0.08);
    box-shadow: 0 10px 26px rgba(18, 34, 49, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-family: "DM Serif Display", serif;
    font-size: 1.3rem;
    box-shadow: 0 18px 32px rgba(46, 125, 50, 0.25);
}

.brand__mark--logo {
    width: 200px;
    height: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.brand__mark--logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
}

.brand__text {
    min-width: 0;
}

.brand__title {
    display: block;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.2;
}

.brand__subtitle {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a,
.site-nav .nav-item__link {
    display: inline-flex;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-item__link:hover,
.site-nav .nav-item__link:focus-visible,
.site-nav a.is-active {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.08);
}

.site-nav .nav-item__link.is-active {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.08);
}

.site-nav .nav-item__link {
    align-items: center;
    gap: 0.4rem;
}

.nav-caret {
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.8;
    transform: translateY(1px);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item--has-submenu:hover .nav-caret,
.nav-item--has-submenu:focus-within .nav-caret,
.site-nav.is-open .nav-item--has-submenu .nav-caret {
    opacity: 1;
    transform: translateY(1px) rotate(180deg);
}

.nav-item {
    position: relative;
}

.sub-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 260px;
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(21, 101, 192, 0.1);
    box-shadow: 0 18px 38px rgba(18, 34, 49, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 40;
}

.sub-nav a {
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    background: transparent;
}

.nav-item--has-submenu:hover .sub-nav,
.nav-item--has-submenu:focus-within .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-phone {
    font-weight: 800;
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 34px 0 0;
}

.hero-slider {
    position: relative;
    min-height: clamp(580px, 80vh, 760px);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
}

.hero-slide__bg--one {
    background-image:
        linear-gradient(120deg, rgba(10, 27, 42, 0.72), rgba(46, 125, 50, 0.52)),
        url("../../banner/banner 1.png");
}

.hero-slide__bg--two {
    background-image:
        linear-gradient(120deg, rgba(15, 36, 56, 0.74), rgba(21, 101, 192, 0.54)),
        url("../../banner/banner 2.jfif");
}

.hero-slide__bg--three {
    background-image:
        linear-gradient(120deg, rgba(9, 31, 20, 0.76), rgba(46, 125, 50, 0.58)),
        url("../../banner/banner 3.png");
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: 3rem;
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.hero-copy {
    max-width: 620px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-contact {
    margin-top: 1.4rem;
}

.quick-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.quick-contact__icon,
.icon-badge,
.benefit-card__icon,
.service-placeholder__icon,
.stats-card__icon,
.contact-card__icon,
.footer-social a,
.float-action__icon,
.page-highlight__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    color: inherit;
    font-weight: 900;
}

.quick-contact__icon svg,
.benefit-card__icon svg,
.contact-card__icon svg,
.float-action__icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.contact-card__icon {
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card__icon:hover {
    transform: translateY(-2px);
}

.contact-card__icon--phone {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 101, 192, 0.3);
}

.contact-card__icon--whatsapp {
    background: linear-gradient(135deg, #1aa64a, #25d366);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 120, 55, 0.3);
}

.contact-card__icon--address {
    background: linear-gradient(135deg, #ef6c00, #ff9800);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(239, 108, 0, 0.3);
}

.contact-card__icon--hours {
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(106, 27, 154, 0.3);
}

.hero-slider__controls {
    position: absolute;
    z-index: 2;
    left: 3rem;
    right: 3rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-dots {
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 13px;
    height: 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    cursor: pointer;
}

.hero-dot.is-active {
    background: #ffffff;
}

.hero-nav {
    display: flex;
    gap: 0.75rem;
}

.hero-nav button,
.back-to-top,
.float-action {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
}

.hero-nav button {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.stats-strip {
    position: relative;
    margin-top: -2.4rem;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.stats-card,
.benefit-card,
.service-card,
.testimonial-card,
.page-highlight,
.contact-card,
.info-panel,
.form-card,
.timeline-card,
.feature-list,
.detail-card,
.coverage-card,
.faq-card,
.cta-band,
.service-summary {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 101, 192, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-card,
.benefit-card,
.page-highlight,
.contact-card,
.timeline-card,
.detail-card,
.coverage-card,
.faq-card,
.service-summary {
    padding: 1.6rem;
}

.stats-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    min-height: 126px;
    height: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 247, 0.96));
    box-shadow: 0 20px 42px rgba(16, 44, 69, 0.14);
}

.stats-card__number {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
}

.split-layout,
.service-layout,
.content-layout,
.contact-layout,
.page-hero__inner,
.cta-band,
.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.contact-layout {
    align-items: start;
}

.contact-layout .grid {
    align-content: start;
    gap: 1rem;
}

.split-layout,
.service-layout,
.content-layout,
.contact-layout,
.page-hero__inner,
.about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 244, 0.92));
    border: 1px solid rgba(21, 101, 192, 0.08);
    box-shadow: var(--shadow);
}

.feature-list {
    padding: 2rem;
}

.feature-list ul,
.detail-list,
.footer-links ul,
.service-links,
.contact-list,
.timeline-list,
.service-benefits,
.operating-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.detail-list li,
.service-links li,
.contact-list li,
.timeline-list li,
.service-benefits li,
.operating-hours li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-list li::before,
.detail-list li::before,
.service-links li::before,
.contact-list li::before,
.timeline-list li::before,
.service-benefits li::before,
.operating-hours li::before {
    content: "+";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.12);
    color: var(--primary);
    font-weight: 900;
}

.benefit-card,
.service-card,
.testimonial-card {
    padding: 1.45rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover,
.page-highlight:hover,
.contact-card:hover,
.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(20, 57, 82, 0.16);
}

.service-card {
    display: grid;
    gap: 0.6rem;
}

.service-card > h3 {
    margin: 0.2rem 0 0.15rem;
}

.service-card > p {
    margin: 0;
}

.service-placeholder,
.page-hero__visual,
.service-visual,
.contact-map,
.about-visual {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.service-placeholder,
.service-visual,
.about-visual,
.page-hero__visual {
    min-height: 230px;
    padding: 1.5rem;
    background:
        linear-gradient(150deg, rgba(21, 101, 192, 0.12), rgba(46, 125, 50, 0.14)),
        linear-gradient(135deg, #eef5ff, #f4fbf4);
    border: 1px solid rgba(21, 101, 192, 0.09);
}

.page-hero {
    padding: 54px 0 34px;
}

.page-hero__inner {
    grid-template-columns: 1fr;
}

.page-hero .page-hero__visual {
    display: none;
}

.page-hero__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 2.5rem;
    border-radius: 34px;
    background:
        linear-gradient(140deg, rgba(9, 40, 22, 0.93), rgba(21, 101, 192, 0.88)),
        linear-gradient(180deg, #2e7d32, #1565c0);
    color: #ffffff;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 100%;
}

.page-hero__title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-hero__panel .breadcrumbs {
    order: 3;
    margin-top: 0.15rem;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.page-hero__visual::before,
.about-visual::before,
.service-visual::before,
.service-placeholder::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px dashed rgba(21, 101, 192, 0.28);
}

.page-hero__visual,
.about-visual,
.service-visual,
.service-placeholder {
    display: grid;
    place-items: center;
    text-align: center;
}

.about-visual--image {
    padding: 0;
    border: 1px solid rgba(21, 101, 192, 0.09);
    background: #ffffff;
}

.about-visual--image::before {
    display: none;
}

.about-visual--image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.service-placeholder--image {
    padding: 0;
    background: #ffffff;
}

.service-placeholder--image::before {
    display: none;
}

.service-placeholder--image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.visual--image {
    padding: 0;
    background: #ffffff;
}

.visual--image::before {
    display: none;
}

.visual--image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.page-hero__visual h3,
.about-visual h3,
.service-visual h3,
.service-placeholder h3 {
    margin: 0.9rem 0 0.4rem;
    font-family: "DM Serif Display", serif;
    font-size: 1.65rem;
}

.muted {
    color: var(--muted);
}

.service-card__meta,
.review-rating,
.footer-note,
.eyebrow {
    color: var(--muted);
    font-size: 0.95rem;
}

.service-card__link,
.text-link {
    color: var(--secondary);
    font-weight: 800;
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card footer {
    margin-top: 1rem;
    font-weight: 800;
}

.cta-band {
    padding: 2.25rem;
    background:
        linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(21, 101, 192, 0.95)),
        #ffffff;
    color: #ffffff;
    grid-template-columns: 1.3fr 0.7fr;
}

.cta-band__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.site-footer {
    padding: 56px 0 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 16%),
        linear-gradient(180deg, #0f2538, #0e2d1a 120%);
}

.site-footer .brand__subtitle,
.site-footer .footer-note {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 1.1rem;
}

.footer-brand,
.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links h3,
.footer-contact h3,
.footer-brand h3 {
    margin: 0;
    font-family: "DM Serif Display", serif;
    font-size: 1.45rem;
}

.footer-links ul {
    display: grid;
    gap: 0.7rem;
}

.footer-note {
    margin: 0;
}

.footer-contact .contact-list {
    display: grid;
    gap: 0.55rem;
}

.footer-contact .contact-list li {
    margin-bottom: 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #9bd1ff;
}

.footer-contact .contact-list li::before {
    display: none;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.12);
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
}

.float-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: grid;
    gap: 0.8rem;
}

.float-action,
.back-to-top {
    display: inline-grid;
    place-items: center;
    box-shadow: 0 16px 34px rgba(17, 53, 87, 0.22);
}

.float-action--whatsapp {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
}

.float-action--call,
.back-to-top {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #ffffff;
}

.back-to-top {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-card {
    padding: 2rem;
}

.field {
    display: grid;
    gap: 0.5rem;
}

.field label {
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(21, 101, 192, 0.18);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.12);
}

.field--full,
.form-actions,
.form-status {
    grid-column: 1 / -1;
}

.form-status {
    min-height: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.form-status.is-error {
    color: #c62828;
}

.contact-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger > * {
    transition-delay: calc(var(--index, 0) * 70ms);
}

.table-like {
    display: grid;
    gap: 0.9rem;
}

.table-like__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(21, 101, 192, 0.05);
}

.service-inquiry {
    margin-top: 2rem;
}

@media (max-width: 1100px) {
    .stats-strip {
        margin-top: -1.6rem;
    }

    .grid--4,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .contact-card {
        display: grid;
        align-content: start;
        gap: 0.6rem;
    }

    .contact-card h3,
    .contact-card p,
    .contact-card ul {
        margin: 0;
    }
    :root {
        --header-height: 76px;
    }

    .stats-strip {
        margin-top: 1.4rem;
        z-index: 1;
    }

    .stats-grid {
        gap: 1rem;
    }

    .split-layout,
    .service-layout,
    .content-layout,
    .contact-layout,
    .page-hero__inner,
    .about-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-header__inner {
        position: relative;
        flex-wrap: wrap;
    }

    .site-nav.is-open {
        order: 3;
        width: 100%;
        display: grid;
        margin-top: 0.6rem;
        padding: 1rem;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(21, 101, 192, 0.08);
    }

    .site-nav.is-open a {
        padding: 0.9rem 1rem;
    }

    .site-nav.is-open .nav-item,
    .site-nav.is-open .sub-nav {
        width: 100%;
    }

    .site-nav.is-open .sub-nav {
        position: static;
        min-width: 0;
        margin-left: 0.75rem;
        margin-top: 0.35rem;
        padding: 0.45rem;
        border-radius: 14px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav.is-open .sub-nav a {
        padding: 0.65rem 0.8rem;
    }

    .header-actions.is-open {
        display: grid;
        order: 4;
        width: 100%;
        gap: 0.75rem;
        margin-top: 0.6rem;
        padding: 0;
    }

    .header-actions.is-open .btn {
        width: 100%;
    }

    .hero-slide__content,
    .page-hero__panel {
        padding: 2rem;
    }

    .hero-slider__controls {
        left: 2rem;
        right: 2rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 72px 0;
    }

    .grid--2,
    .grid--3,
    .grid--4,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide__content,
    .page-hero__panel,
    .form-card,
    .feature-list,
    .panel,
    .cta-band {
        padding: 1.5rem;
    }

    .hero-slide {
        align-items: flex-start;
    }

    .hero-slide__content {
        width: 100%;
        padding: 1.35rem 1.35rem 9rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
        margin: 0.75rem 0;
    }

    .hero-copy {
        font-size: 0.98rem;
        margin-bottom: 0.9rem;
    }

    .hero-slider {
        min-height: 650px;
        border-radius: 28px;
    }

    .stats-strip {
        margin-top: 1rem;
    }

    .stats-card {
        min-height: 112px;
    }

    .hero-slider__controls {
        flex-direction: column;
        align-items: flex-start;
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1rem;
        gap: 0.7rem;
    }

    .float-actions {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .float-action,
    .back-to-top,
    .hero-nav button {
        width: 50px;
        height: 50px;
    }

    .quick-contact__item {
        width: 100%;
        justify-content: flex-start;
    }
}