/* ================================================================
   FISHES HUB
   Main Website Stylesheet
   ================================================================ */


/* ================================================================
   01. CSS VARIABLES / DESIGN SYSTEM
   ================================================================ */

:root {

    /* Colors */
    --color-deep: #06171b;
    --color-deep-2: #0a2429;
    --color-dark: #102d32;
    --color-dark-soft: #183d42;

    --color-aqua: #39c6c3;
    --color-aqua-dark: #209b99;
    --color-aqua-light: #8ce4df;

    --color-white: #ffffff;
    --color-off-white: #f7f9f8;
    --color-light: #eef4f3;
    --color-light-2: #e2eceb;

    --color-text: #26383b;
    --color-text-light: #607275;
    --color-border: #dce7e6;

    --color-success: #25a56a;
    --color-whatsapp: #25d366;
    --color-error: #d84d4d;


    /* Typography */
    --font-body: "Poppins", sans-serif;
    --font-display: "Montserrat", sans-serif;


    /* Layout */
    --container-width: 1240px;
    --container-padding: 30px;

    --section-padding: 110px;


    /* Effects */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 26px;

    --shadow-soft: 0 15px 45px rgba(6, 23, 27, 0.08);
    --shadow-medium: 0 20px 55px rgba(6, 23, 27, 0.13);

    --transition-fast: 0.25s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.7s ease;
}


/* ================================================================
   02. RESET
   ================================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    display: block;
    width: 100%;
    height: auto;
}


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


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


button {
    border: 0;
    cursor: pointer;
}


ul,
ol {
    list-style: none;
}


address {
    font-style: normal;
}


/* ================================================================
   03. GLOBAL LAYOUT
   ================================================================ */

.container {
    width: min(
        calc(100% - (var(--container-padding) * 2)),
        var(--container-width)
    );

    margin-inline: auto;
}


.container-fluid {
    width: 100%;
}


.section-padding {
    padding-block: var(--section-padding);
}


.centered {
    text-align: center;
}


/* ================================================================
   04. TYPOGRAPHY
   ================================================================ */

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    letter-spacing: -0.025em;
}


h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
}


h3,
h4 {
    font-weight: 700;
}


p {
    color: var(--color-text-light);
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--color-aqua-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}


.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}


.section-heading.centered {
    margin-inline: auto;
}


.section-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(38px, 4.5vw, 58px);
    color: var(--color-deep);
}


.section-heading h2 span,
.intro-content h2 span,
.setup-feature-content h2 span,
.why-intro h2 span,
.brand-story-content h2 span,
.service-area-content h2 span,
.main-cta-content h2 span,
.contact-info h2 span {
    color: var(--color-aqua-dark);
}


.section-heading p {
    max-width: 650px;
    margin-inline: auto;
    font-size: 17px;
}


/* ================================================================
   05. BUTTONS
   ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 54px;
    padding: 0 28px;

    border: 1px solid transparent;
    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


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


.btn-primary {
    background: var(--color-aqua);
    color: var(--color-deep);
    box-shadow: 0 12px 30px rgba(57, 198, 195, 0.25);
}


.btn-primary:hover {
    background: var(--color-aqua-light);
    box-shadow: 0 16px 35px rgba(57, 198, 195, 0.32);
}


.btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}


.btn-outline:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-deep);
}


.btn-dark {
    background: var(--color-deep);
    color: var(--color-white);
}


.btn-dark:hover {
    background: var(--color-aqua);
    color: var(--color-deep);
}


.btn-light {
    background: var(--color-white);
    color: var(--color-deep);
}


.btn-light:hover {
    background: var(--color-aqua);
}


.btn-outline-light {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
}


.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-deep);
}


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


.btn-whatsapp:hover {
    background: #1fb956;
    color: #ffffff;
}


/* ================================================================
   06. TEXT LINKS
   ================================================================ */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--color-deep);

    font-size: 13px;
    font-weight: 700;

    transition: color var(--transition-fast);
}


.text-link span:last-child {
    font-size: 19px;
    line-height: 1;

    transition: transform var(--transition-fast);
}


.text-link:hover {
    color: var(--color-aqua-dark);
}


.text-link:hover span:last-child {
    transform: translateX(6px);
}


.section-bottom-cta {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}


/* ================================================================
   07. PAGE LOADER
   ================================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    background: var(--color-deep);

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}


.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    color: var(--color-white);
}


.loader-ring {
    width: 46px;
    height: 46px;

    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-aqua);

    border-radius: 50%;

    animation: loaderSpin 1s linear infinite;
}


.loader-text {
    font-family: var(--font-display);
    font-size: 22px;
}


@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ================================================================
   08. HEADER
   ================================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    color: var(--color-white);

    transition:
        background-color var(--transition-medium),
        box-shadow var(--transition-medium),
        color var(--transition-medium);
}


.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    color: var(--color-deep);

    border-bottom-color: var(--color-border);

    box-shadow: 0 8px 30px rgba(6, 23, 27, 0.07);

    backdrop-filter: blur(14px);
}


.header-container {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* Brand */

