/* ============================================================
   AZIZ FURNITURE — Brand-Aligned Editorial Redesign
   Brand: Poppins typeface · Green-led palette (#25b78a primary)
   ============================================================ */

:root {
    /* ── Brand Palette (from official guidelines) ── */
    --green: #25b78a;
    /* primary brand green */
    --green-mid: #5ac09b;
    --green-soft: #aadbcb;
    --blue: #0d549b;
    /* primary brand blue */
    --blue-mid: #1f6ead;
    --blue-light: #3491c4;
    --white: #ffffff;

    /* ── Working palette ── */
    --bg: #ffffff;
    --bg-2: #f3faf7;
    /* derived from green-soft, very pale mint */
    --bg-paper: #ffffff;
    --ink: #0a2540;
    /* deep navy-ink, harmonizes with brand blue */
    --ink-soft: #2c3e54;
    --ink-mute: #6b7785;
    --line: rgba(13, 84, 155, 0.14);
    --line-soft: rgba(13, 84, 155, 0.06);
    --line-green: rgba(37, 183, 138, 0.22);

    /* ── Type ── */
    --font: 'Poppins', system-ui, -apple-system, sans-serif;

    /* ── Motion ── */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-base: 0.5s var(--ease);
}

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

*::selection {
    background: var(--green);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 15% 8%, rgba(37, 183, 138, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 92%, rgba(13, 84, 155, 0.05) 0%, transparent 50%);
}

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

ul,
ol {
    list-style: none;
}

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

button {
    font-family: inherit;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 140px 0;
}

/* ─── Typography Primitives ─────────────────────── */

.eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 500;
    color: var(--green);
    display: inline-block;
}

.eyebrow-light {
    color: var(--green-mid);
}

.section-title {
    font-family: var(--font);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-top: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
}

.section-title.light {
    color: var(--white);
}

.section-title.light em {
    color: var(--green-mid);
}

.section-head {
    margin-bottom: 80px;
    max-width: 720px;
}

/* ─── Buttons ───────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: var(--t-base);
    cursor: pointer;
    border: 1.5px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.btn i {
    font-size: 0.78em;
    transition: transform 0.4s var(--ease);
}

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

.btn-primary {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-primary:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn-ghost {
    background-color: transparent;
    color: var(--ink);
    border-color: var(--line);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
    padding: 11px 22px;
    font-size: 0.72rem;
}

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

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

.btn-light:hover {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* ─── NAVBAR ────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 1000;
    transition: var(--t-base);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo-text {
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--blue);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text em {
    font-style: italic;
    color: var(--green);
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-left: 0;
}

.logo-text.light {
    color: var(--white);
}

.logo-text.light em {
    color: var(--green-mid);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: width 0.45s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--blue);
    transition: var(--t-base);
    border-radius: 2px;
}

/* ─── HERO ──────────────────────────────────────── */

.hero {
    min-height: 100vh;
    padding: 160px 0 160px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--bg-2) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: calc(100% / 12) 100%;
    opacity: 0.5;
    pointer-events: none;
}

