/* ============================================================
   Natural Home Clean – Main Stylesheet
   Architecture: CSS Custom Properties → Base → Layout → Components → Pages → Responsive
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (Design Tokens) ── */
:root {
    /* Colors */
    --teal: #0EA5A0;
    --teal-dark: #0B8A86;
    --teal-light: #E6F7F7;
    --green: #22C55E;
    --blue: #3B82F6;
    --orange: #F97316;
    --purple: #8B5CF6;

    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --light: #F1F5F9;
    --border: #E2E8F0;
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-teal: 0 8px 25px rgba(14, 165, 160, 0.30);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Typography */
    --font-head: 'Sora', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. BASE / RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: var(--font-body);
}

/* ── 3. UTILITY CLASSES ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
    padding-block: clamp(3.5rem, 8vw, 6rem);
}

.bg-light {
    background: var(--off-white);
}

/* ── 4. PAGE SPA ROUTING ── */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ── 5. ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

[data-animate] {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

[data-animate]:nth-child(2) {
    animation-delay: 0.1s;
}

[data-animate]:nth-child(3) {
    animation-delay: 0.2s;
}

[data-animate]:nth-child(4) {
    animation-delay: 0.3s;
}

[data-animate]:nth-child(5) {
    animation-delay: 0.4s;
}

[data-animate]:nth-child(6) {
    animation-delay: 0.5s;
}


/* ══════════════════════════════════════════════
   NAVIGATION BAR
══════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

/* Flex row: logo left, links right */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    height: 100px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
}

.logo-icon {
    color: var(--teal);
    font-size: 1.3rem;
}

.logo-accent {
    color: var(--teal);
}

/* Nav links row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--teal);
    background: var(--teal-light);
}

.nav-link.active {
    color: var(--teal);
    background: var(--teal-light);
}

/* CTA Button in nav */
.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.3rem;
    background: var(--teal);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-teal);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--light);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
    border-top: 1px solid var(--border);
    gap: 0.25rem;
    animation: fadeIn 0.2s ease;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover {
    color: var(--teal);
    background: var(--teal-light);
}

.mobile-cta {
    margin-top: 0.5rem !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: 50px !important;
}


/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--teal);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn-primary.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════════
   SECTION HEADER (reusable)
══════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin-inline: auto;
}


/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--teal) 0%, #0B8A86 100%);
    padding: clamp(3rem, 7vw, 5rem) 0;
    text-align: center;
    color: var(--white);
}

.page-hero .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0.5rem 0 0.75rem;
}

.page-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 500px;
    margin-inline: auto;
}


/* ══════════════════════════════════════════════
   HOME → HERO SECTION
══════════════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F0FAFA 0%, #FFFFFF 60%, var(--teal-light) 100%);
    overflow: hidden;
    padding-top: clamp(3rem, 7vw, 5rem);
    padding-bottom: clamp(3rem, 7vw, 5rem);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Decorative background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--green);
    bottom: -100px;
    left: -80px;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--teal);
    top: 40%;
    right: 30%;
}

/* Hero flex layout: text + image side by side */
.hero-content {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1 1 50%;
    animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--teal-light);
    color: var(--teal);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.hero-badge i {
    font-size: 0.7rem;
    color: #F59E0B;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: var(--teal);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Hero stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero image side */
.hero-visual {
    flex: 1 1 45%;
    position: relative;
    animation: scaleIn 0.8s 0.2s ease both;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Floating badge on image */
.hero-badge-float {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--teal);
    animation: float 3s ease-in-out infinite;
}

.hero-badge-float i {
    font-size: 1rem;
}


/* ══════════════════════════════════════════════
   HOME → SERVICES PREVIEW CARDS
══════════════════════════════════════════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Colored icon bubbles */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.card-icon.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.card-icon.green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
}

.card-icon.blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue);
}

.card-icon.orange {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--purple);
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0;
    transition: gap var(--transition);
}

.card-link:hover {
    gap: 0.7rem;
}

/* Special CTA card */
.cta-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-color: transparent;
    color: var(--white);
}

.cta-card h3,
.cta-card p {
    color: var(--white);
}

.cta-card p {
    opacity: 0.85;
}

.cta-card-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--teal);
    margin-top: 0.5rem;
}

.cta-card .btn-primary:hover {
    background: var(--teal-light);
}


/* ══════════════════════════════════════════════
   HOME → WHY CHOOSE US
══════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
    text-align: center;
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
}

.why-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   HOME → TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-light), var(--shadow-md);
}

.stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
/* Two-column intro grid */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.about-img-wrap img {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--teal);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-teal);
    border: 4px solid var(--white);
}