.brand {
    display: flex;
    flex-direction: column;

    flex-shrink: 0;
}


.brand-name {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
}


.brand-tagline {
    margin-top: 4px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    opacity: 0.72;
}


/* Navigation */

.main-navigation {
    margin-left: auto;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 27px;
}


.nav-item {
    position: relative;
}


.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 0;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;

    opacity: 0.9;

    transition: color var(--transition-fast);
}


.nav-item > a:hover,
.nav-item.active > a {
    color: var(--color-aqua);
}


.site-header.scrolled .nav-item > a:hover,
.site-header.scrolled .nav-item.active > a {
    color: var(--color-aqua-dark);
}


.dropdown-arrow {
    font-size: 14px;
    line-height: 1;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown > a .dropdown-arrow {
    position: relative;
    top: -5px;
}
/* Dropdown */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 235px;

    padding: 12px;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: 14px;

    box-shadow: var(--shadow-medium);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 8px);

    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-fast);
}


.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


.dropdown-menu li a {
    display: block;

    padding: 10px 14px;

    color: var(--color-text);

    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast);
}


.dropdown-menu li a:hover {
    background: var(--color-light);
    color: var(--color-aqua-dark);
}


/* Header CTA */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    padding: 12px 19px;

    background: var(--color-aqua);
    color: var(--color-deep);

    border-radius: 100px;

    font-size: 11px;
    font-weight: 800;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast);
}


.header-cta:hover {
    transform: translateY(-2px);
    background: var(--color-aqua-light);
}


.cta-arrow {
    font-size: 16px;
}


/* Mobile menu toggle */

.mobile-menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background: transparent;

    color: currentColor;
}


.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: currentColor;

    transition:
        transform var(--transition-fast),
        opacity var(--transition-fast);
}


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


.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Mobile navigation */

.mobile-navigation {
    display: none;
}


/* ================================================================
   09. HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-deep);
    color: var(--color-white);
}

/* ------------------------------------------------
   Hero Background
   ------------------------------------------------ */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;

    /*
       Replace this image path with your actual
       aquarium hero image if your existing image
       has a different filename.
    */
    background-image: url("../images/sunlit-planted-aquarium-aquascape-fishes-hub.webp");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    transform: scale(1.02);
}

/* Dark premium overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 23, 27, 0.96) 0%,
            rgba(6, 23, 27, 0.88) 34%,
            rgba(6, 23, 27, 0.55) 62%,
            rgba(6, 23, 27, 0.28) 100%
        );

    z-index: 1;
}

/* Additional subtle bottom fade */

.hero-overlay::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;

    background: linear-gradient(
        to top,
        rgba(6, 23, 27, 0.55),
        transparent
    );
}

/* ------------------------------------------------
   Hero Container
   ------------------------------------------------ */

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 80px;
}

/* ------------------------------------------------
   Hero Content
   ------------------------------------------------ */

.hero-content {
    width: min(760px, 100%);
    max-width: 900px;
}

/* ------------------------------------------------
   Eyebrow
   ------------------------------------------------ */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;

    color: var(--color-aqua-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.eyebrow-line {
    width: 28px;
    height: 1px;
    flex-shrink: 0;
    background: var(--color-aqua);
}

/* ------------------------------------------------
   Hero Title
   ------------------------------------------------ */

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 28px;
    max-width: 900px;
    font-size: clamp(48px, 5.2vw, 76px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.hero-title span {
    color: var(--color-aqua-light);
}

/* ------------------------------------------------
   Hero Description
   ------------------------------------------------ */

.hero-description {
    max-width: 700px;
    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.9;
}

/* ------------------------------------------------
   Hero Buttons
   ------------------------------------------------ */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-actions .btn {
    min-height: 54px;
}

/* Primary button */

.hero-actions .btn-primary {
    background: var(--color-aqua);
    color: var(--color-deep);
}

.hero-actions .btn-primary:hover {
    background: var(--color-aqua-light);
    color: var(--color-deep);
    transform: translateY(-2px);
}

/* Secondary button */

.hero-actions .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-white);
    backdrop-filter: blur(8px);
}

.hero-actions .btn-secondary:hover {
    border-color: var(--color-aqua);
    background: rgba(57, 198, 195, 0.12);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-arrow {
    margin-left: 7px;
    font-size: 16px;
}

/* ------------------------------------------------
   Hero Trust Line
   ------------------------------------------------ */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;

    background: var(--color-aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(57, 198, 195, 0.10);
}

/* ------------------------------------------------
   Hero Scroll Indicator
   ------------------------------------------------ */

.hero-scroll {
    position: absolute;
    right: 38px;
    bottom: 34px;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero-scroll:hover {
    color: var(--color-aqua-light);
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(
        to bottom,
        var(--color-aqua),
        rgba(57, 198, 195, 0)
    );
}

/* ------------------------------------------------
   Hero Responsive
   ------------------------------------------------ */

@media (max-width: 1100px) {

    .hero-content {
        width: min(680px, 100%);
    }

    .hero-title {
        font-size: clamp(52px, 7vw, 72px);
    }

    .hero-background {
        background-position: 60% center;
    }

}

@media (max-width: 900px) {

    .hero {
        min-height: 720px;
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 90px;
    }

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

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 23, 27, 0.94) 0%,
                rgba(6, 23, 27, 0.76) 55%,
                rgba(6, 23, 27, 0.48) 100%
            );
    }

    .hero-scroll {
        display: none;
    }

}

