/* ============================================
   Jet Clean and Ponds — Premium Styles
   Typography: Outfit (Google Fonts)
   ============================================ */

:root {
    --color-deep: #0a2540;
    --color-navy: #0f3556;
    --color-teal: #126e82;
    --color-aqua: #1ea3b5;
    --color-mist: #d6eef2;
    --color-cream: #f5f9fa;
    --color-charcoal: #1a1f2c;
    --color-slate: #4a5568;
    --color-muted: #7a8597;
    --color-line: #e4ecef;
    --color-white: #ffffff;
    --color-gold: #c8a96a;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 12px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 12px 40px rgba(10, 37, 64, 0.10);
    --shadow-lg: 0 24px 70px rgba(10, 37, 64, 0.18);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-deep);
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

p {
    color: var(--color-slate);
    font-size: 1.05rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--color-teal);
}

.lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--color-slate);
    font-weight: 400;
    max-width: 620px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    border-radius: 999px;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-deep);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.18);
}

.btn-primary:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(18, 110, 130, 0.30);
}

.btn-ghost {
    background: transparent;
    color: var(--color-deep);
    border: 1px solid rgba(10, 37, 64, 0.18);
}

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

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

.btn-light:hover {
    background: var(--color-mist);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--color-line);
    box-shadow: 0 1px 0 rgba(10, 37, 64, 0.03);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-deep);
    letter-spacing: -0.01em;
}

.logo-img {
    height: 78px;
    width: auto;
    display: block;
    transition: all 0.4s var(--ease);
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.nav.scrolled .logo-img {
    height: 62px;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name .brand-main {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-deep);
    letter-spacing: -0.02em;
}

.logo-name .brand-sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-teal);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 6px;
}

.footer-brand .logo {
    align-items: center;
}

.footer-brand .logo-img {
    height: 100px;
    background: var(--color-white);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.footer-brand .logo-name .brand-main {
    color: var(--color-white);
    font-size: 1.4rem;
}

.footer-brand .logo-name .brand-sub {
    color: var(--color-aqua);
}

@media (max-width: 768px) {
    .logo-img { height: 60px; }
    .nav.scrolled .logo-img { height: 52px; }
    .logo-name .brand-main { font-size: 1.05rem; }
    .logo-name .brand-sub { font-size: 0.62rem; letter-spacing: 0.12em; margin-top: 4px; }
    .footer-brand .logo-img { height: 84px; }
}

@media (max-width: 480px) {
    .logo-name .brand-sub { display: none; }
    .logo-name .brand-main { font-size: 0.98rem; }
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 6px 18px rgba(18, 110, 130, 0.30);
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text small {
    font-size: 0.66rem;
    font-weight: 400;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-charcoal);
    position: relative;
    transition: color 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-teal);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-teal);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-deep);
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    color: var(--color-teal);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--color-cream);
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--color-deep);
    position: relative;
    transition: all 0.3s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.5px;
    background: var(--color-deep);
    transition: all 0.3s var(--ease);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    padding: 180px 0 100px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(30, 163, 181, 0.10), transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(18, 110, 130, 0.08), transparent 50%),
        var(--color-cream);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero h1 {
    margin-bottom: 28px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: inline-block;
    padding: 0.05em 0.04em 0.14em;
    line-height: 1.05;
}

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

.hero-meta {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--color-line);
    flex-wrap: wrap;
}

.hero-meta-item .num {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-deep);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-meta-item .label {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(30, 163, 181, 0.4), transparent 55%);
}

.hero-visual-content {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-white);
}

.hero-visual-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-visual-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6dffb8;
    box-shadow: 0 0 12px #6dffb8;
}

.hero-visual-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-icon svg {
    width: 24px;
    height: 24px;
}

.hero-visual-bottom h3 {
    color: var(--color-white);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-visual-bottom p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 320px;
}

