/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.04em;
    line-height: 1.05;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: #111;
    margin-bottom: 10px;
    /* text-align: center; */
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 1rem;
    color: #b6b6b6;
    font-weight: 400;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

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

.btn-primary {
    background: #6acd73;
    color: #fff;
    border-color: #6acd73;
}

.btn-primary:hover {
    background: transparent;
    color: #6acd73;
}

.btn-outline-dark {
    background: transparent;
    color: #111;
    border-color: #111;
}

.btn-outline-dark:hover {
    background: #111;
    color: #fff;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    background: #e8e8e8;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: #e8e8e8;
    padding: 14px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: auto;
    width: 100px;
    filter: none;
    transition: opacity 0.2s, filter 0.3s ease;
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #111;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6acd73;
    transition: width 0.25s ease;
}

.nav-link:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-link:not(.nav-cta):hover {
    color: #fff;
}

.navbar.scrolled .nav-link {
    color: #111;
}

.navbar.scrolled .nav-link:not(.nav-cta):hover {
    color: #111;
}

.nav-cta {
    background: #6acd73;
    color: #4d4d4d !important;
    padding: 12px 30px;
    border-radius: 2px;
    border: 1px solid rgba(26, 26, 26, 0.3);
    background-color: rgba(26, 26, 26, 0.05);
    letter-spacing: 0.1em;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #5ab863 !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: #111;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/test123.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: 5%;
    /* padding: 0 28px; */
    color: #fff;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    margin: 0 auto 36px;
    max-width: 260px;
}

.hero-heading {
    text-align: left;
    font-size: 70px;
    width: 40%;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    font-weight: 300;
    max-width: 680px;
    text-align: left;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    z-index: 1;
    transition: color 0.2s;
    animation: bounce 2s ease infinite;
}

.hero-scroll-arrow svg {
    width: 32px;
    height: 32px;
}

.hero-scroll-arrow:hover {
    color: #6acd73;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TEAM
============================================================ */
.team {
    padding-top: 100px;
    padding-bottom: 0;
}

.bio p {
    font-size: 0.88rem;
    color: #6395b8;
    font-weight: 500;
    margin-bottom: 24px;
}

.team .section-header {
    margin-bottom: 64px;
}

.team-intro {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.team-intro-text p {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    max-width: 380px;
}

.team-intro-img img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .team-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Each alternating row */
.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.team-row--reverse {
    direction: rtl;
}

.team-row--reverse > * {
    direction: ltr;
}

.team-row-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: #fff;
}

.team-row-img img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    border: 8px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.team-row-img2 {
    overflow: hidden;
}

.team-row-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.team-row:hover .team-row-img2 img {
    transform: scale(1.04);
}

.team-row:hover .team-row-img img {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.team-row-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 80px;
}
.team-row-text2 {
    display: flex;
    flex-direction: column;
    padding: 72px 80px;
}

.team-row--reverse .team-row-text {
    background: #f7f7f7;
}

.gold-medal {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: -2px;
}

.gold-medal svg {
    width: 28px;
    height: 28px;
}

.team-role {
    display: inline-block;
    color: #6395b8;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0px;
}

.team-row-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #111;
    margin-bottom: 0px;
    /* line-height: 1.7; */
}

.team-row-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.85;
    max-width: 440px;
}

.team-row-text p.bio {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #b6b6b6;
    text-transform: uppercase;
    margin-bottom: 14px;
    max-width: 440px;
}

.team-row-text2 h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: #111;
    margin-bottom: 5px;
    /* line-height: 1.7; */
}

.team-row-text2 p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.85;
    max-width: 440px;
}

.team-row-text2 p.bio {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #b6b6b6;
    text-transform: uppercase;
    margin-bottom: 14px;
    max-width: 440px;
}

p.anwar {
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #ebebeb;
}

.team-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.04em;
    color: #6acd73;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b6b6b6;
}

/* ============================================================
   SERVICES HUB
============================================================ */
.services {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin-top:130px;
}

/* Shaded circle */
.hub-circle-bg {
    position: absolute;
    width: 50%;
    left: 25%;
    top: -10%;
    /* transform: translateY(-48%); */
    pointer-events: none;
    z-index: 0;
}