/* subtle green glow accent */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: -150px;
    background: radial-gradient(circle, rgba(37, 183, 138, 0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "meta meta"
        "headline side"
        "stats stats";
    gap: 50px 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-meta {
    grid-area: meta;
}

.hero-headline {
    grid-area: headline;
}

.hero-headline h1 {
    font-family: var(--font);
    font-weight: 300;
    font-size: clamp(2.6rem, 6.5vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.hero-headline .line {
    display: block;
    overflow: hidden;
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--green);
}

.hero-side {
    grid-area: side;
    align-self: end;
    max-width: 380px;
    padding-bottom: 8px;
}

.hero-lede {
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    border-left: 2px solid var(--green);
    padding-left: 20px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    padding-top: 40px;
    margin-top: 30px;
    gap: 30px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.stat-num {
    font-family: var(--font);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -0.03em;
}

.stat-num sup {
    font-size: 0.5em;
    color: var(--green);
    font-style: italic;
    margin-left: 2px;
    font-weight: 400;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    line-height: 1.5;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--blue);
    z-index: 3;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
    animation: scrollPulse 2.4s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ─── MARQUEE ───────────────────────────────────── */

.marquee {
    background-color: var(--blue);
    color: var(--white);
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    animation: marquee 40s linear infinite;
    font-family: var(--font);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.marquee-track .dot {
    color: var(--green);
    font-size: 0.55rem;
    font-style: normal;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── ABOUT ─────────────────────────────────────── */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text .lead {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}

.about-text p {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 20px;
    line-height: 1.75;
    font-weight: 400;
}

.vision {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.vision .eyebrow {
    margin-bottom: 12px;
}

.vision p {
    font-family: var(--font);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink);
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
    letter-spacing: -0.01em;
}

.about-panel {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 12px 28px;
    border-radius: 4px;
    position: relative;
}

.about-panel::before {
    content: '— Quick facts';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--white);
    padding: 0 10px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px dashed var(--line);
    gap: 20px;
}

.panel-row:last-child {
    border-bottom: none;
}

.panel-key {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    font-weight: 500;
}

.panel-val {
    font-family: var(--font);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--blue);
    text-align: right;
    font-weight: 400;
}

/* ─── SERVICES ──────────────────────────────────── */

.services {
    background: var(--bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.service-card {
    background: transparent;
    padding: 44px 36px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background-color 0.4s var(--ease);
    cursor: default;
}

.service-card:hover {
    background-color: var(--bg-2);
}

.service-card:hover .card-arrow {
    transform: translate(4px, -4px);
    opacity: 1;
    color: var(--green);
}

.service-card:hover .card-icon {
    background-color: var(--green);
    border-color: var(--green);
}

.service-card:hover .card-icon i {
    color: var(--white);
    transform: rotate(-6deg) scale(1.08);
}

.card-index {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--green);
    font-style: italic;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.card-icon {
    margin-bottom: 36px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--line-green);
    border-radius: 50%;
    transition: var(--t-base);
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--green);
    transition: var(--t-base);
}

.service-card h3 {
    font-family: var(--font);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--ink);
}

.service-card p {
    color: var(--ink-mute);
    font-size: 0.94rem;
    line-height: 1.7;
    font-weight: 400;
}

.card-arrow {
    display: inline-block;
    margin-top: 24px;
    color: var(--ink-mute);
    opacity: 0.5;
    transition: var(--t-base);
    font-size: 0.85rem;
}

/* ─── WHY US / Principles ───────────────────────── */

.why-us {
    background: var(--white);
}

.why-head {
    max-width: 720px;
    margin-bottom: 80px;
}

.why-intro {
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 580px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 2px solid var(--blue);
}

.principle {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 40px 30px 40px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: var(--t-base);
}

.principle:not(:nth-child(3n)) {
    border-right: 1px solid var(--line);
    padding-right: 30px;
}

.principle:not(:nth-child(3n)) {
    padding-left: 0;
}

.principle:nth-child(n+2) {
    padding-left: 30px;
}

.principle:nth-child(3n+1) {
    padding-left: 0;
}

.principle:hover .p-num {
    color: var(--blue);
    transform: translateY(-2px);
}

.p-num {
    font-family: var(--font);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green);
    line-height: 1.4;
    padding-top: 2px;
    font-weight: 400;
    transition: var(--t-base);
}

.p-body h4 {
    font-family: var(--font);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.p-body p {
    color: var(--ink-mute);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ─── PRODUCTS ──────────────────────────────────── */

.products {
    background: var(--bg-2);
}

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

.products-grid-4x2 {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
}

.p-desc {
    font-size: 0.84rem;
    color: var(--ink-mute);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 400;
}

.product-category {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--t-base);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.product-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 84, 155, 0.12);
    border-color: var(--green);
}

.product-category:hover .product-visual {
    background-color: var(--green);
}

.product-category:hover .product-visual i {
    color: var(--white);
    transform: scale(1.1) rotate(-4deg);
}

.product-category:hover .product-visual::before {
    border-color: rgba(255, 255, 255, 0.35);
}

.product-category:hover .p-cta {
    color: var(--green);
}

.product-visual {
    height: 180px;
    background-color: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
    border-bottom: 1px solid var(--line);
    position: relative;
}

.product-visual::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px dashed var(--line-green);
    border-radius: 4px;
    transition: var(--t-base);
}

.product-visual i {
    font-size: 3rem;
    color: var(--green);
    transition: var(--t-base);
}

.product-meta {
    padding: 24px 26px 28px;
}

.p-index {
    font-family: var(--font);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--green);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.product-category h3 {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.p-cta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--t-base);
    font-weight: 500;
}

.p-cta i {
    transition: transform 0.4s var(--ease);
    font-size: 0.7rem;
}

.product-category:hover .p-cta i {
    transform: translate(3px, -3px);
}

/* ─── COMPANY PROFILE CTA (Brand Blue) ──────────── */