@media (max-width: 600px) {

    .hero {
        min-height: 680px;
    }

    .hero-container {
        padding-top: 105px;
        padding-bottom: 70px;
    }

    .hero-eyebrow {
        margin-bottom: 22px;
        font-size: 9px;
        letter-spacing: 0.13em;
    }

    .eyebrow-line {
        width: 22px;
    }

    .hero-title {
        font-size: clamp(43px, 12vw, 58px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .hero-description {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

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

    .hero-trust {
        align-items: flex-start;
        margin-top: 22px;
        font-size: 10px;
        line-height: 1.5;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 23, 27, 0.94) 0%,
                rgba(6, 23, 27, 0.82) 100%
            );
    }

}


/* ================================================================
   10. INTRODUCTION
   ================================================================ */

.introduction-section {
    background: var(--color-white);
}


.intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}


.intro-image-wrapper {
    position: relative;

    padding-right: 45px;
}


.intro-image-main {
    overflow: hidden;

    border-radius: var(--radius-large);
}


.intro-image-main img {
    aspect-ratio: 0.84;
    object-fit: cover;

    transition: transform var(--transition-slow);
}


.intro-image-wrapper:hover img {
    transform: scale(1.035);
}


.intro-image-badge {
    position: absolute;
    right: 0;
    bottom: 55px;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--color-aqua);

    border-radius: 50%;

    color: var(--color-deep);

    box-shadow: 0 15px 35px rgba(6, 23, 27, 0.15);
}


.intro-image-badge strong {
    font-family: var(--font-display);
    font-size: 22px;
}


.intro-image-badge span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.intro-content h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 4.2vw, 57px);

    color: var(--color-deep);
}


.intro-content p {
    max-width: 640px;

    margin-bottom: 17px;
}


.intro-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin: 35px 0;
}


.intro-feature {
    display: flex;
    flex-direction: column;

    gap: 8px;

    padding-top: 17px;

    border-top: 1px solid var(--color-border);

    color: var(--color-deep);

    font-size: 12px;
    font-weight: 700;
}


.feature-number {
    color: var(--color-aqua-dark);

    font-size: 10px;
    letter-spacing: 0.1em;
}


/* ================================================================
   11. PRODUCTS
   ================================================================ */

.products-section {
    background: var(--color-off-white);
}


.product-category-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.product-category-card {
    position: relative;

    display: block;

    overflow: hidden;

    background: var(--color-white);

    border-radius: var(--radius-medium);

    box-shadow: 0 7px 25px rgba(6, 23, 27, 0.05);

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);
}


.product-category-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-medium);
}


.category-image {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1.32;
}


.category-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 55%,
        rgba(6, 23, 27, 0.2)
    );
}


.category-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.product-category-card:hover .category-image img {
    transform: scale(1.06);
}


.category-content {
    position: relative;

    padding: 26px 27px 29px;
}


.category-number {
    display: block;

    margin-bottom: 7px;

    color: var(--color-aqua-dark);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}


.category-content h3 {
    margin-bottom: 9px;

    color: var(--color-deep);

    font-family: var(--font-display);
    font-size: 25px;
}


.category-content p {
    max-width: 300px;

    font-size: 13px;
    line-height: 1.65;
}


.card-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;

    display: grid;
    place-items: center;

    width: 39px;
    height: 39px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-deep);

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


.product-category-card:hover .card-arrow {
    background: var(--color-aqua);
    border-color: var(--color-aqua);

    transform: translateX(4px);
}


/* ================================================================
   12. AQUARIUM SETUP FEATURE
   ================================================================ */

.setup-feature-section {
    background: var(--color-deep);
    color: var(--color-white);
}


.setup-feature-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 700px;
}


.setup-feature-image {
    overflow: hidden;
}


.setup-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.setup-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px clamp(45px, 7vw, 110px);
}


.setup-feature-content .section-eyebrow {
    color: var(--color-aqua-light);
}


.setup-feature-content h2 {
    margin-bottom: 25px;

    font-size: clamp(40px, 4.2vw, 59px);

    color: var(--color-white);
}


.setup-feature-content h2 span {
    display: block;
}


.setup-feature-content p {
    max-width: 620px;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.7);
}


.check-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 25px;

    margin: 23px 0 35px;
}


.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 12px;
    font-weight: 600;
}


.check-list li span {
    display: grid;
    place-items: center;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: rgba(57, 198, 195, 0.15);
    color: var(--color-aqua-light);

    font-size: 11px;
}


