*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-dark: #1a5c6b;
    --teal: #1f7a8c;
    --teal-light: #2a9d8f;
    --coral: #e05a3a;
    --coral-hover: #c94a2c;
    --gold: #d4a843;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-nav: #000000;
    --green-accent: #3daa5c;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fffefe;
}

/* â•â• TOP BAR â€” white bg, colored buttons right-aligned â•â• */
.top-bar {
    background: #fffefe;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 42px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: filter 0.25s;
    letter-spacing: 0.2px;
}

.top-bar-right a.btn-quote {
    background: var(--teal);
}

.top-bar-right a.btn-quote:hover {
    filter: brightness(1.12);
}

.top-bar-right a.btn-support {
    background: var(--teal-dark);
}

.top-bar-right a.btn-support:hover {
    filter: brightness(1.15);
}

.top-bar-right a.btn-proposal {
    background: var(--coral);
    font-weight: 600;
    padding: 0 28px;
    letter-spacing: 0.3px;
}

.top-bar-right a.btn-proposal:hover {
    background: var(--coral-hover);
}

.top-social {
    display: flex;
    align-items: center;
    height: 100%;
    background: #333;
    padding: 0 6px;
}

.top-social a {
    color: var(--white);
    text-decoration: none;
    width: 36px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.top-social a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.top-social svg {
    width: 15px;
    height: 15px;
    fill: var(--white);
}

/* â•â• MAIN NAV â€” white â•â• */
.main-nav {
    background: #fffefe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 68px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 52px;
    height: 52px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--teal-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-text .sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    color: var(--coral);
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-links>a,
.nav-links>.dropdown>a {
    color: var(--text-nav);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    position: relative;
    font-family: 'inter';
}

.nav-links>a:hover,
.nav-links>.dropdown:hover>a {
    color: var(--teal);
    background: rgba(31, 122, 140, 0.06);
}

.nav-links>a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.25s, left 0.25s;
    border-radius: 1px;
}

.nav-links>a:hover::after {
    width: 60%;
    left: 20%;
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown>a .chevron {
    width: 10px;
    height: 10px;
    fill: var(--text-nav);
    transition: transform 0.3s;
}

.dropdown:hover>a .chevron {
    transform: rotate(180deg);
    fill: var(--teal);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    padding: 8px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-nav);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(31, 122, 140, 0.07);
    color: var(--teal);
}

.nav-search {
    margin-left: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.nav-search:hover {
    background: rgba(31, 122, 140, 0.08);
}

.nav-search svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-nav);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â•â• ACCENT STRIP â•â• */
.accent-strip {
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 40%, var(--teal) 70%, var(--teal) 100%);
}

/* â•â• SEARCH OVERLAY â•â• */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 58, 75, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    background: var(--white);
    border-radius: 10px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    width: 560px;
    max-width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: transparent;
}

.search-box input::placeholder {
    color: #a0aec0;
}

.search-box button {
    background: var(--teal);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.search-box button:hover {
    background: var(--teal-dark);
}

/* â•â• HAMBURGER â•â• */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-nav);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* â•â• RESPONSIVE â•â• */
@media (max-width: 1024px) {
    .main-nav {
        padding: 0 20px;
    }

    .nav-links>a,
    .nav-links>.dropdown>a {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .top-bar-right a {
        padding: 0 14px;
        font-size: 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s;
        padding: 0;
    }

    .nav-links.open {
        max-height: 500px;
        padding: 12px 0;
    }

    .nav-links>a,
    .nav-links>.dropdown>a {
        padding: 12px 24px;
        border-radius: 0;
    }

    .nav-links>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-search {
        margin-left: auto;
    }
}

.demo-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    color: #7f8c8d;
    font-size: 15px;
}

/* â•â• CONTACT SECTION â•â• */
.contact-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
}

.contact-wrapper {
    display: flex;
    max-width: 960px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* â”€â”€ LEFT FORM â”€â”€ */
.contact-form {
    flex: 1.2;
    background: #fff;
    padding: 42px 38px;
}

.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #1e2a36;
    margin-bottom: 28px;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d0d5dc;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.25s;
    background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa5b1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1f7a8c;
}

.contact-form input.full-width {
    margin-bottom: 16px;
}

.contact-form textarea {
    margin-bottom: 20px;
    resize: vertical;
    min-height: 110px;
}

.btn-send {
    background: #1a5c6b;
    color: #fff;
    border: none;
    padding: 13px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s;
}

.btn-send:hover {
    background: #154d5a;
}

/* â”€â”€ RIGHT INFO â”€â”€ */
.contact-info {
    flex: 0.85;
    background: linear-gradient(160deg, #1f7a8c 0%, #185d6b 100%);
    color: #fff;
    padding: 42px 36px;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.info-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}

/* â”€â”€ CONTACT RESPONSIVE â”€â”€ */
@media (max-width: 700px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex: none;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.breadcrumb-hero {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(2rem, 6vw, 6rem);
    font-family: 'DM Sans', sans-serif;
}

/* Background image layer */
.breadcrumb-hero__bg {
    position: absolute;
    inset: 0;
    background:
        url('assets/bread-prod.png') center / cover no-repeat;
    z-index: 0;
}

/* Background security layer */
.breadcrumb-hero__bg1 {
    position: absolute;
    inset: 0;
    background:
        url('assets/bread-sec.jpg') center / cover no-repeat;
    z-index: 0;
}

/* Background business layer */
.breadcrumb-hero__bg2 {
    position: absolute;
    inset: 0;
    background:
        url('assets/bread-bus.jpg') center / cover no-repeat;
    z-index: 0;
}

/* Background business layer */
.breadcrumb-hero__bg3 {
    position: absolute;
    inset: 0;
    background:
        url('assets/bread-ab.jpg') center / cover no-repeat;
    z-index: 0;
}

/* Blue tinted overlay */
.breadcrumb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.589) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.568) 100%);
    z-index: 1;
}

