/* =========================================================
   Afsana-Daynight Outcall Spa — Luxury Wellness Theme
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --bg-primary: #F6F2EB;
    --bg-secondary: #DDD5C7;
    --accent: #0E7A61;
    --accent-dark: #095a47;
    --highlight: #A86C3D;
    --highlight-dark: #8a5630;
    --text: #2E2E2E;
    --text-soft: #5a5a5a;
    --text-mute: #8a8a8a;
    --white: #ffffff;
    --border: rgba(46, 46, 46, 0.08);
    --shadow-sm: 0 4px 14px rgba(46, 46, 46, 0.06);
    --shadow-md: 0 10px 30px rgba(46, 46, 46, 0.08);
    --shadow-lg: 0 20px 50px rgba(46, 46, 46, 0.12);
    --shadow-glow: 0 14px 40px rgba(14, 122, 97, 0.25);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.4s var(--ease);
    --container: 1240px;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Animated Background ---------- */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, #F6F2EB 0%, #EFE7D6 25%, #E5DCC7 50%, #DDD5C7 75%, #F6F2EB 100%);
    background-size: 400% 400%;
    animation: gradientShift 22s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---------- Floating Leaves ---------- */
.floating-leaves {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.leaf {
    position: absolute;
    font-size: 28px;
    opacity: 0.35;
    filter: blur(0.5px);
    animation: floatLeaf 18s linear infinite;
}
.leaf-1 { top: 10%; left: -5%; animation-delay: 0s; }
.leaf-2 { top: 35%; left: -8%; animation-delay: 4s; font-size: 22px; }
.leaf-3 { top: 60%; left: -6%; animation-delay: 8s; }
.leaf-4 { top: 80%; left: -4%; animation-delay: 12s; font-size: 24px; }
.leaf-5 { top: 20%; left: -7%; animation-delay: 16s; font-size: 20px; }
@keyframes floatLeaf {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    50% { transform: translateX(110vw) translateY(-40px) rotate(180deg); }
    100% { transform: translateX(110vw) translateY(0) rotate(360deg); }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--highlight), var(--accent));
    background-size: 200% 100%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(14, 122, 97, 0.5);
    animation: progressShine 3s linear infinite;
}
@keyframes progressShine {
    to { background-position: 200% 0; }
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid transparent;
    user-select: none;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-icon { display: inline-flex; font-size: 1.1em; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(14, 122, 97, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}
.btn-outline:hover {
    background: var(--text);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}
.btn-ghost:hover {
    background: rgba(14, 122, 97, 0.08);
    color: var(--accent);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}
.ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transform: scale(0);
    animation: rippleAnim 0.7s linear;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(246, 242, 235, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(246, 242, 235, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    flex-shrink: 0;
}
.logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(14, 122, 97, 0.1);
    border-radius: 12px;
    transition: transform var(--transition);
}
.logo:hover .logo-mark { transform: rotate(15deg) scale(1.05); }
.logo-mark svg { width: 28px; height: 28px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}
.logo-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: all var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 24px; }

.nav-cta { display: flex; gap: 10px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    background: rgba(14, 122, 97, 0.1);
    z-index: 1100;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg-image {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 242, 235, 0.95) 0%, rgba(246, 242, 235, 0.75) 40%, rgba(246, 242, 235, 0.4) 100%);
}

.hero-content {
    max-width: 880px;
    text-align: center;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 122, 97, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease) 0.1s both;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text);
    animation: fadeInUp 0.9s var(--ease) 0.2s both;
}
.text-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.9s var(--ease) 0.3s both;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.9s var(--ease) 0.4s both;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
    animation: fadeInUp 0.9s var(--ease) 0.5s both;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all var(--transition);
}
.trust-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-md);
}
.trust-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    border-radius: 12px;
    flex-shrink: 0;
}
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 14px; color: var(--text); }
.trust-text span { font-size: 12px; color: var(--text-soft); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(168, 108, 61, 0.1);
    color: var(--highlight);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--text-soft);
    line-height: 1.7;
}

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Glassmorphism ---------- */
.glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
}
.glass-strong {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
}