.hero-visual-meta {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-visual-meta div {
    flex: 1;
}

.hero-visual-meta .k {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-visual-meta .v {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-top: 4px;
    font-weight: 500;
}

.hero-floating {
    position: absolute;
    background: var(--color-white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-1 {
    top: 18%;
    left: -34px;
    z-index: 5;
}

.hero-floating-2 {
    bottom: -22px;
    right: -24px;
    animation-delay: -3s;
    z-index: 5;
}

.hero-floating .icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-mist);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating .icon svg {
    width: 18px;
    height: 18px;
}

.hero-floating .text {
    line-height: 1.2;
}

.hero-floating .label {
    font-size: 0.7rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-floating .value {
    font-size: 0.95rem;
    color: var(--color-deep);
    font-weight: 500;
    margin-top: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: 110px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-head .eyebrow {
    justify-content: center;
}

.section-head .eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--color-teal);
}

.section-head h2 {
    margin-bottom: 18px;
}

/* ============================================
   Services Section
   ============================================ */

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

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

.service-card {
    position: relative;
    padding: 38px 34px;
    border-radius: var(--radius-lg);
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--color-white);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s var(--ease);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.06);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
    color: var(--color-deep);
    transition: color 0.5s var(--ease);
}

.service-card p {
    color: var(--color-slate);
    margin-bottom: 26px;
    transition: color 0.5s var(--ease);
    font-size: 0.98rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-deep);
    transition: color 0.5s var(--ease);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ============================================
   About / Feature Section
   ============================================ */

.feature {
    background: var(--color-cream);
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.feature-visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--color-teal), var(--color-navy) 70%, var(--color-deep));
}

.feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(30, 163, 181, 0.5), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.feature-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-ring {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    animation: ripple 4s linear infinite;
}

.water-ring:nth-child(1) {
    width: 50%;
    height: 50%;
    animation-delay: 0s;
}

.water-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-delay: 1.3s;
}

.water-ring:nth-child(3) {
    width: 90%;
    height: 90%;
    animation-delay: 2.6s;
}

@keyframes ripple {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.feature-visual-center {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    text-align: center;
    padding: 30px;
}

.feature-visual-center svg {
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
    opacity: 0.95;
}

.feature-visual-center .big {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.feature-visual-center .sm {
    font-size: 0.9rem;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-points {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-point .check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--color-white);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(18, 110, 130, 0.12);
}

.feature-point .check svg {
    width: 16px;
    height: 16px;
}

.feature-point .text h4 {
    font-size: 1.08rem;
    margin-bottom: 4px;
    color: var(--color-deep);
    font-weight: 500;
}

.feature-point .text p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Process Section
   ============================================ */

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

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

.process-step {
    text-align: left;
    position: relative;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    transition: all 0.4s var(--ease);
}

.process-step:hover {
    background: var(--color-white);
    border-color: var(--color-aqua);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-num {
    font-size: 0.78rem;
    color: var(--color-teal);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   CTA Strip
   ============================================ */

.cta-strip {
    padding: 80px 0;
    background: var(--color-deep);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(30, 163, 181, 0.35), transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(18, 110, 130, 0.3), transparent 50%);
    pointer-events: none;
}

.cta-strip .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-strip h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

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

/* ============================================
   Testimonial / Trust
   ============================================ */

.trust {
    background: var(--color-cream);
}

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

.trust-card {
    padding: 36px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-line);
    transition: all 0.4s var(--ease);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-aqua);
}

.trust-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--color-gold);
}

.trust-stars svg {
    width: 16px;
    height: 16px;
}

.trust-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-charcoal);
    margin-bottom: 22px;
    font-style: italic;
}

.trust-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
}

.trust-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-aqua));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-author .name {
    font-weight: 500;
    color: var(--color-deep);
    font-size: 0.98rem;
}