.about-experience-badge strong {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.about-text .section-tag {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.pillar i {
    color: var(--teal);
    font-size: 0.9rem;
}

/* Mission / Vision / Values */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Expertise Stats */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.expertise-stat {
    background: var(--teal-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    border: 2px solid rgba(14, 165, 160, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
}

.expertise-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.big-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.big-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid var(--teal-light);
}

.team-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
}

.team-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
    margin: 0.2rem 0 0.5rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Each service as a wide card row */
.service-row {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-row:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-row-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.service-row-icon.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.service-row-icon.green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
}

.service-row-icon.blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue);
}

.service-row-icon.orange {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
}

.service-row-icon.purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--purple);
}

.service-row-body {
    flex: 1;
}

.service-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.service-row-header h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.price-badge {
    background: var(--teal-light);
    color: var(--teal);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-row-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Feature tags row */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.service-tags span i {
    color: var(--teal);
    font-size: 0.7rem;
}

/* ── SERVICE GALLERY (image thumbnails in service rows) ── */
.service-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.service-gallery img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

/* ── CARD THUMBNAIL (home page preview cards) ── */
.service-card.has-thumb {
    padding-top: 0;
    overflow: hidden;
}

.card-thumb {
    width: calc(100% + 3.5rem);
    margin-left: -1.75rem;
    margin-top: 0;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-bottom: 1.25rem;
}

/* ── LIGHTBOX OVERLAY ── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.25s ease;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    animation: scaleIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}


/* ── BOOKING FORM ── */
.booking-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-md);
}

/* Two-column form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    color: var(--teal);
    font-size: 0.8rem;
}

.req {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.12);
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748B'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
}

/* Error messages */
.err-msg {
    font-size: 0.78rem;
    color: #EF4444;
    font-weight: 600;
    min-height: 1em;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

/* Success message */
.success-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1.5px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    animation: fadeUp 0.4s ease;
}

.success-alert i {
    color: #22C55E;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.success-alert strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.success-alert p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
/* Two-column grid: info left, form right */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: box-shadow var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-sm);
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.contact-item a {
    color: var(--teal);
    transition: opacity var(--transition);
}

.contact-item a:hover {
    opacity: 0.75;
}

/* Social links in contact page */
.contact-social strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform var(--transition), opacity var(--transition);
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E1306C, #833AB4, #F77737);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.whatsapp {
    background: #25D366;
}

/* Contact form card */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

/* Google Map */
.map-section {
    width: 100%;
    height: 380px;
    border-top: 1px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: saturate(0.85);
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: #0F172A;
    /* Deep navy */
    color: #CBD5E1;
    padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Four-column footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 3rem;
}

.footer-logo {
    color: #F1F5F9;
}

.footer-logo .logo-accent {
    color: var(--teal);
}

.footer-logo .logo-icon {
    color: var(--teal);
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #94A3B8;
    margin-top: 1rem;
    max-width: 270px;
}

/* Social icons in footer */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.fs-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.95rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-btn:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer column heading */
.footer-heading {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: #F1F5F9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

/* Footer quick links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: #94A3B8;
    transition: color var(--transition), gap var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--teal);
}

.footer-links a:hover {
    color: var(--teal);
    gap: 0.6rem;
}

/* Footer contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.87rem;
    color: #94A3B8;
}

.footer-contact-list i {
    color: var(--teal);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact-list a {
    color: #94A3B8;
    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: var(--teal);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: #64748B;
}

.footer-bottom strong {
    color: #94A3B8;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* ══════════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-teal);
    transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* FINAL LOGO FIX */
.nav-logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo img {
    height: 180px;
    width: auto;
    max-height: 180px;
    object-fit: contain;
    display: block;
}

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        flex: none;
    }

    .hero-sub {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .hero-img-wrap img {
        height: 320px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap img {
        height: 320px;
    }

    .about-experience-badge {
        bottom: -1rem;
        right: -0.5rem;
        width: 100px;
        height: 100px;
    }

    .about-experience-badge strong {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-col {
        grid-column: 1 / -1;
    }

    /* Mobile nav */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: 1;
    }

    .service-row {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
    

.footer-logo {
    height: 40px;
}

.nav-logo img {
    height: 65px;   /* 👈 PERFECT SIZE */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer logo bigger */
.footer-logo img {
    height: 80px;
    width: auto;
}

}