/* =================================================================
   Home Fix Zen – Main Stylesheet
   ================================================================= */

/* --- Google Fonts ------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables ----------------------------------------------- */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 8%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 8%);
    --primary: hsl(0, 0%, 8%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 30%);
    --secondary-foreground: hsl(0, 0%, 8%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 45%);
    --accent: hsl(45, 100%, 51%);
    --accent-foreground: hsl(0, 0%, 8%);
    --border: hsl(0, 0%, 90%);
    --input: hsl(0, 0%, 90%);
    --ring: hsl(0, 0%, 30%);
    --radius: 0.75rem;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --gradient-primary: linear-gradient(135deg, hsl(0, 0%, 8%), hsl(0, 0%, 25%));
    --gradient-hero: linear-gradient(135deg, hsl(0, 0%, 5%) 0%, hsl(0, 0%, 20%) 100%);
    --gradient-cta: linear-gradient(135deg, hsl(45, 100%, 51%), hsl(35, 100%, 55%));
    --shadow-card: 0 4px 20px -4px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 12px 32px -8px rgba(0,0,0,0.15);
    --shadow-button: 0 4px 14px 0 rgba(0,0,0,0.25);
}

/* --- Reset & Base ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--foreground);
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Layout Utilities ------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.min-h-screen { min-height: 100vh; }
.py-12   { padding-top: 3rem; padding-bottom: 3rem; }
.py-16   { padding-top: 1rem; padding-bottom: 4rem; }
.py-24   { padding-top: 6rem; padding-bottom: 6rem; }

@media (min-width: 768px) {
    .md\:py-16 { padding-top: 1rem; padding-bottom: 4rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 1024px) {
    .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

/* --- Grid Helpers ----------------------------------------------- */
.grid       { display: grid; }
.flex       { display: flex; }
.hidden     { display: none; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* --- Gradient Utilities ----------------------------------------- */
.gradient-primary { background: var(--gradient-primary); }
.gradient-hero    { background: var(--gradient-hero); }
.gradient-cta     { background: var(--gradient-cta); }
.shadow-card      { box-shadow: var(--shadow-card); }
.shadow-card-hover { box-shadow: var(--shadow-card-hover); }
.shadow-button    { box-shadow: var(--shadow-button); }

/* --- Typography -------------------------------------------------- */
.font-heading { font-family: var(--font-heading); }
.text-xs    { font-size: 0.75rem; }
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-4xl   { font-size: 2.25rem; }
.text-5xl   { font-size: 3rem; }
.font-medium     { font-weight: 500; }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }
.font-extrabold  { font-weight: 800; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.7; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

.text-primary-foreground { color: var(--primary-foreground); }
.text-foreground         { color: var(--foreground); }
.text-muted-foreground   { color: var(--muted-foreground); }
.text-accent             { color: var(--accent); }
.text-secondary          { color: var(--secondary); }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12{ margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10{ margin-top: 2.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-2 { margin-left: 0.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }

.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-md  { max-width: 28rem; }
.w-full { width: 100%; }
.italic { font-style: italic; }
.shrink-0 { flex-shrink: 0; }

/* --- Buttons ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-button);
    font-size: 1rem;
    padding: 1rem 2rem;
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: var(--primary-foreground);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-join{
	background: linear-gradient(135deg, hsl(45, 100%, 51%), hsl(35, 100%, 55%)) !important;
    color: var(--accent-foreground) !important;
    box-shadow: var(--shadow-button) !important;
}


.btn-ghost:hover { background: rgba(255,255,255,0.2); opacity: 1; }

.btn:hover { transform: scale(1.05); opacity: 1; }

/* --- Navbar ----------------------------------------------------- */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
	height:90px;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) { .navbar-inner { height: 5rem; } }

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.site-branding img { height: 2.5rem; width: auto; }

@media (min-width: 768px) { .site-branding img { height: 3rem; } }

.site-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    display: none;
}

@media (min-width: 640px) { .site-name { display: block; } }

/* Desktop nav */
.main-navigation { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .main-navigation { display: flex; } }

.main-navigation ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }

.main-navigation a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) - 0.25rem);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: background 0.2s;
    text-decoration: none;
}

.main-navigation a:hover { background: var(--muted); opacity: 1; }
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background: var(--primary);
    color: var(--primary-foreground);
}
.book-btn{
	background: var(--gradient-primary) !important;
    color: var(--primary-foreground) !important;
    box-shadow: var(--shadow-button);
    font-weight: 700 !important;
    margin-left: 0.5rem;
}