/* ---------- About Section ---------- */
.about { background: rgba(255, 255, 255, 0.3); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}
.about-img-main img,
.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.about-img-main { aspect-ratio: 4/5; }
.about-img-sub {
    aspect-ratio: 4/5;
    margin-top: 40px;
    position: relative;
}
.about-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    animation: floatCard 4s ease-in-out infinite;
}
.about-floating-card .counter {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.about-floating-card span {
    display: block;
    font-size: 12px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text);
    margin: 20px 0 16px;
    line-height: 1.7;
}
.about-content p {
    color: var(--text-soft);
    margin-bottom: 24px;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}
.check {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 60px 0; }
.cta-banner-inner {
    padding: 50px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 122, 97, 0.15), transparent 70%);
    border-radius: 50%;
    animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}
.cta-banner-content { flex: 1; min-width: 280px; position: relative; z-index: 1; }
.cta-banner-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
    color: var(--text);
}
.cta-banner-content p { color: var(--text-soft); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(14, 122, 97, 0.18);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease);
}
.service-card:hover::after { transform: translateX(100%); }

.service-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.08); }

.service-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(360deg) scale(1.1); }

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}
.service-body p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}
.service-body .btn { align-self: flex-start; }

.service-card-featured { border: 2px solid rgba(14, 122, 97, 0.2); }

/* ---------- Why Section ---------- */
.why { background: rgba(255, 255, 255, 0.3); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}
.why-card {
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 122, 97, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(14, 122, 97, 0.15);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, rgba(14, 122, 97, 0.12), rgba(168, 108, 61, 0.12));
    border-radius: 18px;
    transition: transform 0.4s var(--ease);
    position: relative;
    z-index: 1;
}
.why-card:hover .why-icon { transform: rotate(360deg) scale(1.1); }
.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
    position: relative;
    z-index: 1;
}
.why-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ---------- Stats Section ---------- */
.stats-section { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}
.stat {
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}
.stat:hover { transform: translateY(-6px) scale(1.02); }
.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    grid-auto-flow: dense;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: zoom-in;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.gallery-item:nth-child(1) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 16/9; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.18); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(14, 122, 97, 0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    color: var(--accent);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 300;
    transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }
.gallery-caption {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---------- Local SEO ---------- */
.local-seo-card {
    padding: 50px;
    border-radius: var(--radius-xl);
}
.local-seo-content p {
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1.02rem;
}
.local-seo-content p:last-child { margin-bottom: 0; }
.local-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(14, 122, 97, 0.1), rgba(168, 108, 61, 0.1));
    color: var(--accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(14, 122, 97, 0.2);
    transition: all var(--transition);
}
.tag:hover {
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: white;
    transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    padding: 32px 30px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(14, 122, 97, 0.15);
}
.testimonial-stars {
    color: var(--highlight);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    margin-bottom: 22px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: white;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--font-serif);
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--text); }
.testimonial-author span { font-size: 13px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.active {
    box-shadow: 0 18px 40px rgba(14, 122, 97, 0.15);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-sans);
    gap: 20px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14, 122, 97, 0.1);
    color: var(--accent);
    font-size: 22px;
    font-weight: 400;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-answer p {
    padding: 0 26px 22px;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ---------- Location ---------- */
.location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    box-shadow: var(--shadow-md);
}
.location-info {
    padding: 36px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}