.setup-feature-content .btn {
    align-self: flex-start;
}


/* ================================================================
   13. SERVICES
   ================================================================ */

.services-section {
    background: var(--color-white);
}


.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.service-card {
    position: relative;

    min-height: 310px;

    padding: 34px;

    background: var(--color-off-white);

    border: 1px solid transparent;
    border-radius: var(--radius-medium);

    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}


.service-card:hover {
    transform: translateY(-7px);

    background: var(--color-white);

    border-color: var(--color-border);

    box-shadow: var(--shadow-soft);
}


.service-number {
    position: absolute;
    top: 28px;
    right: 30px;

    color: var(--color-light-2);

    font-size: 36px;
    font-weight: 700;
}


.service-icon {
    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    margin-bottom: 27px;

    background: rgba(57, 198, 195, 0.12);

    border-radius: 50%;

    color: var(--color-aqua-dark);

    font-size: 22px;
}


.service-card h3 {
    margin-bottom: 12px;

    color: var(--color-deep);

    font-family: var(--font-display);
    font-size: 25px;
}


.service-card p {
    margin-bottom: 20px;

    font-size: 13px;
}


.service-card a {
    color: var(--color-aqua-dark);

    font-size: 11px;
    font-weight: 800;
}


.service-card a:hover {
    color: var(--color-deep);
}


/* ================================================================
   14. WHY CHOOSE US
   ================================================================ */

.why-section {
    background: var(--color-off-white);
}


.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.why-intro {
    grid-column: span 2;

    padding-right: 50px;
}


.why-intro h2 {
    margin-bottom: 20px;

    color: var(--color-deep);

    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 55px);
}


.why-intro p {
    max-width: 500px;
}


.why-card {
    padding: 35px 30px;

    background: var(--color-white);

    border-radius: var(--radius-medium);

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);
}


.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}


.why-card-number {
    display: block;

    margin-bottom: 35px;

    color: var(--color-aqua-dark);

    font-size: 11px;
    font-weight: 800;
}


.why-card h3 {
    margin-bottom: 12px;

    color: var(--color-deep);

    font-family: var(--font-display);
    font-size: 23px;
}


.why-card p {
    font-size: 13px;
}


/* ================================================================
   15. BRAND STORY
   ================================================================ */

.brand-story-section {
    background: var(--color-white);
}


.brand-story-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: clamp(60px, 9vw, 130px);
}


.brand-story-content h2 {
    margin-bottom: 25px;

    color: var(--color-deep);

    font-size: clamp(40px, 4.3vw, 59px);
}


.brand-story-content h2 span {
    display: block;
}


.brand-story-content p {
    max-width: 620px;

    margin-bottom: 17px;
}


.brand-story-content .text-link {
    margin-top: 16px;
}


.brand-story-image {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-large);
}


.brand-story-image img {
    aspect-ratio: 0.9;

    object-fit: cover;

    transition: transform var(--transition-slow);
}


.brand-story-image:hover img {
    transform: scale(1.035);
}


.story-image-caption {
    position: absolute;

    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;

    padding: 17px 22px;

    background: rgba(6, 23, 27, 0.76);

    backdrop-filter: blur(10px);

    border-left: 2px solid var(--color-aqua);

    color: var(--color-white);
}


.story-image-caption span {
    font-size: 9px;
    letter-spacing: 0.2em;
}


.story-image-caption strong {
    font-family: var(--font-display);
    font-size: 22px;
}


/* ================================================================
   16. GALLERY
   ================================================================ */

   body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-section {
    background: var(--color-off-white);
}


/* ============================================================
   GALLERY GRID
   ============================================================ */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    grid-auto-rows: 270px;

    gap: 16px;

    width: 100%;
}


/* ============================================================
   GALLERY ITEM
   ============================================================ */

.gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    padding: 0;
    margin: 0;

    overflow: hidden;

    border: 0;
    border-radius: var(--radius-medium);

    background: transparent;

    cursor: zoom-in;

    text-align: left;

    appearance: none;
    -webkit-appearance: none;

    box-shadow: none;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);
}


/* Large Gallery Item */

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}


/* Wide Gallery Item */

.gallery-item-wide {
    grid-column: span 2;
}


/* Extra Wide Gallery Item */

.gallery-item-extra-wide {
    grid-column: span 3;
}

/* Hover */

.gallery-item:hover {
    transform: translateY(-2px);

    box-shadow: var(--shadow-soft);
}


/* Keyboard Accessibility */

.gallery-item:focus-visible {
    outline: 2px solid var(--color-aqua);

    outline-offset: 4px;
}


/* ============================================================
   GALLERY IMAGE
   ============================================================ */

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    object-fit: cover;

    object-position: center;

    border: 0;

    transition:
        transform 0.7s ease;
}


/* Image Zoom */

.gallery-item:hover img {
    transform: scale(1.07);
}