.nav-book-btn > a {
    background: var(--gradient-primary) !important;
    color: var(--primary-foreground) !important;
    box-shadow: var(--shadow-button);
    font-weight: 700 !important;
    margin-left: 0.5rem;
}

.nav-call-btn {
    display: none;
}

@media (min-width: 1024px) {
    .nav-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: var(--gradient-cta);
        color: var(--accent-foreground);
        font-weight: 600;
        font-size: 0.875rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-button);
        text-decoration: none;
        animation: pulseGlow 2s infinite;
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    color: var(--foreground);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle svg { pointer-events: none; }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: none; margin: 0; }

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-nav a:hover { background: var(--muted); }
.mobile-nav .current-menu-item > a { background: var(--primary); color: var(--primary-foreground); }

.mobile-nav-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gradient-cta);
    color: var(--accent-foreground);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
    text-decoration: none;
}

/* --- Hero Section ----------------------------------------------- */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px)  { .hero-inner { padding-top: 5rem; padding-bottom: 5rem; } }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr;  padding-bottom: 6rem; } }

.hero-content { color: var(--primary-foreground); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }

.hero-checks {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.hero-checks span { display: flex; align-items: center; gap: 0.25rem; }

.hero-image { display: none; }
@media (min-width: 1024px) {
    .hero-image { display: flex; justify-content: center; }
    .hero-image img { max-height: 500px; width: auto; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4)); animation: floatImg 4s ease-in-out infinite; }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* --- Section Styles --------------------------------------------- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.section-subtitle { color: var(--muted-foreground); max-width: 42rem; margin-left: auto; margin-right: auto; }

.bg-muted { background: var(--muted); }

/* --- Service Cards ---------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.services-grid-full { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .services-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid-full { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    opacity: 1;
}

.service-card-full { padding: 1.5rem; }

.service-icon {
/*     width: 3rem;
    height: 3rem; */
    border-radius: calc(var(--radius) - 0.25rem);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-icon-lg { width: 3.5rem; height: 3.5rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 1.5rem; }

.service-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

@media (min-width: 768px) { .service-name { font-size: 1rem; } }

.service-name-lg { font-size: 1.125rem; margin-bottom: 0.5rem; }

.service-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-desc-lg { font-size: 0.875rem; margin-bottom: 1rem; }

.service-price {
    display: inline-flex;
    align-items: center;btn
    gap: 0.25rem;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.service-card:hover .service-price { gap: 0.5rem; }

.service-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-big {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--secondary);
}

.book-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: gap 0.2s;
}

.book-link:hover { gap: 0.5rem; opacity: 1; }

/* --- Why Choose Us ---------------------------------------------- */
.why-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }

.why-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.why-card:hover { box-shadow: var(--shadow-card-hover); }

.why-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.why-title { font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.25rem; }
.why-desc  { font-size: 0.875rem; color: var(--muted-foreground); }

/* --- How It Works ----------------------------------------------- */
.steps-grid { display: grid; gap: 2rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-item { text-align: center; }

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: var(--accent-foreground);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.step-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--muted-foreground); }

/* --- Service Areas ---------------------------------------------- */
.cities-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.city-badge {
    padding: 0.625rem 1.25rem;
    background: var(--card);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

/* --- Testimonials ----------------------------------------------- */
.testimonials-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; color: var(--accent); font-size: 1rem; }
.testimonial-text { font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial-author { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; }
.testimonial-city { font-size: 0.75rem; color: var(--muted-foreground); }

/* --- CTA Banner ------------------------------------------------- */
.cta-section {
    background: var(--gradient-hero);
    padding: 3rem 0;
    text-align: center;
    color: var(--primary-foreground);
}

@media (min-width: 768px) { .cta-section { padding: 4rem 0; } }

.cta-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.cta-subtitle { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.125rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* --- Footer ----------------------------------------------------- */
#site-footer {
    background: var(--gradient-hero);
    color: var(--primary-foreground);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); padding: 4rem 0 2rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand img { height: 5rem; width: auto; filter: brightness(200%); }
.footer-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; }
.footer-tagline { font-size: 0.875rem; opacity: 0.8; line-height: 1.6; }

.footer-heading { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-links   { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; opacity: 0.8; text-decoration: none; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; opacity: 0.8; }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { opacity: 1; }
.footer-contact-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; }

.footer-social { margin-top: 1rem; display: flex; gap: 0.75rem; }
.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--primary-foreground);
    transition: background 0.2s;
}