/* Subtle geometric mesh */
.breadcrumb-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.07;
    background-image:
        linear-gradient(30deg, #fff 1px, transparent 1px),
        linear-gradient(150deg, #fff 1px, transparent 1px);
    background-size: 60px 100px;
}

/* Content */
.breadcrumb-hero__content {
    position: relative;
    z-index: 3;
}

/* Breadcrumb trail */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.6rem;
    font-size: 0.75rem;
    user-select: none;
}

.breadcrumb__current {
    color: #fff;
    font-weight: 500;
}

/* Page title */
.breadcrumb-hero__title {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* â•â• FOOTER â•â• */
.site-footer {
    background: #000;
    font-family: 'DM Sans', sans-serif;
    padding: 0 clamp(2rem, 6vw, 6rem);
}

/* â”€â”€ Top row: nav + socials â”€â”€ */
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
}

.footer__nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__socials {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}

.footer__socials a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.footer__socials a:hover {
    color: #fff;
}

/* Social icon SVGs */
.footer__socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* â”€â”€ Divider â”€â”€ */
.footer__divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* â”€â”€ Bottom row: copyright + back to top â”€â”€ */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 300;
}

.footer__back-top {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}

.footer__back-top:hover {
    color: #fff;
}

.footer__back-top svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ Footer Responsive â”€â”€ */
@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* â•â• ABOUT SECTION â•â• */
.about {
    font-family: 'DM Sans', sans-serif;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem);
    background: #fff;
}

.about__grid {
    display: flex;
    align-items: flex-start;
    gap: clamp(2.5rem, 5vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* â”€â”€ Text side (dominant) â”€â”€ */
.about__text {
    flex: 2;
}

.about__title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.about__bar {
    width: 50px;
    height: 4px;
    background: #0e7e8a;
    border-radius: 2px;
    margin-bottom: 1.8rem;
}

.about__desc {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 5px;
}

.about__desc:last-of-type {
    margin-bottom: 1.8rem;
}

.about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #0e7e8a;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #0e7e8a;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.about__link:hover {
    color: #0a5f68;
}

.about__link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ Image side (smaller) â”€â”€ */
.about__image {
    flex: 0.7;
    align-self: flex-start;
}

.about__image-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.about__image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* "Get a quote" overlay bar */
.about__cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 126, 138, 0.9);
    padding: 0.75rem 1.2rem;
}

.about__cta a {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
}

.about__cta a:hover {
    opacity: 0.85;
}

.about__cta svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ About Responsive â”€â”€ */
@media (max-width: 768px) {
    .about__grid {
        flex-direction: column;
    }

    .about__image {
        width: 100%;
        max-width: 300px;
    }
}

/* â•â• CORPORATE STATEMENTS â•â• */
.corporate {
    font-family: 'DM Sans', sans-serif;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem);
    background: #fff;
}

.corporate__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e7e8a;
    margin-bottom: 0.5rem;
}

.corporate__heading {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.2rem;
}

.corporate__grid {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1200px;
}

/* â”€â”€ Static image â”€â”€ */
.corporate__image {
    flex: 0.75;
    position: sticky;
    top: 2rem;
    border-radius: 6px;
    overflow: hidden;
}

.corporate__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* â”€â”€ Accordion side â”€â”€ */
.corporate__accordion {
    flex: 1.3;
    display: flex;
    flex-direction: column;
}

/* Single accordion item */
.accordion-item {
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
}

.accordion-item:first-child {
    border-top: 1px solid #e8e8e8;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0.2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: rgba(14, 126, 138, 0.03);
}

.accordion-num {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0e7e8a;
    min-width: 28px;
}

.accordion-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

/* Chevron angle via CSS */
.accordion-icon::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #333;
    border-bottom: 1.5px solid #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.35s ease;
}

.accordion-item.active .accordion-icon::before {
    transform: translate(-50%, -35%) rotate(-135deg);
}

/* Left accent bar on active */
.accordion-body-wrap {
    position: relative;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.accordion-item.active .accordion-body-wrap {
    max-height: 300px;
}

.accordion-body {
    padding: 0 0.2rem 1.4rem 2.8rem;
    position: relative;
}

.accordion-body::before {
    content: '';
    position: absolute;
    left: 0.65rem;
    top: -0.4rem;
    bottom: 1rem;
    width: 3px;
    background: #0e7e8a;
    border-radius: 2px;
}

.accordion-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #555;
}

/* â”€â”€ Dots indicator â”€â”€ */
.corporate__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.corporate__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
}

.corporate__dot.active {
    background: #0e7e8a;
}

/* â”€â”€ Corporate Responsive â”€â”€ */
@media (max-width: 768px) {
    .corporate__grid {
        flex-direction: column;
    }

    .corporate__image {
        position: relative;
        top: 0;
    }

    .corporate__image img {
        height: 280px;
    }
}

/* â•â• SECTION BLOCKS (Services) â•â• */
.section-block {
    font-family: 'DM Sans', sans-serif;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem);
}

.section-block:nth-child(odd) {
    background: #fff;
}

.section-block:nth-child(even) {
    background: #f7f8fa;
}

.section-block__grid {
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* Flip order for reversed sections */
.section-block--reversed .section-block__grid {
    flex-direction: row-reverse;
}

/* â”€â”€ Image â”€â”€ */
.section-block__image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
}

.section-block__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* â”€â”€ Text â”€â”€ */
.section-block__text {
    flex: 1.2;
}

.section-block__label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e7e8a;
    margin-bottom: 0.5rem;
}

.section-block__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.section-block__bar {
    width: 45px;
    height: 3px;
    background: #0e7e8a;
    border-radius: 2px;
    margin-bottom: 1.4rem;
}

.section-block__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.section-block__desc:last-of-type {
    margin-bottom: 1.6rem;
}

/* â”€â”€ Services checklist (two-column) â”€â”€ */
.section-block__services {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2.5rem;
    margin-bottom: 1.8rem;
    padding: 0;
}

.section-block__services li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a1a1a;
}

.services__arrow {
    color: #0e7e8a;
    font-size: 0.6rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .section-block__services {
        grid-template-columns: 1fr;
    }
}

.section-block__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: #0e7e8a;
    color: #fff;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
}

.section-block__btn:hover {
    background: #0a5f68;
}