/* ============================================================
   IMAGE DARK OVERLAY
   ============================================================ */

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(6, 23, 27, 0.78) 0%,
            rgba(6, 23, 27, 0.25) 38%,
            transparent 68%
        );

    opacity: 0.85;

    pointer-events: none;

    transition:
        opacity var(--transition-medium);
}


.gallery-item:hover::after {
    opacity: 1;
}


/* ============================================================
   GALLERY TITLE
   ============================================================ */

.gallery-overlay {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 2;

    display: block;

    color: var(--color-white);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.04em;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3);

    transform: translateY(6px);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity var(--transition-medium),
        transform var(--transition-medium);
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;

    transform: translateY(0);
}


/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* ============================================================
   LIGHTBOX BACKDROP
   ============================================================ */

.gallery-lightbox-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(3, 15, 18, 0.94);

    backdrop-filter: blur(12px);
}


/* ============================================================
   LIGHTBOX INNER
   ============================================================ */

.gallery-lightbox-inner {
    position: relative;

    z-index: 2;

    width: min(1100px, 100%);

    max-height: calc(100vh - 70px);

    display: flex;

    align-items: center;
    justify-content: center;

    transform: scale(0.94);

    transition:
        transform 0.35s ease;
}


.gallery-lightbox.active .gallery-lightbox-inner {
    transform: scale(1);
}


/* ============================================================
   LIGHTBOX CONTENT
   ============================================================ */

.gallery-lightbox-content {
    position: relative;

    max-width: 100%;

    max-height: calc(100vh - 100px);

    display: flex;

    flex-direction: column;

    align-items: center;
}


.gallery-lightbox-content img {
    display: block;

    width: auto;

    max-width: min(100%, 1000px);

    max-height: calc(100vh - 170px);

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.45);
}


/* ============================================================
   LIGHTBOX CAPTION
   ============================================================ */

.gallery-lightbox-caption {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 18px;

    color: var(--color-white);

    text-align: center;
}


.gallery-lightbox-caption span {
    color: var(--color-aqua-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.gallery-lightbox-caption strong {
    color: var(--color-white);

    font-family: var(--font-display);

    font-size: 18px;

    font-weight: 600;
}


/* ============================================================
   LIGHTBOX CLOSE BUTTON
   ============================================================ */

.gallery-lightbox-close {
    position: fixed;

    top: 25px;
    right: 30px;

    z-index: 5;

    display: grid;

    place-items: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--color-white);

    font-size: 30px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


.gallery-lightbox-close:hover {
    background: var(--color-aqua);

    border-color: var(--color-aqua);

    color: var(--color-deep);

    transform: rotate(90deg);
}


/* ============================================================
   LIGHTBOX NAVIGATION
   ============================================================ */

.gallery-lightbox-nav {
    position: fixed;

    top: 50%;

    z-index: 5;

    display: grid;

    place-items: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--color-white);

    font-size: 20px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


.gallery-lightbox-prev {
    left: 25px;
}


.gallery-lightbox-next {
    right: 25px;
}


.gallery-lightbox-nav:hover {
    background: var(--color-aqua);

    border-color: var(--color-aqua);

    color: var(--color-deep);
}


.gallery-lightbox-prev:hover {
    transform: translate(-3px, -50%);
}


.gallery-lightbox-next:hover {
    transform: translate(3px, -50%);
}


/* ============================================================
   MOBILE GALLERY
   ============================================================ */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        grid-auto-rows: 260px;

        gap: 14px;
    }


    .gallery-item-large {
        grid-column: span 2;

        grid-row: span 2;
    }


    .gallery-item-wide, .gallery-item-extra-wide {
        grid-column: span 2;
    }
}


/* ============================================================
   MOBILE LIGHTBOX
   ============================================================ */

@media (max-width: 700px) {

    .gallery-lightbox {
        padding: 20px;
    }


    .gallery-lightbox-inner {
        width: 100%;

        max-height: calc(100vh - 40px);
    }


    .gallery-lightbox-content {
        width: 100%;

        max-height: calc(100vh - 90px);
    }


    .gallery-lightbox-content img {
        max-width: 100%;

        max-height: calc(100vh - 150px);

        border-radius: 8px;
    }


    .gallery-lightbox-caption {
        flex-direction: column;

        gap: 5px;

        margin-top: 12px;
    }


    .gallery-lightbox-caption strong {
        font-size: 16px;
    }


    .gallery-lightbox-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 26px;
    }


    .gallery-lightbox-nav {
        position: absolute;

        top: auto;
        bottom: 8px;

        width: 44px;
        height: 44px;

        transform: none;
    }


    .gallery-lightbox-prev {
        left: 15px;
    }


    .gallery-lightbox-next {
        right: 15px;
    }


    .gallery-lightbox-prev:hover,
    .gallery-lightbox-next:hover {
        transform: none;
    }

}