.social-link:hover { background: rgba(255,255,255,0.25); opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

.footer-map { width: 100%; height: 12rem; }
@media (min-width: 768px) { .footer-map { height: 16rem; } }
.footer-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* --- Floating Buttons ------------------------------------------- */
.float-call {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-button);
    animation: pulseGlow 2s infinite;
    text-decoration: none;
}

@media (min-width: 768px) { .float-call { display: none; } }

.float-whatsapp {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: hsl(142, 70%, 45%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.2s;
    text-decoration: none;
    font-size: 1.5rem;
}

.float-whatsapp:hover { transform: scale(1.1); opacity: 1; }

/* --- Page Headers ----------------------------------------------- */
.page-hero {
  position: relative;
  background-image: url('http://onetenservices.com/wp-content/uploads/2026/03/one-ten-banner-without-text-2.jpg.jpeg');
 background-size: cover;
  background-position: center;
  padding: 3rem 0;
  text-align: center;
  height: 300px;
  z-index: 1;
}

/* Overlay */
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity here */
  z-index: -1;
}

@media (min-width: 768px) { .page-hero { padding: 4rem 0; } }

.page-hero-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.75rem; }
.page-hero-desc  { opacity: 0.9; max-width: 42rem; margin: 0 auto; color: #fff; }

/* --- About Page ------------------------------------------------- */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image img { max-height: auto; border-radius: calc(var(--radius) * 2); }
.about-image { display: flex; justify-content: center; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; ; }

.stat-card { background: var(--muted); border-radius: var(--radius); padding: 1rem; text-align: center; }
.stat-num   { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--secondary); }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); }

.values-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.value-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-foreground);
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.value-title { font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.5rem; }
.value-desc  { font-size: 0.875rem; color: var(--muted-foreground); }

.team-grid { display: grid; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { background: var(--card); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-card); border: 1px solid var(--border); }

.team-avatar {
    width: 5rem; height: 5rem; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-foreground);
    font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.team-name { font-family: var(--font-heading); font-weight: 700; }
.team-role { font-size: 0.875rem; color: var(--secondary); font-weight: 500; margin-top: 0.25rem; }
.team-exp  { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; display: flex; align-items: center; justify-content: center; gap: 0.25rem; }

/* --- Booking Page ----------------------------------------------- */
.booking-form-wrap {
    max-width: 42rem;
    margin: 0 auto;
}

.booking-form-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

@media (min-width: 768px) { .booking-form-card { padding: 2rem; } }

.form-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.25rem; }

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--input);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-textarea { resize: vertical; min-height: 6rem; }

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-button);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover { transform: scale(1.02); }

.booking-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-icon {
    width: 5rem; height: 5rem; border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-foreground);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* --- Contact Page ----------------------------------------------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: var(--primary-foreground); flex-shrink: 0; font-size: 1rem; }
.contact-info-label { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 600; }
.contact-info-value a { color: inherit; text-decoration: none; }
.contact-info-value a:hover { color: var(--secondary); }

/* --- Blog / Archive / Single ------------------------------------ */
.blog-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.post-thumbnail { overflow: hidden; aspect-ratio: 16/9; background: var(--muted); }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumbnail img { transform: scale(1.05); }

.post-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.post-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; line-height: 1.3; }
.post-title a { color: inherit; text-decoration: none; }
.post-title a:hover { color: var(--secondary); opacity: 1; }
.post-excerpt { font-size: 0.875rem; color: var(--muted-foreground); flex: 1; margin-bottom: 1rem; }
.read-more { font-size: 0.875rem; font-weight: 600; color: var(--secondary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem; }
.read-more:hover { gap: 0.5rem; opacity: 1; }

/* Single post */
.single-post-wrap { max-width: 48rem; margin: 0 auto; }
.single-post-header { margin-bottom: 2rem; }
.single-post-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; line-height: 1.2; }
.single-post-meta { font-size: 0.875rem; color: var(--muted-foreground); display: flex; gap: 1rem; flex-wrap: wrap; }
.single-post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.single-post-thumbnail img { width: 100%; max-height: 28rem; object-fit: cover; }
.post-content { font-size: 1rem; line-height: 1.8; color: var(--foreground); }
.post-content h2, .post-content h3, .post-content h4 { margin-top: 2rem; margin-bottom: 1rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content a { color: var(--secondary); text-decoration: underline; }
.post-content img { border-radius: var(--radius); margin: 1.5rem auto; }
.post-content blockquote { border-left: 4px solid var(--accent); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--muted-foreground); }

/* Sidebar */
.content-sidebar-wrap { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .content-sidebar-wrap { grid-template-columns: 1fr 320px; } }