/* Centre hover description */
.hub-center-text {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 180px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hub-center-text.active {
    opacity: 1;
}

.hub-center-desc {
    font-size: 0.85rem;
    color: #2a4a5e;
    line-height: 1.6;
    font-style: italic;
}

/* Centred title — inside the circle */
.hub-title-row {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 32%;
    transform: translateY(-50%);
    z-index: 1;
}

.hub-title-bar {
    width: 44px;
    height: 3px;
    background: #111;
    margin: 10px auto 0;
}

/* All service items absolutely positioned */
.svc {
    position: absolute;
    z-index: 1;
}

/* Left column — 3 items */
/* .svc-1 { top: 40px;  left: 75px; }
.svc-2 { top: 210px; left: 120px; }
.svc-7 { top: 390px; left: 75px; } */

.svc-1 {
    top: 40px;
    left: 250px;
}
.svc-2 {
    top: 160px;
    left: 200px;
}
.svc-7 {
    top: 300px;
    left: 190px;
}

/* Bottom row — 3 items */
/* .svc-3 { top: 560px; left:  calc(50% - 350px); }
.svc-9 { top: 560px; left:  calc(50% - 90px); }
.svc-4 { top: 560px; right: calc(50% - 350px); } */
.svc-3 {
    top: 440px;
    left: calc(50% - 300px);
}
.svc-9 {
    top: 530px;
    left: calc(50% - 50px);
}
.svc-4 {
    top: 440px;
    right: calc(50% - 250px);
}

/* Right column — 3 items */
/* .svc-5 { top: 200px; right: 120px; }
.svc-6 { top: 40px;  right: 90px; }
.svc-8 { top: 380px; right: 75px; } */
.svc-5 {
    top: 160px;
    right: 220px;
}
.svc-6 {
    top: 40px;
    right: 310px;
}
.svc-8 {
    top: 300px;
    right: 260px;
}

/* Left items: text right-aligned, icon on the right */
.hub-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hub-item--left  { flex-direction: row; }
.hub-item--right { flex-direction: row; }

.hub-text--left  { text-align: right; }
.hub-text--right { text-align: left; }

.hub-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #2a4a5e;
    margin-bottom: 4px;
    line-height: 1.35;
    letter-spacing: 0;
}

.hub-text p {
    display: none;
}

/* Icon circles */
.hub-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f7f7f7;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6395b8;
    box-shadow: 1px 1px 2px #ddd1b9;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.hub-icon:hover {
    background: #6acd73;
    color: #fff;
    transform: scale(1.1);
}

.hub-icon svg {
    width: 28px;
    height: 28px;
}

/* Bottom centre items: icon above, text below */
.hub-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hub-bottom-item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #2a4a5e;
    letter-spacing: 0;
}

.hub-bottom-item p {
    display: none;
}

/* ── Tablet + Mobile: stack as cards ── */
@media (max-width: 900px) {

    /* Section becomes normal flow */
    .services {
        position: static;
        height: auto;
        padding: 72px 28px 80px;
        overflow: visible;
    }

    .hub-circle-bg,
    .hub-center-text { display: none !important; }

    /* Title back into flow */
    .hub-title-row {
        position: static;
        transform: none;
        margin-bottom: 48px;
        text-align: center;
    }

    /* Two-column card grid */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 720px;
        margin: 0 auto;
    }

    /* Every service item: card style */
    .svc {
        position: static;
        top: auto; left: auto; right: auto; bottom: auto;
        background: #fff;
        border: 1px solid #e4e4e4;
        border-radius: 8px;
        padding: 24px 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Hub items: icon on top, text below */
    .hub-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hub-item--left,
    .hub-item--right {
        flex-direction: column;
        align-items: flex-start;
    }

    .hub-text--left,
    .hub-text--right { text-align: left; }

    .hub-text h3 {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    /* Show descriptions on small screens */
    .hub-text p,
    .hub-bottom-item p {
        display: block;
        font-size: 0.82rem;
        color: #666;
        line-height: 1.6;
        max-width: none;
    }

    /* Bottom items same card style */
    .hub-bottom-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .hub-bottom-item h3 {
        font-size: 0.92rem;
    }

    /* Icon stays same size */
    .hub-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }
}