/* ============================================================
   SMALL MOBILE GALLERY
   ============================================================ */

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 12px;
    }


    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;

        grid-row: span 1;
    }

    .gallery-item-extra-wide {
        grid-column: auto;
    }


    .gallery-overlay {
        left: 17px;
        right: 17px;
        bottom: 16px;

        font-size: 11px;

        opacity: 1;

        transform: none;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .gallery-item img,
    .gallery-item,
    .gallery-overlay,
    .gallery-lightbox,
    .gallery-lightbox-inner,
    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        transition: none;
    }

}


/* ================================================================
   17. BLOG
   ================================================================ */

.blog-section {
    background: var(--color-white);
}


.blog-heading {
    max-width: none;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.blog-heading h2 {
    max-width: 720px;
}


.blog-heading .text-link {
    margin-bottom: 8px;
}


.blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.blog-card {
    overflow: hidden;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-medium);

    background: var(--color-white);

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);
}


.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft);
}


.blog-image {
    display: block;

    overflow: hidden;

    aspect-ratio: 1.5;
}


.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.blog-card:hover .blog-image img {
    transform: scale(1.05);
}


.blog-content {
    padding: 26px 27px 30px;
}


.blog-category {
    display: block;

    margin-bottom: 12px;

    color: var(--color-aqua-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}


.blog-content h3 {
    margin-bottom: 12px;

    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.25;
}


.blog-content h3 a:hover {
    color: var(--color-aqua-dark);
}


.blog-content p {
    margin-bottom: 20px;

    font-size: 13px;
}


.blog-read-more {
    color: var(--color-deep);

    font-size: 11px;
    font-weight: 800;
}


.blog-read-more:hover {
    color: var(--color-aqua-dark);
}


.mobile-blog-cta {
    display: none;
}


/* ================================================================
   18. SERVICE AREA
   ================================================================ */

.service-area-section {
    background: var(--color-deep);
    color: var(--color-white);
}


.service-area-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.service-area-content .section-eyebrow {
    color: var(--color-aqua-light);
}


.service-area-content h2 {
    margin-bottom: 23px;

    color: var(--color-white);

    font-size: clamp(40px, 4.2vw, 58px);
}


.service-area-content p {
    max-width: 620px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.68);
}


.service-area-content .text-link {
    color: var(--color-white);
}


.service-area-content .text-link:hover {
    color: var(--color-aqua-light);
}


.service-locations {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.location-item {
    display: grid;

    grid-template-columns: 32px 1fr;

    column-gap: 13px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}


.location-item:hover {
    background: rgba(57, 198, 195, 0.08);
    border-color: rgba(57, 198, 195, 0.25);
}


.location-marker {
    grid-row: span 2;

    color: var(--color-aqua);

    font-size: 9px;
    font-weight: 800;
}


.location-item strong {
    color: var(--color-white);

    font-family: var(--font-display);
    font-size: 20px;
}


.location-item > span:last-child {
    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ================================================================
   19. MAIN CTA
   ================================================================ */

.main-cta-section {
    position: relative;

    min-height: 620px;

    display: grid;
    place-items: center;

    overflow: hidden;

    color: var(--color-white);
}


.main-cta-background,
.main-cta-overlay {
    position: absolute;
    inset: 0;
}


.main-cta-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.main-cta-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 15, 18, 0.86),
            rgba(3, 15, 18, 0.58)
        );
}


.main-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin-inline: auto;

    text-align: center;
}


.main-cta-content .section-eyebrow {
    color: var(--color-aqua-light);
}


.main-cta-content h2 {
    margin-bottom: 20px;

    color: var(--color-white);

    font-size: clamp(44px, 5vw, 70px);
}


.main-cta-content h2 span {
    display: block;
}


.main-cta-content p {
    max-width: 630px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 17px;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* ================================================================
   20. CONTACT
   ================================================================ */

.contact-preview-section {
    background: var(--color-off-white);
}


.contact-preview-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: clamp(60px, 8vw, 120px);

    align-items: start;
}


.contact-info h2 {
    margin-bottom: 23px;

    color: var(--color-deep);

    font-size: clamp(40px, 4.2vw, 58px);
}


.contact-info > p {
    max-width: 560px;

    margin-bottom: 35px;
}


.contact-details {
    display: grid;

    gap: 22px;
}


.contact-detail {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}


.contact-detail-icon {
    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    background: var(--color-white);

    border-radius: 50%;

    color: var(--color-aqua-dark);

    box-shadow: 0 5px 20px rgba(6, 23, 27, 0.05);

    font-size: 15px;
}


.contact-label {
    display: block;

    margin-bottom: 3px;

    color: var(--color-text-light);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
}


.contact-detail a,
.contact-detail > div > span:last-child {
    display: block;

    color: var(--color-deep);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.6;
}


.contact-detail a:hover {
    color: var(--color-aqua-dark);
}


/* Contact form */

.contact-form-wrapper {
    padding: 42px;

    background: var(--color-white);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);
}


.form-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--color-aqua-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}


.form-header h3 {
    margin-bottom: 7px;

    color: var(--color-deep);

    font-family: var(--font-display);
    font-size: 32px;
}