.trust-author .loc {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-top: 2px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--color-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 36px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-col li svg {
    width: 14px;
    height: 14px;
    color: var(--color-aqua);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   Page Hero (sub pages)
   ============================================ */

.page-hero {
    padding: 170px 0 90px;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(30, 163, 181, 0.10), transparent 60%),
        var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-bg { z-index: 1; }

.page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.12rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: var(--color-teal);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

/* ============================================
   About Page Specific
   ============================================ */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 22px;
}

.story-content p {
    margin-bottom: 20px;
}

.story-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    padding: 50px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(30, 163, 181, 0.4), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.story-visual > * { position: relative; z-index: 1; }

.story-stat {
    text-align: left;
}

.story-stat .big {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff, #b6e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat .label {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 8px;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 26px;
}

.story-value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-value svg {
    width: 22px;
    height: 22px;
    color: #6dffb8;
    flex-shrink: 0;
}

.story-value span {
    font-size: 1.02rem;
    font-weight: 500;
}

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

.value-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-line);
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-aqua);
}

.value-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-mist);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.value-card .icon svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.96rem;
    line-height: 1.65;
}

/* ============================================
   Services Page Specific
   ============================================ */

.service-detail {
    padding: 110px 0;
}

.service-detail:nth-child(odd) {
    background: var(--color-cream);
}

.service-detail:nth-child(even) {
    background: var(--color-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-visual {
    aspect-ratio: 5 / 4;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--color-teal), var(--color-navy));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 40px;
}

.service-detail-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(30, 163, 181, 0.45), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.service-detail-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-detail-visual-content svg {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.service-detail-visual-content h4 {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.service-detail-visual-content span {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-detail-content .eyebrow {
    margin-bottom: 18px;
}

.service-detail-content h2 {
    margin-bottom: 22px;
}

.service-detail-content p {
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-charcoal);
    font-size: 1rem;
}

.feature-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-teal);
    flex-shrink: 0;
}

/* ============================================
   Contact Page
   ============================================ */

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

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-line);
    transition: all 0.3s var(--ease);
}

.contact-method:hover {
    border-color: var(--color-aqua);
    box-shadow: var(--shadow-sm);
}

.contact-method .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--color-mist);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .icon svg {
    width: 20px;
    height: 20px;
}

.contact-method .info .label {
    font-size: 0.78rem;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-method .info .value {
    font-size: 1.05rem;
    color: var(--color-deep);
    font-weight: 500;
}

.contact-method .info .value a {
    color: inherit;
    transition: color 0.3s var(--ease);
}

.contact-method .info .value a:hover {
    color: var(--color-teal);
}

.contact-form {
    background: var(--color-white);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-line);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: var(--color-charcoal);
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-aqua);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(30, 163, 181, 0.12);
}

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

.contact-form .btn {
    width: 100%;
    padding: 18px;
    margin-top: 8px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid,
    .feature-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

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

    .cta-strip .actions {
        justify-content: center;
    }

    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 50px;
        direction: ltr !important;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    section { padding: 80px 0; }

    .container { padding: 0 22px; }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 26px 22px;
        gap: 18px;
        border-bottom: 1px solid var(--color-line);
        box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
    }

    .nav-cta .btn {
        padding: 12px 18px;
        font-size: 0.88rem;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-meta {
        gap: 24px;
        margin-top: 40px;
        padding-top: 26px;
    }

    .hero-meta-item .num { font-size: 1.6rem; }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 0;
    }

    .hero-floating-1 { left: 0; top: 20%; padding: 14px 16px; }
    .hero-floating-2 { right: 0; bottom: 8%; padding: 14px 16px; }
    .hero-floating .icon { width: 32px; height: 32px; }

    .services-grid,
    .trust-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-form {
        padding: 30px 24px;
    }

    .story-visual {
        padding: 32px;
    }

    .story-stat .big {
        font-size: 3rem;
    }

    .feature-visual-center .big {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero { padding: 130px 0 60px; }
    .hero-meta { gap: 20px; }
    .hero-floating { display: none; }
    .page-hero { padding: 140px 0 70px; }
    .section-head { margin-bottom: 44px; }
    .service-card { padding: 30px 26px; }
}