.profile-cta {
    background: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.profile-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(37, 183, 138, 0.20) 0%, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(37, 183, 138, 0.10) 0%, transparent 50%);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-text p {
    margin: 28px 0 40px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 480px;
}

.profile-decor {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decor-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    animation: slowSpin 60s linear infinite;
}

.decor-circle::before {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px dashed rgba(170, 219, 203, 0.35);
    border-radius: 50%;
}

.decor-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: var(--green);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.decor-num {
    font-family: var(--font);
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 300;
    text-align: center;
    color: var(--white);
    line-height: 1.1;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

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

/* ─── CONTACT ───────────────────────────────────── */

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

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

.contact-left .section-title {
    margin-top: 18px;
}

.contact-lede {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 28px 0 40px;
    max-width: 420px;
}

.contact-info {
    border-top: 1px solid var(--line);
}

.contact-info li {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: baseline;
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--ink);
    font-style: italic;
    font-weight: 300;
}

.contact-info li>span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    font-style: normal;
    font-weight: 500;
}

.contact-info li a {
    color: var(--blue);
}

.contact-info li a:hover {
    color: var(--green);
}

.contact-form {
    background: var(--bg-2);
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.field label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 10px;
    font-weight: 600;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.3s var(--ease);
    resize: vertical;
    font-weight: 400;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--green);
}

.contact-form button {
    align-self: flex-start;
    border: none;
    margin-top: 8px;
}

/* ─── FOOTER ────────────────────────────────────── */

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.65);
    padding: 100px 0 30px;
    border-top: 3px solid var(--green);
}

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

.footer-brand h3 {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    font-size: 0.94rem;
    max-width: 340px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    font-family: var(--font);
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    font-size: 0.94rem;
    transition: color 0.3s var(--ease);
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: var(--t-base);
    margin: 0;
}

.social-icon:hover {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .ital {
    font-family: var(--font);
    font-style: italic;
    color: var(--green-mid);
    font-weight: 300;
}

/* ─── Animations (Scroll Reveal) ────────────────── */

.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(28px);
}

.fade-in-left {
    transform: translateX(-28px);
}

.fade-in-right {
    transform: translateX(28px);
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

/* ─── FLOATING ACTION BUTTONS ──────────────────── */

.float-btn {
    position: fixed;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: var(--t-base);
    font-family: var(--font);
    text-decoration: none;
}

.float-wa {
    bottom: 24px;
    background: #25D366;
    /* WhatsApp official green */
    animation: floatPulse 2.5s ease-in-out infinite;
}

.float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    animation: none;
    background: #1ebe5d;
}

.float-wa i {
    font-size: 1.3rem;
}

.float-top {
    bottom: 76px;
    background: var(--blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

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

.float-top:hover {
    background: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 183, 138, 0.4);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5),
            0 0 0 8px rgba(37, 211, 102, 0.08);
    }
}

.float-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    background: var(--ink);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--t-base);
    pointer-events: none;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--ink);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */

.fade-in, 
.fade-in-up, 
.fade-in-left, 
.fade-in-right {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.appear {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ─── GALLERY / OUR WORK ────────────────────────── */

.our-work {
    background: var(--bg-2);
}

.gallery-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t-base);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--t-base);
}

.gallery-item.hidden {
    display: none;
}

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

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

/* ─── LIGHTBOX ──────────────────────────────────── */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease);
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--t-base);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--green);
    transform: rotate(90deg);
}

/* ─── RESPONSIVE ────────────────────────────────── */

@media (max-width: 980px) {
    .section-padding {
        padding: 100px 0;
    }

    .section-head {
        margin-bottom: 50px;
    }

    .hero {
        padding: 130px 0 80px;
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "meta"
            "headline"
            "side"
            "stats";
        gap: 36px;
    }

    .hero-side {
        max-width: 100%;
        padding-bottom: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 24px;
    }

    .stat {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .hero-scroll {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .profile-decor {
        height: 280px;
    }

    .decor-circle {
        width: 240px;
        height: 240px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

@media (max-width: 640px) {
    .container {
        padding: 0 22px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        text-align: left;
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .principle,
    .principle:not(:nth-child(3n)) {
        padding: 32px 0 !important;
        border-right: none;
    }

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

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

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

    .contact-info li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .marquee-track {
        font-size: 1.05rem;
        gap: 36px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        right: 14px;
    }

    .float-wa {
        bottom: 14px;
    }

    .float-wa i {
        font-size: 1.15rem;
    }

    .float-top {
        bottom: 62px;
    }

    .float-tooltip {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}