.location-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--text);
}
.location-list { flex: 1; display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.location-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.li-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 122, 97, 0.1), rgba(168, 108, 61, 0.1));
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}
.location-list strong { display: block; color: var(--text); margin-bottom: 2px; font-size: 0.95rem; }
.location-list p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.5; }
.location-list a { color: var(--accent); font-weight: 600; }
.location-list a:hover { color: var(--highlight); }
.location-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}
.contact-card {
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(14, 122, 97, 0.18);
}
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    color: white;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    transition: transform 0.4s var(--ease);
}
.contact-card:hover .contact-icon { transform: scale(1.1) rotate(8deg); }
.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text);
}
.contact-card p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 0.95rem;
    flex: 1;
}
.contact-link {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.contact-link:hover { color: var(--highlight); }
.contact-address {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.contact-card .btn { margin-top: auto; }

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #c4b9a5 100%);
    color: var(--text);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}
.logo-footer { margin-bottom: 16px; }
.footer-about {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: var(--text-soft);
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}
.footer-contact li {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
    padding-left: 0;
}
.footer-contact a:hover { color: var(--accent); }
.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.footer-keywords span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-soft);
    border-radius: 100px;
    font-size: 11px;
    border: 1px solid rgba(14, 122, 97, 0.15);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(46, 46, 46, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.9rem;
}
.footer-bottom strong { color: var(--accent); }

/* ---------- Floating Buttons ---------- */
.floating-btn {
    position: fixed;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 998;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s var(--ease);
    overflow: visible;
}
.floating-btn svg { width: 28px; height: 28px; }
.floating-whatsapp {
    bottom: 100px;
    right: 22px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: floatY 3s ease-in-out infinite;
}
.floating-call {
    bottom: 170px;
    right: 22px;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    animation: floatY 3s ease-in-out infinite 0.5s;
}
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.floating-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulseRing 2s ease infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Mobile Booking Bar ---------- */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 10px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}
.mobile-booking-bar.show { transform: translateY(0); }
.mbtn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    transition: all var(--transition);
}
.mbtn-icon { font-size: 20px; }
.mbtn-call { background: var(--accent); color: white; }
.mbtn-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.mbtn-map { background: var(--highlight); color: white; }
.mbtn:active { transform: scale(0.95); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 240px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--text);
    color: white;
    font-size: 22px;
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--accent); transform: translateY(-4px); }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.lightbox-close:hover { background: white; color: var(--text); transform: rotate(90deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav-list { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        max-width: 90vw;
        background: rgba(246, 242, 235, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav.open { transform: translateX(0); }
    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }
    .nav-link { font-size: 1.1rem; padding: 12px 14px; width: 100%; }
    .nav-cta { display: flex; flex-direction: column; width: 100%; gap: 10px; }
    .nav-cta .btn { width: 100%; }

    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .container { padding: 0 18px; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-buttons .btn { flex: 1; min-width: 140px; }
    .cta-banner-inner { padding: 30px 24px; flex-direction: column; text-align: center; }
    .cta-banner-actions { width: 100%; flex-direction: column; }
    .cta-banner-actions .btn { width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; }
    .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
    .gallery-item { aspect-ratio: 1; }
    .local-seo-card { padding: 30px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .floating-whatsapp { bottom: 80px; right: 16px; width: 54px; height: 54px; }
    .floating-call { bottom: 144px; right: 16px; width: 54px; height: 54px; }
    .back-to-top { bottom: 210px; right: 18px; width: 42px; height: 42px; }
    .mobile-booking-bar { display: flex; }
    body { padding-bottom: 70px; }

    .about-floating-card { left: 10px; bottom: -10px; padding: 12px 16px; }
    .about-floating-card .counter { font-size: 26px; }
    .about-floating-card span { font-size: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .btn-lg { padding: 14px 22px; font-size: 14px; }
    .hero-trust { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 10px; gap: 8px; }
    .trust-icon { width: 38px; height: 38px; font-size: 20px; }
    .logo-name { font-size: 18px; }
    .logo-sub { font-size: 9px; }
    .logo-mark { width: 38px; height: 38px; }
    .logo-mark svg { width: 22px; height: 22px; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .bg-gradient { animation: none; }
    .leaf { display: none; }
    html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--highlight);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Print ---------- */
@media print {
    .header, .footer, .floating-btn, .back-to-top, .mobile-booking-bar, .bg-gradient, .floating-leaves { display: none; }
    body { background: white; color: black; }
    .section { padding: 20px 0; page-break-inside: avoid; }
}