/* ============================================
   Hero Background Image
   ============================================ */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.70;
    filter: saturate(1.05);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(245, 249, 250, 0.55) 0%,
            rgba(245, 249, 250, 0.35) 40%,
            rgba(245, 249, 250, 0.55) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(245, 249, 250, 0.35) 0%, rgba(245, 249, 250, 0.65) 80%);
}

.hero > .container { position: relative; z-index: 1; }

/* ============================================
   Photo Hero Visual (right card)
   ============================================ */

.hero-visual.photo {
    background: var(--color-deep);
}

.hero-visual.photo .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
    filter: saturate(0.92) brightness(0.95);
}

.hero-visual.photo::before {
    background:
        linear-gradient(180deg,
            rgba(10, 37, 64, 0.30) 0%,
            rgba(10, 37, 64, 0.10) 30%,
            rgba(10, 37, 64, 0.55) 55%,
            rgba(10, 37, 64, 0.92) 80%,
            rgba(10, 37, 64, 0.98) 100%);
    z-index: 1;
}

.hero-visual.photo .hero-visual-content {
    z-index: 2;
}

.hero-visual.photo .hero-visual-bottom {
    padding: 22px 24px 4px;
    margin: 0 -12px;
    background: rgba(10, 37, 64, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual.photo .hero-visual-meta {
    border-top-color: rgba(255, 255, 255, 0.22);
    padding-top: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* ============================================
   Image Service Cards
   ============================================ */

.service-card.with-image {
    padding: 0;
    overflow: hidden;
    background: var(--color-white);
}

.service-card.with-image .service-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.service-card.with-image:hover .service-image {
    transform: scale(1.05);
}

.service-card.with-image .service-body {
    padding: 32px 30px 36px;
    position: relative;
    background: var(--color-cream);
    transition: background 0.5s var(--ease);
}

.service-card.with-image:hover .service-body {
    background: transparent;
}

.service-card.with-image::before {
    z-index: 0;
}

.service-card.with-image > * {
    position: relative;
    z-index: 1;
}

.service-card.with-image .service-icon-sm {
    position: absolute;
    top: -28px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--color-white);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(10, 37, 64, 0.14);
    z-index: 2;
    transition: all 0.5s var(--ease);
}

.service-card.with-image:hover .service-icon-sm {
    background: var(--color-aqua);
    color: var(--color-white);
}

.service-card.with-image .service-icon-sm svg {
    width: 26px;
    height: 26px;
}

/* ============================================
   Photo Service Detail Visual
   ============================================ */

.service-detail-visual.photo {
    padding: 0;
    overflow: hidden;
}

.service-detail-visual.photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-detail-visual.photo::before {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.05) 0%, rgba(10, 37, 64, 0.55) 100%);
    z-index: 1;
}

.service-detail-visual.photo .service-detail-visual-content {
    z-index: 2;
    align-self: flex-end;
    width: 100%;
    text-align: left;
}

.service-detail-visual.photo .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-white);
    margin-bottom: 14px;
}

.service-detail-visual.photo h4 {
    color: var(--color-white);
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.service-detail-visual.photo span.sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   Photo Story Visual
   ============================================ */

.story-visual.photo {
    padding: 0;
    overflow: hidden;
}

.story-visual.photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.story-visual.photo::before {
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.10) 0%, rgba(10, 37, 64, 0.78) 100%);
    z-index: 1;
}

.story-visual.photo > * { position: relative; z-index: 2; }

.story-visual.photo {
    padding: 50px;
}

/* ============================================
   Feature Photo Collage
   ============================================ */

.feature-collage {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-xl);
}

.feature-collage .col-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-collage .col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-collage .col-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 60%;
    z-index: 2;
}

.feature-collage .col-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 3;
    border: 6px solid var(--color-cream);
}