.section-block__btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ Section Block Responsive â”€â”€ */
@media (max-width: 768px) {

    .section-block__grid,
    .section-block--reversed .section-block__grid {
        flex-direction: column;
    }

    .section-block__image img {
        height: 260px;
    }
}

/* â•â• HERO SLIDER â•â• */
.hero-slider {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

/* â”€â”€ Slides â”€â”€ */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 30, 40, 0.9) 0%,
            rgba(10, 30, 40, 0.7) 45%,
            rgba(10, 30, 40, 0.15) 100%);
}

.slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(2rem, 6vw, 6rem);
    max-width: 620px;
}

.slide__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4dc8d4;
    margin-bottom: 1rem;
}

.slide__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

.slide__desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.8rem;
    max-width: 480px;
}

.slide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s;
}

.slide__link:hover {
    gap: 0.8rem;
}

.slide__link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ Bottom thumbnail nav â”€â”€ */
.slider-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 clamp(1rem, 4vw, 4rem);
}

.slider-nav__item {
    flex: 1;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
    cursor: pointer;
    background: rgba(18, 45, 55, 0.75);
    backdrop-filter: blur(6px);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.slider-nav__item:hover {
    background: rgba(18, 45, 55, 0.9);
}

.slider-nav__item.active {
    background: rgba(14, 126, 138, 0.85);
}

.slider-nav__thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s;
}

.slider-nav__item.active .slider-nav__thumb {
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-nav__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    overflow: hidden;
}

.slider-nav__cat {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.slider-nav__item.active .slider-nav__cat {
    color: rgba(255, 255, 255, 0.85);
}

.slider-nav__name {
    font-size: 0.82rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Progress bar inside nav item */
.slider-nav__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #fff;
    pointer-events: none;
}

.slider-nav__item.active .slider-nav__progress {
    animation: sliderProgressFill 6s linear forwards;
}

@keyframes sliderProgressFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* â”€â”€ Slider Responsive â”€â”€ */
@media (max-width: 700px) {
    .hero-slider {
        height: 480px;
    }

    .slider-nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .slider-nav__item {
        max-width: 100%;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOP: Centered headline block
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.intro-headline {
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem) clamp(2.5rem, 4vw, 3.5rem);
    background: #fff;
    margin-bottom: 180px;
}

.intro-headline__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #556a7a;
    margin-bottom: 1rem;
}

.intro-headline__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #142d3c;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.intro-headline__bar {
    width: 48px;
    height: 4px;
    background: #1a5c6b;
    border-radius: 2px;
    margin: 0 auto;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   BOTTOM: Image + text side-by-side
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.intro-feature {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    background: #1a5c6b;
    padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
}

.intro-feature__card {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -250px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.intro-feature__image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-feature__image img {
    width: 100%;
    max-width: 650px;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Text panel */
.intro-feature__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem clamp(2rem, 4vw, 3.5rem);
    background: #fff;
}

.intro-feature__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #556a7a;
    margin-bottom: 0.7rem;
}

.intro-feature__title {
    font-size: clamp(1.5rem, 1.8vw, 2rem);
    font-weight: 700;
    color: #142d3c;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.intro-feature__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.intro-feature__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: var(--teal);
    color: #fff;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
    align-self: flex-start;
}

.intro-feature__btn:hover {
    background: #b94a2e;
}

.intro-feature__btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE CARDS CAROUSEL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-carousel {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card {
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    transition: background 0.3s;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Gaps between cards via border trick */
.service-card+.service-card {
    border-left: 4px solid #1a5c6b;
}

.service-card:hover {
    background: #f5f7f8;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 126, 138, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #1a5c6b;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #142d3c;
    margin-bottom: 0.6rem;
}

.service-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a5c6b;
    text-decoration: none;
    transition: gap 0.25s;
}

.service-card__link:hover {
    gap: 0.7rem;
}

.service-card__link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Carousel dots */
.services-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
}

.services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.services-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Carousel arrows */
.services-arrows {
    position: absolute;
    top: 50%;
    left: -0.5rem;
    right: -0.5rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.services-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.25s;
}

.services-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.services-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-header {
    margin-top: 50px;
    text-align: center;
}

.service-title {
    color: #fff;
}

/* ── Intro Feature / Services Responsive ── */
@media (max-width: 768px) {
    .intro-feature__card {
        flex-direction: column;
        margin-top: -60px;
    }

    .intro-feature__image {
        min-height: 220px;
    }

    .intro-feature__image img {
        width: 100%;
        height: 220px;
    }

    .services-carousel {
        overflow: visible;
        max-width: 100%;
    }

    .services-track {
        flex-direction: column;
        transform: none !important;
        width: 100% !important;
    }

    .service-card {
        width: 100% !important;
        min-width: 100% !important;
        border-left: none !important;
        border-top: 3px solid #1a5c6b;
    }

    .service-card:first-child {
        border-top: none;
    }

    .services-arrows,
    .services-dots {
        display: none;
    }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   SCROLL SECTION â€” Page Content Header
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.page-content {
    padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 6vw, 6rem);
    padding-bottom: 0;
    background: #fff;
    text-align: center;
}

.page-content__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a5c6b;
    margin-bottom: 0.5rem;
}

.page-content__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #142d3c;
    margin-bottom: 0.8rem;
}

.page-content__bar {
    width: 45px;
    height: 3px;
    background: var(--teal-dark);
    border-radius: 2px;
    margin: 0 auto;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   TALL WRAPPER â€” creates scroll room
   Height = number of slides Ã— 100vh
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.scroll-runway {
    position: relative;
    height: 105vh;
}

/* â”€â”€ Sticky container â€” pins to viewport â”€â”€ */
.scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
    overflow: hidden;
}

.scroll-box {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 520px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    background: #fff;
}

.scroll-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* â”€â”€ Slides stacked â”€â”€ */
.scroll-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.scroll-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.scroll-slide:nth-child(even) {
    flex-direction: row-reverse;
}

.scroll-slide:nth-child(even) .scroll-slide__text {
    background: #f7f8fa;
}