.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.widget {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.widget-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.widget ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.widget ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { text-decoration: none; color: var(--foreground); transition: color 0.2s; }
.widget ul li a:hover { color: var(--secondary); opacity: 1; }

/* 404 */
.not-found-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }
.not-found-code { font-family: var(--font-heading); font-size: 8rem; font-weight: 900; color: var(--muted-foreground); opacity: 0.3; line-height: 1; margin-bottom: 1rem; }
.not-found-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.not-found-desc  { color: var(--muted-foreground); margin-bottom: 2rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    transition: background 0.2s;
}

.page-numbers.current, .page-numbers:hover { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); opacity: 1; }

/* Skip link */
.skip-link { position: absolute; top: -100%; left: 1rem; padding: 0.5rem 1rem; background: var(--primary); color: var(--primary-foreground); border-radius: var(--radius); z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* =================================================================
   SERVICE IMAGE CARDS  (page-services.php)
   ================================================================= */

/* Page section padding */
.svc-page-section {
    padding: 4.5rem 0 5rem;
}

/* ── Responsive grid: 1 → 2 → 3 columns ─────────────────────── */
.svc-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 580px)  { .svc-img-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-img-grid { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; } }

/* ── Card shell ───────────────────────────────────────────────── */
.svc-img-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px -4px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(.25,.46,.45,.94),
                box-shadow 0.35s cubic-bezier(.25,.46,.45,.94);
}
.svc-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px -12px rgba(0,0,0,0.18);
}

/* ── Image wrapper — contains + clips the zoom ───────────────── */
.svc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;           /* clips the zoomed image */
    background: var(--muted);
    flex-shrink: 0;
}

/* The actual <img> — zoom is on THIS element, not the wrapper */
.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.55s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

/* Trigger zoom when the CARD is hovered — smooth, natural feel */
.svc-img-card:hover .svc-img {
    transform: scale(1.10);
}

/* Subtle dark scrim that fades in over the image on hover */
.svc-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.35s ease;
    pointer-events: none;
    z-index: 1;
}
.svc-img-card:hover .svc-img-wrap::after {
    background: rgba(0,0,0,0.12);
}

/* Placeholder — shown when no featured image uploaded */
.svc-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--muted) 0%, var(--border) 100%);
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    font-family: var(--font-body);
}

/* Badge pill overlaid on image (e.g. "Most Popular") */
.svc-img-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.25rem 0.7rem;
    background: var(--gradient-cta);
    color: var(--accent-foreground);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.22);
    pointer-events: none;
    white-space: nowrap;
}

/* ── Card body ────────────────────────────────────────────────── */
.svc-img-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-img-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.svc-img-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.125rem;
}

/* ── Price row (only rendered when hfz_price custom field is set) */
.svc-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 1.125rem;
    padding: 0.5rem 0.875rem;
    background: var(--muted);
    border-left: 3px solid var(--accent);
    border-radius: 0 calc(var(--radius) - 0.25rem) calc(var(--radius) - 0.25rem) 0;
}

.svc-price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    white-space: nowrap;
}

.svc-price-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--foreground);
    letter-spacing: -0.01em;
}

/* ── Action buttons row ───────────────────────────────────────── */
.svc-img-actions {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Book Now — full primary CTA */
.svc-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-button);
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, gap 0.2s;
}
.svc-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    gap: 0.65rem;
    opacity: 1;
}
.svc-btn-book svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.svc-btn-book:hover svg {
    transform: translateX(3px);
}

/* Call button — compact secondary */
.svc-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.7rem 0.9rem;
    background: var(--muted);
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.svc-btn-call:hover {
    background: var(--border);
    border-color: var(--secondary);
    transform: translateY(-2px);
    opacity: 1;
}

/* ── Admin notice (only shown to logged-in admins) ───────────── */
.svc-admin-notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-left: 4px solid #f59e0b;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: #92400e;
    margin-bottom: 2rem;
}
.svc-admin-notice a {
    color: #b45309;
    font-weight: 700;
    text-decoration: underline;
}

/* --- Animations ------------------------------------------------- */
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
    50%       { box-shadow: 0 4px 24px rgba(255, 195, 0, 0.4); }
}

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

.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* --- SVG Icons (inline fallback) -------------------------------- */
.icon { display: inline-block; vertical-align: middle; }

/* --- WordPress Admin Bar Fix ------------------------------------ */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* --- WP Alignments ---------------------------------------------- */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.alignwide  { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100%; }

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