.feature-collage .col-badge {
    position: absolute;
    top: 18%;
    right: 0;
    background: var(--color-white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

.feature-collage .col-badge .icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-mist);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-collage .col-badge .icon svg {
    width: 18px;
    height: 18px;
}

.feature-collage .col-badge .label {
    font-size: 0.72rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-collage .col-badge .value {
    font-size: 0.95rem;
    color: var(--color-deep);
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery {
    background: var(--color-cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-deep);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.55));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

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

.gallery-item .tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-deep);
    letter-spacing: 0.02em;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.4s var(--ease);
    z-index: 1;
}

.gallery-item:hover .tag {
    transform: translateY(0);
    opacity: 1;
}

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

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
    .feature-collage .col-badge { display: none; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
    .hero-bg img { opacity: 0.55; }

    .feature-collage .col-1 { width: 70%; height: 58%; }
    .feature-collage .col-2 { width: 60%; height: 55%; }
}

/* ============================================
   Gallery Page (Masonry + Lightbox)
   ============================================ */

.gallery-page {
    padding: 80px 0 110px;
    background: var(--color-cream);
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

/* Honeypot anti-spam field — visually & semantically hidden, off the
   accessibility tree and tab order. Real users never see or fill it. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.gallery-filter {
    padding: 10px 22px;
    background: var(--color-white);
    color: var(--color-charcoal);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.gallery-filter:hover {
    border-color: var(--color-aqua);
    color: var(--color-teal);
}

.gallery-filter.active {
    background: var(--color-deep);
    color: var(--color-white);
    border-color: var(--color-deep);
}

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

.gallery-tile {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--color-mist);
    position: relative;
}

.gallery-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
    filter: saturate(0.98);
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.55));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.gallery-tile .tile-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
    z-index: 2;
}

/* Video tile */
.gallery-tile.is-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
}

.gallery-tile.is-video:hover video {
    transform: scale(1.04);
}

.gallery-tile.is-video .video-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(10, 37, 64, 0.85);
    color: var(--color-white);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 3;
}

.gallery-tile.is-video .video-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5454;
    box-shadow: 0 0 8px #ff5454;
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.gallery-tile.is-video .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.gallery-tile.is-video .play-overlay span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
    transition: all 0.4s var(--ease);
}

.gallery-tile.is-video .play-overlay span svg {
    width: 26px;
    height: 26px;
    margin-left: 3px;
}

.gallery-tile.is-video:hover .play-overlay span {
    transform: scale(1.1);
    background: var(--color-aqua);
    color: var(--color-white);
}

/* Lightbox video */
.lightbox-video {
    max-width: 92vw;
    max-height: 84vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    background: #000;
    display: none;
}

.lightbox.show-video .lightbox-img { display: none; }
.lightbox.show-video .lightbox-video { display: block; }

.gallery-tile .tile-icon svg {
    width: 16px;
    height: 16px;
}

.gallery-tile:hover img {
    transform: scale(1.04);
    filter: saturate(1.1);
}

.gallery-tile:hover::after { opacity: 1; }
.gallery-tile:hover .tile-icon {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-filters { margin-bottom: 32px; }
    .gallery-filter { padding: 9px 18px; font-size: 0.85rem; }
}

@media (max-width: 420px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6, 22, 38, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 84vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: var(--color-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev  { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 26px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox svg {
    width: 22px;
    height: 22px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
    .lightbox { padding: 16px; }
    .lightbox-close, .lightbox-prev, .lightbox-next {
        width: 44px; height: 44px;
    }
    .lightbox-close { top: 16px; right: 16px; }
    .lightbox-prev  { left: 10px; }
    .lightbox-next  { right: 10px; }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px 14px 16px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease);
}

.wa-fab:hover {
    transform: translateY(-3px) scale(1.03);
    background: #1ebe57;
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--color-white);
}

.wa-fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.wa-fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.5; }
    70%  { transform: scale(1.25); opacity: 0;   }
    100% { transform: scale(1.25); opacity: 0;   }
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
    .wa-fab {
        bottom: 18px;
        right: 18px;
        padding: 13px 18px 13px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .wa-fab .wa-label { display: none; }
    .wa-fab {
        padding: 14px;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