/* â”€â”€ Image (smaller) â”€â”€ */
.scroll-slide__image {
    flex: 0.7;
    position: relative;
    overflow: hidden;
}

.scroll-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scroll-slide__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(20, 45, 60, 0.3), transparent);
    pointer-events: none;
}

.scroll-slide__badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    z-index: 2;
}

/* â”€â”€ Text â”€â”€ */
.scroll-slide__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 3rem);
    background: #fff;
}

.scroll-slide__num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a5c6b;
    margin-bottom: 0.5rem;
}

.scroll-slide__title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: #142d3c;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.scroll-slide__bar {
    width: 35px;
    height: 3px;
    background: #d35a3a;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.scroll-slide__desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0.8rem;
}

.scroll-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: #1a5c6b;
    color: #fff;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s;
    align-self: flex-start;
}

.scroll-slide__btn:hover {
    background: #144a56;
}

.scroll-slide__btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* â”€â”€ Progress bar (bottom of box) â”€â”€ */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #1a5c6b;
    border-radius: 0 2px 0 0;
    transition: width 0.15s linear;
    z-index: 10;
}

/* â”€â”€ Dots â”€â”€ */
.scroll-dots {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.scroll-dot.active {
    background: #1a5c6b;
    transform: scale(1.3);
}

/* â”€â”€ Counter â”€â”€ */
.scroll-counter {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 600;
    color: #142d3c;
    letter-spacing: 0.05em;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* â”€â”€ Scroll Section Responsive â”€â”€ */
@media (max-width: 768px) {
    .scroll-runway {
        height: auto;
        min-height: 0;
    }

    .scroll-sticky {
        position: relative;
        height: auto;
        padding-bottom: 1.5rem;
    }

    .scroll-box {
        height: auto;
        min-height: 480px;
    }

    .scroll-inner {
        min-height: 480px;
    }

    .scroll-slide {
        flex-direction: column !important;
    }

    .scroll-slide__image {
        flex: none;
        height: 200px;
        min-height: 200px;
    }

    .scroll-slide__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scroll-slide__text {
        flex: 1;
        overflow-y: auto;
    }

    .scroll-dots {
        display: none;
    }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   NEWSLETTER SECTION
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.newsletter {
    font-family: 'DM Sans', sans-serif;
    background: var(--teal-dark);
    padding-top: 35px;
    padding-bottom: 45px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
}

.newsletter__inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
}

.newsletter__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #4dc8d4;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newsletter__title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
}

.newsletter__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€ Form â”€â”€ */
.newsletter__form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter__input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: #333;
    background: #fff;
}

.newsletter__input::placeholder {
    color: #aaa;
}

.newsletter__btn {
    padding: 0.85rem 1.6rem;
    background: var(--teal-light);
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.25s;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: #b94a2e;
}

.newsletter__btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newsletter__note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
}

@media (max-width: 500px) {
    .newsletter__form {
        flex-direction: column;
        border-radius: 5px;
    }

    .newsletter__btn {
        justify-content: center;
    }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   PRODUCT CAROUSEL SECTION
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.product-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 60px 40px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
}

/* â”€â”€ Carousel Side â”€â”€ */
.product-carousel-wrapper {
    flex: 1 1 55%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.product-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 36px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.product-slide-1 {
    background-image: url('assets/ppe.jpg');
}

.product-slide-2 {
    background-image: url('assets/ppe2.jpg');
}

.product-slide-3 {
    background-image: url('assets/ppe1.jpg');
}

/* Carousel Controls */
.product-carousel-controls {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.product-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.product-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.product-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 36px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
}

.product-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #fff;
}

/* Progress bar */
.product-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    transition: width 0.1s linear;
}

/* â”€â”€ Text Side â”€â”€ */
.product-text-content {
    flex: 1 1 40%;
    padding: 20px 0;
}

.product-text-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.product-text-body {
    font-size: 15.5px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 32px;
}

/* â”€â”€ Product Section Responsive â”€â”€ */
@media (max-width: 900px) {
    .product-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px;
    }

    .product-carousel-wrapper {
        width: 100%;
    }

    .product-text-content {
        padding: 0;
    }

    .product-text-heading {
        font-size: 32px;
    }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   RIGHT-EDGE FLOATING STACK
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.right-float-stack {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5px;
}

.side-dish {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -3px 0 12px rgba(0, 0, 0, 0.1);
}

.side-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 0 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -3px 0 12px rgba(0, 0, 0, 0.1);
}

.side-tab:hover {
    padding-right: 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.side-tab:active {
    padding-right: 10px;
}

/* â”€â”€ Feedback tab â”€â”€ */
.feedback-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--teal);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.feedback-tab:hover {
    background: var(--teal);
}

/* â”€â”€ WhatsApp tab â”€â”€ */
.whatsapp-tab {
    background: #25D366;
    text-decoration: none;
}

.whatsapp-tab:hover {
    background: #1ebe5a;
}

.whatsapp-tab svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   FEEDBACK MODAL
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.feedback-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.feedback-overlay.open {
    opacity: 1;
    visibility: visible;
}

.feedback-modal {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    margin-right: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    transform: translateX(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-overlay.open .feedback-modal {
    transform: translateX(0) scale(1);
}

.feedback-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.feedback-modal .modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.feedback-modal .close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: #999;
}

.feedback-modal .close-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.feedback-modal .modal-subtitle {
    font-size: 12px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.5;
}

.feedback-modal .form-group {
    margin-bottom: 18px;
}

.feedback-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 7px;
}

.feedback-modal .form-group input,
.feedback-modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.25s ease;
    outline: none;
    resize: vertical;
}

.feedback-modal .form-group input:focus,
.feedback-modal .form-group textarea:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(140, 191, 63, 0.12);
}

.feedback-modal .form-group textarea {
    min-height: 100px;
}

.rating-row {
    display: flex;
    gap: 8px;
}

.rating-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fafafa;
}

.rating-item:hover {
    border-color: var(--teal);
    background: #f5faed;
}

.rating-item.selected {
    border-color: var(--teal);
    background: #eef6dd;
}