.form-header p {
    margin-bottom: 28px;

    font-size: 13px;
}


.contact-form {
    display: grid;

    gap: 18px;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


.form-group {
    position: relative;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--color-deep);

    font-size: 11px;
    font-weight: 700;
}


.form-group label span {
    color: var(--color-error);
}


.form-group input,
.form-group textarea,
.form-group select {
    display: block;

    width: 100%;

    padding: 14px 16px;

    background: var(--color-off-white);

    border: 1px solid var(--color-border);
    border-radius: 9px;

    outline: none;

    color: var(--color-deep);

    font-size: 13px;

    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


.form-group textarea {
    min-height: 130px;

    resize: vertical;
}


.form-group select {
    cursor: pointer;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: var(--color-white);

    border-color: var(--color-aqua);

    box-shadow: 0 0 0 3px rgba(57, 198, 195, 0.1);
}


.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: var(--color-error);
}


.form-error {
    display: block;

    margin-top: 5px;

    color: var(--color-error);

    font-size: 10px;
}


.form-submit {
    width: 100%;

    margin-top: 2px;
}


.submit-loading {
    display: none;
}


.form-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


.form-status {
    min-height: 20px;

    font-size: 12px;
    font-weight: 600;
}


.form-status.success {
    color: var(--color-success);
}


.form-status.error {
    color: var(--color-error);
}


/* ================================================================
   21. FOOTER
   ================================================================ */

.site-footer {
    padding-top: 75px;

    background: #041316;

    color: var(--color-white);
}


.footer-main {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 60px;
}


.footer-brand {
    max-width: 360px;
}


.footer-logo {
    display: block;

    margin-bottom: 3px;

    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.footer-tagline {
    display: block;

    margin-bottom: 20px;

    color: var(--color-aqua-light);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
}


.footer-column h3 {
    margin-bottom: 21px;

    color: var(--color-white);

    font-size: 12px;
    letter-spacing: 0.04em;
}


.footer-column ul {
    display: grid;

    gap: 10px;
}


.footer-column li a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;

    transition: color var(--transition-fast);
}


.footer-column li a:hover {
    color: var(--color-aqua-light);
}


.footer-contact address {
    display: grid;

    gap: 14px;
}


.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}


.footer-contact a:hover {
    color: var(--color-aqua-light);
}


.footer-contact-icon {
    flex-shrink: 0;

    color: var(--color-aqua);
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 23px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}


.footer-legal {
    display: flex;
    gap: 12px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}


.footer-legal a:hover {
    color: var(--color-aqua-light);
}


/* ================================================================
   22. FLOATING CONTACT BUTTONS
   ================================================================ */

.floating-contact {
    position: fixed;

    right: 20px;
    bottom: 22px;

    z-index: 900;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.floating-contact a {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    color: var(--color-white);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}


.floating-contact a:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


.floating-whatsapp {
    background: var(--color-whatsapp);
}


.floating-call {
    background: var(--color-deep);
}


.floating-whatsapp span {
    font-size: 11px;
    font-weight: 800;
}


.floating-call span {
    font-size: 18px;
}


/* ================================================================
   23. BACK TO TOP
   ================================================================ */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 890;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: var(--color-aqua);

    border-radius: 50%;

    color: var(--color-deep);

    font-size: 17px;
    font-weight: 700;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-fast);
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ================================================================
   24. SCROLL REVEAL ANIMATION
   ================================================================ */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}


.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* ================================================================
   25. TABLET
   ================================================================ */

@media (max-width: 1100px) {

    :root {
        --container-padding: 24px;
        --section-padding: 90px;
    }


    .nav-list {
        gap: 18px;
    }


    .header-container {
        gap: 20px;
    }


    .header-cta {
        padding-inline: 15px;
    }


    .product-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }


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


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


    .why-intro {
        grid-column: span 2;
        padding-right: 0;
    }


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


    .footer-brand {
        max-width: 100%;
    }

}


/* ================================================================
   26. SMALL TABLET / LARGE MOBILE
   ================================================================ */