/* ── Mobile: single column ── */
@media (max-width: 540px) {
    .services {
        padding: 60px 16px 64px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .svc {
        padding: 20px 16px;
    }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
    background: #f7f7f7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 52px;
}

.review-card {
    padding: 36px;
    border-top: 4px solid #6acd73;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #6acd73;
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.review-card p {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #6395b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    font-family: 'Roboto', sans-serif;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.78rem;
    color: #b6b6b6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reviews-cta {
    text-align: center;
}

.google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   CONTACT
============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 88px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.85;
    margin-bottom: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f8f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #6acd73;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6395b8;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-item span {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Roboto', sans-serif;
    font-size: 0.93rem;
    color: #111;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    border-radius: 2px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6395b8;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.78rem;
    color: #b6b6b6;
    text-align: center;
    margin-top: -8px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #111;
    padding: 84px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 52px;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

.footer-brand img {
    margin-bottom: 20px;
    height: auto;
    width: 100px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #888;
    max-width: 280px;
}

.footer h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    font-size: 0.93rem;
    color: #888;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #6acd73;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.93rem;
    color: #888;
    line-height: 1.6;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: #6acd73;
}

.footer-contact-item a {
    color: #888;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #6acd73;
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.84rem;
    color: #777;
}

.footer-credit {
    color: #777 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-credit img {
    width: 30px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.form-submit-msg {
    margin-top: 12px;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 4px;
}

.form-submit-msg--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.form-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
}

.footer-legal-links {
    margin-left: 10px;
    white-space: nowrap;
}

.footer-legal-links a {
    color: #777;
    font-size: 0.84rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-legal-links a:hover {
    color: #444;
}

/* ============================================================
   STICKY CTA BAR
============================================================ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #1a2b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 14px 28px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sticky-bar.hidden {
    transform: translateY(100%);
}

.sticky-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-bar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.sticky-bar-sub {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: #6acd73;
    font-weight: 400;
}

.sticky-bar-sub a {
    color: #6acd73;
    text-decoration: none;
    transition: color 0.2s;
}

.sticky-bar-sub a:hover {
    color: #8ddea4;
}

.sticky-bar-sub .bar-divider {
    color: rgba(255,255,255,0.3);
}

.sticky-bar-sub svg {
    width: 14px;
    height: 14px;
    stroke: #6acd73;
    flex-shrink: 0;
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-bar-btn {
    display: inline-block;
    padding: 9px 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.sticky-bar-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.sticky-bar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}

.sticky-bar-close:hover {
    color: #fff;
}

.sticky-bar-close svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 700px) {
    .sticky-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 20px;
        text-align: center;
    }

    .sticky-bar-sub {
        justify-content: center;
    }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-row-text {
        padding: 52px 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .intro-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 32px;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-heading {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
        width: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    /* Nav */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
        gap: 18px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        color: #111 !important;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 44px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .team-row,
    .team-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: unset;
    }

    .team-row-img {
        padding: 32px 24px;
        aspect-ratio: unset;
    }

    .team-row-text {
        padding: 40px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .intro-strip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .hero-text {
        font-size: 0.97rem;
    }

    .intro-strip-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-strip-item {
        justify-content: center;
    }

    .review-card {
        padding: 28px 24px;
    }
}

/* ============================================================
   LARGE SCREENS — 1440px+
============================================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    .nav-container {
        max-width: 1360px;
    }
}

/* ============================================================
   LARGE SCREENS — 1920px+
============================================================ */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .container,
    .nav-container {
        max-width: 1680px;
    }

    .hero-heading {
        font-size: 90px;
    }

    /* Constrain hub so items don't fly to screen edges */
    .services {
        height: 750px;
        max-width: 1680px;
        margin-left: auto;
        margin-right: auto;
    }

    .svc-1 { top: 50px;  left: 310px; }
    .svc-2 { top: 190px; left: 250px; }
    .svc-7 { top: 350px; left: 240px; }

    .svc-3 { top: 520px; left: calc(50% - 360px); }
    .svc-9 { top: 620px; left: calc(50% - 60px);  }
    .svc-4 { top: 520px; right: calc(50% - 310px); }

    .svc-5 { top: 190px; right: 270px; }
    .svc-6 { top: 50px;  right: 380px; }
    .svc-8 { top: 350px; right: 320px; }

    .hub-title-row { top: 36%; }

    .hub-icon {
        width: 70px;
        height: 70px;
    }

    .hub-icon svg {
        width: 34px;
        height: 34px;
    }
}

/* ============================================================
   LARGE SCREENS — 2400px+ (2560k)
============================================================ */
@media (min-width: 2400px) {
    html {
        font-size: 20px;
    }

    .container,
    .nav-container {
        max-width: 2000px;
    }

    .hero-heading {
        font-size: 110px;
    }

    .services {
        height: 860px;
        max-width: 2000px;
    }

    .svc-1 { top: 60px;  left: 370px; }
    .svc-2 { top: 220px; left: 300px; }
    .svc-7 { top: 400px; left: 285px; }

    .svc-3 { top: 600px; left: calc(50% - 420px); }
    .svc-9 { top: 710px; left: calc(50% - 70px);  }
    .svc-4 { top: 600px; right: calc(50% - 360px); }

    .svc-5 { top: 220px; right: 320px; }
    .svc-6 { top: 60px;  right: 450px; }
    .svc-8 { top: 400px; right: 380px; }

    .hub-title-row { top: 34%; }

    .hub-icon {
        width: 80px;
        height: 80px;
    }

    .hub-icon svg {
        width: 38px;
        height: 38px;
    }
}