.rating-item .emoji {
    font-size: 24px;
    line-height: 1;
}

.rating-item .rating-label {
    font-size: 10px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-item.selected .rating-label {
    color: var(--teal);
}

.feedback-modal .submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--teal);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.feedback-modal .submit-btn:hover {
    background: var(--teal);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(140, 191, 63, 0.35);
}

.feedback-modal .submit-btn:active {
    transform: translateY(0);
}

.success-state {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-state.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eef6dd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-state h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.success-state p {
    font-size: 13.5px;
    color: #888;
}

.form-state {
    display: block;
}

.form-state.hide {
    display: none;
}

/* â”€â”€ Floating Buttons Responsive â”€â”€ */
@media (max-width: 600px) {
    .side-tab {
        min-height: 90px;
        padding: 0 10px;
    }

    .feedback-tab {
        font-size: 12px;
    }

    .whatsapp-tab svg {
        width: 20px;
        height: 20px;
    }

    .feedback-overlay {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }

    .feedback-modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        margin-right: 0;
        padding: 28px 24px;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(40px) scale(0.95);
    }

    .feedback-overlay.open .feedback-modal {
        transform: translateY(0) scale(1);
    }
}

/* ══════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE LAYOUT
   Single consolidated set of media queries — no duplicates
═══════════════════════════════════════════════════════ */