@media (max-width: 900px) {

    .main-navigation,
    .header-cta {
        display: none;
    }


    .mobile-menu-toggle {
        display: flex;
    }


    .mobile-navigation {
        position: fixed;

        top: 88px;
        left: 0;

        width: 100%;

        display: block;

        padding: 20px var(--container-padding) 30px;

        background: var(--color-deep);

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(-120%);

        opacity: 0;
        visibility: hidden;

        transition:
            transform var(--transition-medium),
            opacity var(--transition-medium),
            visibility var(--transition-medium);

        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    }


    .site-header.scrolled .mobile-navigation {
        background: var(--color-white);
    }


    .mobile-navigation.active {
        transform: translateY(0);

        opacity: 1;
        visibility: visible;
    }


    .mobile-navigation ul {
        display: grid;
        gap: 2px;
    }


    .mobile-navigation li a {
        display: block;

        padding: 13px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        color: var(--color-white);

        font-size: 14px;
        font-weight: 600;
    }


    .site-header.scrolled .mobile-navigation li a {
        color: var(--color-deep);

        border-bottom-color: var(--color-border);
    }


    .mobile-navigation li a:hover {
        color: var(--color-aqua);
    }


    .mobile-nav-cta {
        display: flex;

        justify-content: center;

        margin-top: 20px;
        padding: 13px 20px;

        background: var(--color-aqua);

        border-radius: 100px;

        color: var(--color-deep);

        font-size: 12px;
        font-weight: 800;
    }


    .intro-grid,
    .brand-story-grid,
    .contact-preview-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .intro-image-wrapper {
        max-width: 650px;
    }


    .brand-story-image {
        max-width: 650px;
    }


    .setup-feature-grid {
        grid-template-columns: 1fr;
    }


    .setup-feature-image {
        min-height: 550px;
    }


    .setup-feature-content {
        padding-block: 80px;
    }


    .service-area-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        grid-auto-rows: 260px;
    }


    .gallery-item-large {
        grid-column: span 2;
    }


    .gallery-item-wide {
        grid-column: span 2;
    }

}


/* ================================================================
   27. MOBILE
   ================================================================ */

@media (max-width: 600px) {

    :root {
        --container-padding: 18px;
        --section-padding: 70px;
    }


    body {
        font-size: 15px;
    }


    .header-container {
        min-height: 76px;
    }


    .brand-name {
        font-size: 18px;
    }


    .brand-tagline {
        font-size: 7px;
    }


    .mobile-navigation {
        top: 76px;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2 {
        font-size: 37px;
    }


    .section-heading p {
        font-size: 14px;
    }


    /* Hero */

    .hero-section {
        min-height: 760px;

        align-items: flex-end;
    }


    .hero-container {
        padding-bottom: 90px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(3, 15, 18, 0.93) 5%,
                rgba(3, 15, 18, 0.68) 52%,
                rgba(3, 15, 18, 0.3) 100%
            );
    }


    .hero-content h1 {
        font-size: 47px;
    }


    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-location {
        align-items: flex-start;

        font-size: 10px;
    }


    .hero-scroll {
        display: none;
    }


    /* Introduction */

    .intro-image-wrapper {
        padding-right: 25px;
    }


    .intro-image-badge {
        width: 90px;
        height: 90px;

        bottom: 35px;
    }


    .intro-image-badge strong {
        font-size: 18px;
    }


    .intro-content h2 {
        font-size: 38px;
    }


    .intro-features {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    /* Products */

    .product-category-grid {
        grid-template-columns: 1fr;
    }


    .category-image {
        aspect-ratio: 1.4;
    }


    /* Setup */

    .setup-feature-image {
        min-height: 400px;
    }


    .setup-feature-content {
        padding: 65px 18px;
    }


    .setup-feature-content h2 {
        font-size: 39px;
    }


    .check-list {
        grid-template-columns: 1fr;
    }


    /* Services */

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


    .service-card {
        min-height: auto;

        padding: 29px;
    }


    /* Why */

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


    .why-intro {
        grid-column: auto;
    }


    .why-intro h2 {
        font-size: 38px;
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 250px;
    }


    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
    }


    /* Blog */

    .blog-heading {
        display: block;
    }


    .desktop-only {
        display: none;
    }


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


    .mobile-blog-cta {
        display: flex;
    }


    /* Service area */

    .service-locations {
        grid-template-columns: 1fr;
    }


    .service-area-content h2 {
        font-size: 39px;
    }


    /* CTA */

    .main-cta-section {
        min-height: 650px;
    }


    .main-cta-content h2 {
        font-size: 43px;
    }


    .main-cta-content p {
        font-size: 14px;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-buttons .btn {
        width: 100%;
    }


    /* Contact */

    .contact-info h2 {
        font-size: 39px;
    }


    .contact-form-wrapper {
        padding: 27px 20px;
    }


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


    /* Footer */

    .site-footer {
        padding-top: 60px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 45px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* Floating buttons */

    .floating-contact {
        right: 14px;
        bottom: 15px;
    }


    .floating-contact a {
        width: 46px;
        height: 46px;
    }


    .back-to-top {
        right: 14px;
        bottom: 125px;

        width: 40px;
        height: 40px;
    }

}


/* ================================================================
   28. VERY SMALL MOBILE
   ================================================================ */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 41px;
    }


    .section-heading h2,
    .intro-content h2,
    .why-intro h2,
    .brand-story-content h2,
    .service-area-content h2,
    .contact-info h2 {
        font-size: 34px;
    }


    .setup-feature-content h2,
    .main-cta-content h2 {
        font-size: 36px;
    }


    .contact-form-wrapper {
        padding: 23px 16px;
    }

}


/* ================================================================
   29. ACCESSIBILITY / REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }


    /* Keep the page loader visibly animated even when reduced motion is enabled. */
    .loader-ring {
        animation: loaderSpin 1s linear infinite !important;
    }


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

}