/* ── Global: Prevent horizontal scroll ── */
html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Ensure all containers respect viewport ── */
.hero-slider,
.page-content,
.scroll-runway,
.newsletter,
.product-section,
.section-block,
.about,
.corporate,
.contact-section,
.site-footer,
.breadcrumb-hero {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ── 1024px: Tablets / small laptops ── */
@media (max-width: 1024px) {

    .top-bar-right a {
        padding: 0 16px;
        font-size: 12.5px;
    }

    .top-bar-right a.btn-proposal {
        padding: 0 20px;
    }

    .slider-nav__item {
        padding: 0.75rem 0.9rem;
        gap: 0.6rem;
    }

    .slider-nav__thumb {
        width: 42px;
        height: 42px;
    }

    .slider-nav__name {
        font-size: 0.78rem;
    }

    .product-section {
        gap: 40px;
        padding: 50px 30px;
    }

    .product-text-heading {
        font-size: 34px;
    }
}

/* ── 768px: Tablet / mobile landscape ── */
@media (max-width: 768px) {

    /* Top bar hidden */
    .top-bar {
        display: none;
    }

    /* Main Nav */
    .main-nav {
        padding: 0 16px;
        height: 62px;
    }

    .logo img {
        width: 130px;
    }

    .nav-links {
        z-index: 50;
    }

    /* Breadcrumb Hero */
    .breadcrumb-hero {
        height: 130px;
        padding: 0 1.5rem;
    }

    .breadcrumb-hero__title {
        font-size: 1.7rem;
    }

    /* Hero Slider */
    .hero-slider {
        height: 420px;
    }

    .slide__content {
        padding: 0 1.5rem;
        max-width: 90%;
    }

    .slide__title {
        font-size: 1.8rem;
    }

    .slide__desc {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .slide__overlay {
        background: linear-gradient(to right,
                rgba(10, 30, 40, 0.92) 0%,
                rgba(10, 30, 40, 0.8) 50%,
                rgba(10, 30, 40, 0.4) 100%);
    }

    .slider-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .slider-nav__item {
        max-width: 100%;
    }

    /* Intro Headline */
    .intro-headline {
        margin-bottom: 80px;
        padding: 2rem 1.5rem;
    }

    .intro-headline__title {
        font-size: 1.3rem;
    }

    /* Intro Feature */
    .intro-feature {
        padding: 3rem 1rem 2.5rem;
        overflow: hidden;
    }

    .intro-feature__card {
        flex-direction: column;
        margin-top: -50px;
    }

    .intro-feature__image {
        min-height: auto;
    }

    .intro-feature__image img {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .intro-feature__text {
        padding: 1.5rem 1.2rem;
    }

    .intro-feature__title {
        font-size: 1.25rem;
    }

    .intro-feature__desc {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }

    /* Service Cards */
    .services-carousel {
        overflow: visible;
        max-width: 100%;
    }

    .services-track {
        flex-direction: column;
        transform: none !important;
        width: 100% !important;
    }

    .service-card {
        width: 100% !important;
        min-width: 100% !important;
    }

    .service-card+.service-card {
        border-left: none;
        border-top: 3px solid #1a5c6b;
    }

    .services-arrows,
    .services-dots {
        display: none;
    }

    /* Scroll Section */
    .scroll-runway {
        height: auto;
    }

    .scroll-sticky {
        position: relative;
        height: auto;
        padding-bottom: 1.5rem;
    }

    .scroll-box {
        height: auto;
        min-height: 470px;
    }

    .scroll-inner {
        min-height: 470px;
    }

    .scroll-slide {
        flex-direction: column !important;
    }

    .scroll-slide__image {
        flex: none;
        height: 190px;
        min-height: 190px;
    }

    .scroll-slide__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scroll-slide__text {
        flex: 1;
        overflow-y: auto;
    }

    .scroll-dots {
        display: none;
    }

    /* Newsletter */
    .newsletter__inner {
        padding: 0 1.2rem;
    }

    .newsletter__form {
        flex-direction: column;
        border-radius: 5px;
    }

    .newsletter__btn {
        justify-content: center;
    }

    /* Product Section */
    .product-section {
        flex-direction: column;
        gap: 36px;
        padding: 40px 20px;
    }

    .product-carousel-wrapper {
        width: 100%;
        flex: none;
        aspect-ratio: 16/10;
    }

    .product-text-content {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .product-text-heading {
        font-size: 28px;
    }

    .product-text-body {
        font-size: 15px;
    }

    /* Section Blocks */
    .section-block__grid,
    .section-block--reversed .section-block__grid {
        flex-direction: column;
    }

    .section-block__image {
        width: 100%;
    }

    .section-block__image img {
        height: 260px;
        width: 100%;
    }

    .section-block__text {
        width: 100%;
    }

    /* Contact */
    .contact-section {
        padding: 60px 16px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        flex: none;
        width: 100%;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 16px;
    }

    /* About */
    .about__grid {
        flex-direction: column;
    }

    .about__image {
        width: 100%;
        max-width: 100%;
    }

    /* Corporate */
    .corporate__grid {
        flex-direction: column;
    }

    .corporate__image {
        position: relative;
        top: 0;
        width: 100%;
    }

    .corporate__image img {
        height: 280px;
    }

    /* Footer */
    .footer__top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem 1rem;
    }

    .footer__nav a {
        font-size: 0.82rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    /* Floating Buttons */
    .right-float-stack {
        gap: 2px;
    }

    .side-tab {
        min-height: 65px;
        padding: 0 6px;
    }

    .feedback-tab {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .whatsapp-tab svg {
        width: 18px;
        height: 18px;
    }

    .side-dish {
        min-height: 28px;
        padding: 0 6px;
    }
}

/* ── 600px: Large phones ── */
@media (max-width: 600px) {

    .hero-slider {
        height: 420px;
    }

    .slide__content {
        padding: 0 1.2rem;
        max-width: 100%;
    }

    .slide__label {
        font-size: 0.65rem;
        margin-bottom: 0.7rem;
    }

    .slide__title {
        font-size: 1.65rem;
        margin-bottom: 0.9rem;
    }

    .slide__desc {
        font-size: 0.83rem;
        margin-bottom: 1.3rem;
    }

    .slider-nav__item {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    .slider-nav__thumb {
        width: 34px;
        height: 34px;
    }

    .slider-nav__name {
        font-size: 0.74rem;
    }

    .slider-nav__cat {
        font-size: 0.58rem;
    }

    .intro-headline {
        margin-bottom: 80px;
        padding: 2rem 1.2rem;
    }

    .intro-feature__card {
        margin-top: -40px;
    }

    .scroll-runway {
        height: auto;
    }

    .scroll-box {
        height: auto;
        min-height: 460px;
        padding: 0 0.8rem;
    }

    .scroll-inner {
        min-height: 460px;
    }

    .scroll-slide__image {
        height: 155px;
    }

    .scroll-slide__text {
        padding: 1rem 1.2rem;
    }

    .scroll-slide__title {
        font-size: 1.1rem;
    }

    .scroll-slide__desc {
        font-size: 0.82rem;
        margin-bottom: 0.4rem;
    }

    .scroll-slide__desc:last-of-type {
        display: none;
    }

    .scroll-slide__btn {
        font-size: 0.72rem;
        padding: 0.45rem 0.9rem;
        margin-top: 0.3rem;
    }

    .section-block {
        padding: 2.5rem 1.2rem;
    }

    .section-block__image img {
        height: 240px;
    }

    .product-section {
        padding: 36px 16px;
        gap: 30px;
    }

    .product-carousel-wrapper {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }

    .product-carousel-slide {
        padding: 24px;
    }

    .product-text-heading {
        font-size: 26px;
    }

    .product-text-body {
        font-size: 14px;
    }

    .about {
        padding: 2.5rem 1.2rem;
    }

    .about__image-wrap img {
        height: 260px;
    }

    .corporate {
        padding: 2.5rem 1.2rem;
    }

    .corporate__image img {
        height: 250px;
    }

    .contact-section {
        padding: 40px 12px;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .contact-info {
        padding: 30px 22px;
    }

    .site-footer {
        padding: 0 1.2rem;
    }

    .feedback-overlay {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }

    .feedback-modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        margin-right: 0;
        padding: 28px 24px;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(40px) scale(0.95);
    }

    .feedback-overlay.open .feedback-modal {
        transform: translateY(0) scale(1);
    }

    .side-tab {
        min-height: 80px;
        padding: 0 9px;
    }

    .feedback-tab {
        font-size: 11px;
    }

    .whatsapp-tab svg {
        width: 20px;
        height: 20px;
    }
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {

    .main-nav {
        padding: 0 14px;
        height: 58px;
    }

    .logo img {
        width: 120px;
    }

    .nav-links.open {
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-links>a,
    .nav-links>.dropdown>a {
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-search {
        padding: 6px;
    }

    .breadcrumb-hero {
        height: 110px;
        padding: 0 1.2rem;
    }

    .breadcrumb-hero__title {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .hero-slider {
        height: 380px;
    }

    .slide__title {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
    }

    .slide__desc {
        font-size: 0.78rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .slide__link {
        font-size: 0.78rem;
    }

    .slider-nav {
        display: none;
    }

    .intro-headline {
        margin-bottom: 40px;
        padding: 1.5rem 1rem;
    }

    .intro-headline__title {
        font-size: 1.05rem;
    }

    .intro-feature {
        padding: 2rem 0.8rem 2rem;
        overflow: hidden;
    }

    .intro-feature__card {
        margin-top: -20px;
    }

    .intro-feature__image img {
        height: 190px;
    }

    .intro-feature__text {
        padding: 1.2rem 1rem;
    }

    .intro-feature__title {
        font-size: 1.1rem;
    }

    .intro-feature__desc {
        font-size: 0.82rem;
        margin-bottom: 1.2rem;
    }

    .intro-feature__btn {
        font-size: 0.78rem;
        padding: 0.6rem 1.1rem;
    }

    .services-carousel {
        margin-top: 1.5rem;
        overflow: visible;
        max-width: 100%;
    }

    .services-track {
        flex-direction: column;
        transform: none !important;
        width: 100% !important;
    }

    .services-header {
        margin-top: 25px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 1.3rem 1rem;
        width: 100% !important;
        min-width: 100% !important;
    }

    .service-card+.service-card {
        border-left: none !important;
        border-top: 3px solid #1a5c6b;
    }

    .service-card__title {
        font-size: 0.92rem;
    }

    .service-card__desc {
        font-size: 0.78rem;
        margin-bottom: 0.8rem;
    }

    .services-arrows,
    .services-dots {
        display: none;
    }

    .scroll-runway {
        height: auto;
    }

    .scroll-box {
        height: auto;
        min-height: 420px;
        padding: 0 0.6rem;
    }

    .scroll-inner {
        min-height: 420px;
    }

    .scroll-slide__image {
        height: 140px;
    }

    .scroll-slide__text {
        padding: 0.8rem 1rem;
    }

    .scroll-slide__title {
        font-size: 1rem;
    }

    .scroll-slide__desc {
        font-size: 0.78rem;
        line-height: 1.6;
        margin-bottom: 0.3rem;
    }

    .scroll-slide__btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .scroll-counter {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .page-content {
        padding: 2rem 1.2rem;
    }

    .page-content__title {
        font-size: 1.3rem;
    }

    .newsletter {
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .newsletter__inner {
        padding: 0 0.8rem;
    }

    .newsletter__title {
        font-size: 1.25rem;
    }

    .newsletter__desc {
        font-size: 0.8rem;
    }

    .newsletter__input {
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
    }

    .newsletter__btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
    }

    .section-block {
        padding: 1.8rem 0.8rem;
    }

    .section-block__image img {
        height: 200px;
    }

    .section-block__title {
        font-size: 1.2rem;
    }

    .section-block__desc {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .section-block__btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .section-block__services {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .section-block__services li {
        font-size: 0.85rem;
    }

    .about {
        padding: 1.8rem 0.8rem;
    }

    .about__title {
        font-size: 1.3rem;
    }

    .about__desc {
        font-size: 13px;
    }

    .about__image-wrap img {
        height: 220px;
    }

    .corporate {
        padding: 1.8rem 0.8rem;
    }

    .corporate__heading {
        font-size: 1.25rem;
    }

    .corporate__image img {
        height: 200px;
    }

    .accordion-title {
        font-size: 0.88rem;
    }

    .accordion-body p {
        font-size: 0.82rem;
    }

    .accordion-body {
        padding: 0 0.2rem 1.2rem 2.2rem;
    }

    .contact-section {
        padding: 28px 8px;
    }

    .contact-form {
        padding: 22px 16px;
    }

    .contact-info {
        padding: 22px 16px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 17px;
    }

    .btn-send {
        width: 100%;
        justify-content: center;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .product-section {
        padding: 28px 12px;
        gap: 20px;
    }

    .product-carousel-wrapper {
        border-radius: 12px;
        aspect-ratio: 4/3;
    }

    .product-text-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .product-text-body {
        font-size: 13.5px;
        line-height: 1.75;
    }

    .product-carousel-btn {
        width: 34px;
        height: 34px;
    }

    .product-carousel-controls {
        bottom: 14px;
        right: 16px;
    }

    .product-carousel-dots {
        bottom: 14px;
        left: 20px;
    }

    .site-footer {
        padding: 0 0.8rem;
    }

    .footer__nav {
        gap: 0.5rem 0.8rem;
    }

    .footer__nav a {
        font-size: 0.76rem;
    }

    .footer__copyright {
        font-size: 0.72rem;
    }

    .footer__back-top {
        font-size: 0.72rem;
    }

    .right-float-stack {
        gap: 1px;
    }

    .side-tab {
        min-height: 48px;
        padding: 0 5px;
    }

    .feedback-tab {
        font-size: 7.5px;
        letter-spacing: 0.6px;
    }

    .whatsapp-tab svg {
        width: 14px;
        height: 14px;
    }

    .side-dish {
        min-height: 22px;
        padding: 0 4px;
    }
}

/* ── 360px: Very small phones ── */
@media (max-width: 360px) {

    .main-nav {
        padding: 0 10px;
        height: 52px;
    }

    .logo img {
        width: 100px;
    }

    .hero-slider {
        height: 340px;
    }

    .slide__title {
        font-size: 1.2rem;
    }

    .slide__desc {
        font-size: 0.72rem;
        line-height: 1.6;
    }

    .intro-headline {
        margin-bottom: 30px;
        padding: 1.2rem 0.8rem;
    }

    .intro-headline__title {
        font-size: 0.95rem;
    }

    .intro-feature {
        padding: 1.5rem 0.6rem 1.5rem;
        overflow: hidden;
    }

    .intro-feature__card {
        margin-top: -15px;
    }

    .intro-feature__image img {
        height: 160px;
    }

    .intro-feature__title {
        font-size: 1rem;
    }

    .intro-feature__desc {
        font-size: 0.8rem;
    }

    .scroll-runway {
        height: auto;
    }

    .scroll-box {
        height: auto;
        min-height: 400px;
    }

    .scroll-inner {
        min-height: 400px;
    }

    .scroll-slide__image {
        height: 120px;
    }

    .scroll-slide__title {
        font-size: 0.9rem;
    }

    .scroll-slide__desc {
        font-size: 0.74rem;
        line-height: 1.6;
    }

    .scroll-slide__btn {
        font-size: 0.68rem;
        padding: 0.45rem 0.9rem;
    }

    .section-block {
        padding: 1.5rem 0.7rem;
    }

    .section-block__image img {
        height: 170px;
    }

    .section-block__title {
        font-size: 1.05rem;
    }

    .section-block__desc {
        font-size: 0.8rem;
    }

    .section-block__label {
        font-size: 8px;
    }

    .about {
        padding: 1.5rem 0.7rem;
    }

    .about__title {
        font-size: 1.15rem;
    }

    .about__image-wrap img {
        height: 190px;
    }

    .corporate {
        padding: 1.5rem 0.7rem;
    }

    .corporate__heading {
        font-size: 1.1rem;
    }

    .corporate__image img {
        height: 170px;
    }

    .accordion-header {
        padding: 1rem 0.2rem;
        gap: 0.7rem;
    }

    .accordion-body {
        padding: 0 0.2rem 1rem 1.8rem;
    }

    .contact-section {
        padding: 20px 6px;
    }

    .contact-form {
        padding: 18px 12px;
    }

    .contact-info {
        padding: 18px 12px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .product-section {
        padding: 20px 8px;
        gap: 20px;
    }

    .product-text-heading {
        font-size: 20px;
    }

    .product-text-body {
        font-size: 12.5px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .product-carousel-wrapper {
        border-radius: 10px;
    }

    .product-carousel-btn {
        width: 30px;
        height: 30px;
    }

    .product-carousel-controls {
        bottom: 10px;
        right: 12px;
        gap: 6px;
    }

    .product-carousel-dots {
        bottom: 10px;
        left: 14px;
    }

    .newsletter__title {
        font-size: 1.1rem;
    }

    .newsletter__desc {
        font-size: 0.78rem;
    }

    .site-footer {
        padding: 0 0.6rem;
    }

    .footer__nav a {
        font-size: 0.7rem;
    }

    .footer__copyright {
        font-size: 0.68rem;
    }

    .footer__back-top {
        font-size: 0.68rem;
    }

    .side-tab {
        min-height: 48px;
        padding: 0 5px;
    }

    .feedback-tab {
        font-size: 7.5px;
        letter-spacing: 0.5px;
    }

    .whatsapp-tab svg {
        width: 14px;
        height: 14px;
    }

    .side-dish {
        min-height: 22px;
        padding: 0 4px;
    }
}

/* ══════════════════════════════════════════════════════
   QUOTATION REQUEST PAGE
═══════════════════════════════════════════════════════ */

/* ── Page body override for quote page ── */
.quote-body {
    background: #f4f6f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ── Page Wrapper ── */
.quote-page {
    width: 100%;
    max-width: 1060px;
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-page--centered {
    max-width: 680px;
    flex-direction: column;
}

/* ── Left: Form Panel ── */
.quote-form-panel {
    flex: 1.4;
    background: #fff;
    padding: 48px 44px;
}

.quote-form-panel__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    text-decoration: none;
}

.quote-form-panel__logo img {
    height: 36px;
    width: auto;
}

.quote-form-panel h1 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #142d3c;
    margin-bottom: 6px;
    line-height: 1.25;
}

.quote-form-panel__sub {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* ── Quotation Form Fields ── */
.q-form__row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.q-form__group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.q-form__group--full {
    margin-bottom: 18px;
}

.q-form__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #142d3c;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.q-form__label span {
    color: var(--coral);
}

.q-form__input,
.q-form__select,
.q-form__textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dfe3e8;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: #142d3c;
    background: #fafbfc;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.q-form__input::placeholder,
.q-form__textarea::placeholder {
    color: #a0aab4;
}

.q-form__input:focus,
.q-form__select:focus,
.q-form__textarea:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.1);
}

.q-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.q-form__textarea {
    resize: vertical;
    min-height: 110px;
}

/* ── File Upload ── */
.q-form__file-wrap {
    position: relative;
    margin-bottom: 18px;
}

.q-form__file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1.5px dashed #dfe3e8;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    background: #fafbfc;
}

.q-form__file-label:hover {
    border-color: var(--teal);
    background: rgba(31, 122, 140, 0.03);
}

.q-form__file-label svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

.q-form__file-text {
    font-size: 0.82rem;
    color: #555;
}

.q-form__file-text strong {
    color: var(--teal);
    font-weight: 600;
}

.q-form__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.q-form__file-name {
    font-size: 0.78rem;
    color: var(--teal);
    margin-top: 6px;
    display: none;
}

/* ── Urgency Radio Buttons ── */
.q-form__radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.q-form__radio-item {
    flex: 1;
    position: relative;
}

.q-form__radio-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.q-form__radio-item label {
    display: block;
    text-align: center;
    padding: 10px 12px;
    border: 1.5px solid #dfe3e8;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.25s;
    background: #fafbfc;
}

.q-form__radio-item input:checked + label {
    border-color: var(--teal);
    background: rgba(31, 122, 140, 0.06);
    color: var(--teal-dark);
    font-weight: 600;
}

.q-form__radio-item label:hover {
    border-color: var(--teal);
}

/* ── Submit Button ── */
.q-form__submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: var(--teal-dark);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s, transform 0.15s;
    margin-top: 8px;
}

.q-form__submit:hover {
    background: #144a56;
    transform: translateY(-1px);
}

.q-form__submit:active {
    transform: translateY(0);
}

.q-form__submit svg {
    width: 16px;
    height: 16px;
}

/* ── Right: Info Sidebar ── */
.quote-info-panel {
    flex: 0.65;
    background: linear-gradient(165deg, #1f7a8c 0%, #185d6b 50%, #143d48 100%);
    color: #fff;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
}

.quote-info-panel h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.quote-info-panel__desc {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* ── Steps ── */
.quote-steps {
    list-style: none;
    margin-bottom: 40px;
}

.quote-step {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.quote-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.quote-step__text {
    flex: 1;
}

.quote-step__text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.quote-step__text p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Contact Info (sidebar bottom) ── */
.quote-info-contact {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
}

.quote-info-contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-info-contact__item:last-child {
    margin-bottom: 0;
}

.quote-info-contact__item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.quote-info-contact__item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Success State ── */
.quote-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.quote-success.show {
    display: block;
}

.quote-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quote-success__icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
}

.quote-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #142d3c;
    margin-bottom: 8px;
}

.quote-success p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 28px;
}

.quote-success__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.25s;
}

.quote-success__link:hover {
    gap: 10px;
}

.quote-success__link svg {
    width: 16px;
    height: 16px;
}

/* ── Quotation Page Responsive ── */
@media (max-width: 860px) {
    .quote-body {
        padding: 20px 12px;
        align-items: flex-start;
    }

    .quote-page {
        flex-direction: column;
        border-radius: 12px;
    }

    .quote-form-panel {
        padding: 32px 24px;
    }

    .quote-info-panel {
        padding: 32px 24px;
    }
}

@media (max-width: 520px) {
    .quote-body {
        padding: 12px 8px;
    }

    .quote-form-panel {
        padding: 24px 18px;
    }

    .quote-form-panel h1 {
        font-size: 1.35rem;
    }

    .q-form__row {
        flex-direction: column;
        gap: 0;
    }

    .q-form__group {
        margin-bottom: 18px;
    }

    .q-form__radio-group {
        flex-wrap: wrap;
    }

    .q-form__radio-item {
        flex: 1 1 45%;
    }

    .quote-info-panel {
        padding: 24px 18px;
    }
}