/* ============================================
   Mathrutwa Care - Main Stylesheet
   Green & White Futuristic Theme
   ============================================ */

:root {
    --color-bg: #FFFFFF;
    --color-darkest: #0A4A4A;
    --color-dark: #0D5C57;
    --color-medium: #1F7A72;
    --color-sage: #5F8F88;
    --color-light: #E8F3F0;
    --color-accent: #E6A5AB;
    --color-accent-dark: #C98990;
    --color-teal: #1F7A72;
    --color-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(31, 122, 114, 0.28);
    --glass-shadow: 0 8px 32px rgba(10, 74, 74, 0.08);
    --glow-green: 0 0 20px rgba(31, 122, 114, 0.22);
    --glow-strong: 0 0 40px rgba(31, 122, 114, 0.3);
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-lg: 24px;
    --scroll-offset: 0px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: #FFFFFF;
    color: var(--color-darkest);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Pure white - no background effects */
#fx-universe,
.quantum-grid,
.cyber-grid-scroll,
.volumetric-beams,
.holographic-overlay,
.data-streams-layer,
.glass-layer,
.holo-scan-line,
#fx-canvas {
    display: none !important;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.holographic-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(207, 224, 209, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(111, 158, 147, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(46, 110, 103, 0.04) 0%, transparent 50%);
    animation: holographicShift 14s ease-in-out infinite alternate;
}

.holo-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 110, 103, 0.15), transparent);
    animation: holoScan 6s linear infinite;
    z-index: 5;
}

@keyframes holoScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes holographicShift {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Layout */
.main-content {
    position: relative;
    z-index: 2;
    min-height: 60vh;
    padding-top: 80px;
}

body.admin-bar .main-content {
    padding-top: 112px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .main-content { padding-top: 126px; }
    .main-content { padding-top: 70px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
    background: #FFFFFF;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-darkest), var(--color-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--color-sage);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Glassmorphism Cards */
.glass-card {
    background: #FFFFFF;
    border: 1px solid var(--color-light);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(6, 46, 42, 0.06);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(207, 224, 209, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.glass-card.card-hover-active::after,
.glass-card:hover::after {
    opacity: 1;
}

.glass-card:hover,
.glass-card.card-hover-active {
    border-color: var(--color-sage);
    box-shadow: 0 8px 32px rgba(46, 110, 103, 0.12);
    transform: translateY(-6px);
}

/* Navigation - Solid visible header on ALL pages */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-light);
    box-shadow: 0 2px 16px rgba(6, 46, 42, 0.08);
    transition: box-shadow 0.3s;
}

body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(6, 46, 42, 0.12);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 16px;
}

.header-phone {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid var(--color-sage);
    border-radius: 50px;
    transition: all 0.3s;
}

.header-phone:hover {
    background: var(--color-light);
    color: var(--color-darkest);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.brand-logo-header {
    height: 52px;
    max-width: 200px;
}

.brand-logo-footer {
    height: 78px;
    max-width: 240px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.logo-icon {
    color: var(--color-sage);
    font-size: 1.6rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.logo-accent {
    color: var(--color-sage);
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(46, 110, 103, 0.3); }
    50% { text-shadow: 0 0 25px rgba(46, 110, 103, 0.6); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--color-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--color-sage);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-medium), var(--color-dark));
    border: 1px solid var(--color-sage);
    color: var(--color-white) !important;
    box-shadow: var(--glow-green);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-sage), var(--color-medium));
    color: var(--color-white) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    display: block;
    text-align: left;
    padding: 48px 0 80px;
    background: #FFFFFF;
}

.hero .container-wide,
.hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-content {
    max-width: none;
    animation: heroFadeIn 1s var(--transition-smooth);
    text-align: left;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-sage);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 600px;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: #FFFFFF;
    border: 1px solid var(--color-light);
    border-radius: 12px;
}

.stat-number.count-animate {
    animation: countPop 0.6s var(--transition-smooth);
}

@keyframes countPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(230, 165, 171, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-darkest), var(--color-dark), var(--color-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-sage);
    margin-bottom: 32px;
    max-width: 540px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-medium);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-sage);
}

.page-hero {
    padding: 40px 0 60px;
    text-align: center;
    background: #FFFFFF;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-medium), var(--color-dark));
    color: var(--color-white);
    box-shadow: var(--glow-green);
}

.btn-primary:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-medium);
}

.btn-outline:hover {
    background: rgba(207, 224, 209, 0.4);
    box-shadow: var(--glow-green);
}

/* Service Cards Grid - 3 equal columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.service-card {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .service-body {
    padding: 24px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .service-body h3,
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-darkest);
}

.service-card .service-body p,
.service-card p {
    color: var(--color-sage);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.service-card .service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
    transition: transform 0.5s var(--transition-smooth);
}

.img-zoom-wrap:hover .service-img,
.img-zoom-wrap:hover img {
    transform: scale(1.06);
}

.service-icon { display: none; }

/* Features Grid - 3x2 perfect alignment */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.feature-card {
    padding: 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-darkest);
    padding: 20px 24px 8px;
}

.feature-card p {
    color: var(--color-sage);
    font-size: 0.9rem;
    padding: 0 24px 28px;
    flex: 1;
}

.feature-icon { display: none; }

.features-grid.four-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 31, 32, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--color-darkest);
}

.gallery-item-video .gallery-overlay {
    opacity: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 31, 32, 0.75), transparent 50%);
}

.gallery-item-video:hover .gallery-overlay {
    opacity: 0.85;
}

/* Baby Skincare Section */
.skincare-section {
    background: linear-gradient(135deg, rgba(232, 245, 240, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.skincare-grid .about-image {
    max-width: 440px;
    margin: 0 auto;
}

.skincare-grid .about-image img,
.skincare-feature-img {
    width: 100%;
    height: auto;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    object-position: center center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 12px;
}

.skincare-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.skincare-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-sage);
    line-height: 1.6;
}

.skincare-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 700;
}

/* Stagger & Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(24px);
    animation: staggerIn 0.6s var(--transition-smooth) forwards;
}

@keyframes staggerIn {
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.testimonial-card {
    padding: 32px;
}

/* Hero Layout with Image */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
}

.hero-image {
    padding: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.hero-image-secondary {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 220px;
    padding: 6px;
    overflow: hidden;
}

.hero-image-secondary img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

.hero-image-tertiary {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 180px;
    padding: 6px;
    overflow: hidden;
}

.hero-image-tertiary img {
    height: 130px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
}

.page-hero-media {
    margin-top: 28px;
}

.page-hero-banner {
    padding: 0;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}

.page-hero-banner img,
.page-hero-banner-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
}

/* Image Showcase - 4 equal columns */
.image-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.image-showcase-item {
    overflow: hidden;
    padding: 0;
}

.image-showcase-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.image-showcase-item:hover img { transform: scale(1.05); }

.showcase-caption {
    padding: 20px 24px;
}

.showcase-caption h4 {
    font-family: var(--font-display);
    color: var(--color-darkest);
    margin-bottom: 6px;
}

.showcase-caption p {
    color: var(--color-sage);
    font-size: 0.9rem;
}

/* Logo Mark - legacy placeholder removed; using mathrutwa-logo.png */

/* SVG Icon System (no emojis) */
.service-icon, .feature-icon, .contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(207, 224, 209, 0.5);
    border: 1px solid var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.feature-card .feature-icon { margin: 0 auto 16px; }

.icon-massage::before, .icon-baby::before, .icon-ayurveda::before,
.icon-bath::before, .icon-care::before, .icon-family::before,
.icon-star::before, .icon-home::before, .icon-plan::before,
.icon-rating::before, .icon-phone::before, .icon-location::before,
.icon-clock::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--color-medium);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-massage::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a3 3 0 100 6 3 3 0 000-6zm-5 8a5 5 0 00-5 5v1h10v-1a5 5 0 00-5-5zm10 0a5 5 0 00-5 5v1h10v-1a5 5 0 00-5-5z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a3 3 0 100 6 3 3 0 000-6zm-5 8a5 5 0 00-5 5v1h10v-1a5 5 0 00-5-5zm10 0a5 5 0 00-5 5v1h10v-1a5 5 0 00-5-5z'/%3E%3C/svg%3E"); }
.icon-baby::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C9.24 2 7 4.24 7 7s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1 20v-6H5.5C6.88 15.33 9.28 14 12 14s5.12 1.33 6.5 2H13v6h-2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C9.24 2 7 4.24 7 7s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1 20v-6H5.5C6.88 15.33 9.28 14 12 14s5.12 1.33 6.5 2H13v6h-2z'/%3E%3C/svg%3E"); }
.icon-ayurveda::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.06.87 1.93 1.93 1.93 1.06 0 1.93-.87 1.93-1.93 0-1.06-.87-1.93-1.93-1.93-1.06 0-1.93.87-1.93 1.93z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 22c4.97 0 9-4.03 9-9-4.97 0-9 4.03-9 9zM5.6 10.25c0 1.06.87 1.93 1.93 1.93 1.06 0 1.93-.87 1.93-1.93 0-1.06-.87-1.93-1.93-1.93-1.06 0-1.93.87-1.93 1.93z'/%3E%3C/svg%3E"); }
.icon-bath::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 14c0-1.65 1.35-3 3-3s3 1.35 3 3H9zm12-3h-8V7c0-1.1-.9-2-2-2H6C4.9 5 4 5.9 4 7v10c0 2.21 1.79 4 4 4h9c2.21 0 4-1.79 4-4v-3z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 14c0-1.65 1.35-3 3-3s3 1.35 3 3H9zm12-3h-8V7c0-1.1-.9-2-2-2H6C4.9 5 4 5.9 4 7v10c0 2.21 1.79 4 4 4h9c2.21 0 4-1.79 4-4v-3z'/%3E%3C/svg%3E"); }
.icon-care::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E"); }
.icon-family::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm-8 0c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm0 2c-2.33 0-7 1.17-7 3.5V20h14v-10.5C17 7.17 12.33 6 10 6H8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm-8 0c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm0 2c-2.33 0-7 1.17-7 3.5V20h14v-10.5C17 7.17 12.33 6 10 6H8z'/%3E%3C/svg%3E"); }
.icon-star::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E"); }
.icon-home::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E"); }
.icon-plan::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); }
.icon-rating::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); }
.icon-phone::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.36 11.36 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.36 11.36 0 00.57 3.58 1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.36 11.36 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.36 11.36 0 00.57 3.58 1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E"); }
.icon-location::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.icon-clock::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E"); }

/* Footer - Clean professional design */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.footer-main {
    background: var(--color-dark);
    padding: 60px 24px 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-medium);
}

.footer-col p,
.footer-col li {
    color: var(--color-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
    background: var(--color-medium);
    transform: translateY(-2px);
}

.social-whatsapp:hover { background: #25D366; }

.footer-contact-list li {
    margin-bottom: 10px;
}

.footer-contact-list strong {
    color: var(--color-white);
}

.btn-footer-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--color-medium);
    color: var(--color-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
}

.btn-footer-cta:hover {
    background: var(--color-sage);
    color: var(--color-darkest);
}

.footer-bottom {
    background: var(--color-darkest);
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-sage);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* WhatsApp FAB */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
}

.fab-whatsapp:hover { transform: scale(1.1); }

/* Scroll Section Animations */
.scroll-animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--transition-smooth);
}

.scroll-animate-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-stars {
    color: var(--color-medium);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}


.testimonial-text {
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--color-sage);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--color-darkest);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    border-color: var(--color-sage);
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--color-sage);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 24px 24px;
}

.faq-answer p {
    color: var(--color-sage);
    line-height: 1.8;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--color-darkest);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(142, 182, 155, 0.15);
    border: 1px solid var(--color-sage);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-sage);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--color-darkest);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: var(--glow-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(207, 224, 209, 0.5);
    border: 1px solid var(--color-sage);
    color: var(--color-dark);
}

.form-message.error {
    display: block;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid #ff5050;
    color: #ffaaaa;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 28px;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-darkest);
}

.blog-card p {
    color: var(--color-sage);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--color-medium);
}

/* Page Hero (inner pages) - padding handled by main-content */

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-darkest), var(--color-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: var(--color-sage);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--color-medium);
}

.breadcrumb a {
    color: var(--color-sage);
    text-decoration: none;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-darkest);
}

.about-content p {
    color: var(--color-sage);
    margin-bottom: 16px;
}

/* SEO Content Block */
.seo-content {
    padding: 40px;
    margin-bottom: 28px;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-darkest);
    margin-bottom: 16px;
}

.seo-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-sage);
    margin: 24px 0 12px;
}

.seo-content p {
    color: var(--color-sage);
    margin-bottom: 14px;
    line-height: 1.8;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.seo-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--color-sage);
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--color-sage);
    border-radius: 50%;
    top: 14px;
}

/* Areas Served */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-tag {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(142, 182, 155, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--color-sage);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.area-tag:hover {
    border-color: var(--color-sage);
    box-shadow: var(--glow-green);
}

/* CTA Section */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

.cta-section {
    text-align: center;
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 40px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-darkest);
}

.cta-box p {
    color: var(--color-sage);
    margin-bottom: 32px;
}

/* Old footer grid removed - using footer-columns */

/* Floating Action Button */
.fab-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-medium), var(--color-dark));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-strong);
    z-index: 999;
    text-decoration: none;
    animation: fabPulse 2s ease-in-out infinite;
    transition: transform 0.3s;
}

.fab-call:hover {
    transform: scale(1.1);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 110, 103, 0.3); }
    50% { box-shadow: 0 0 40px rgba(46, 110, 103, 0.5); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Map Embed */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card.featured {
    border-color: var(--color-sage);
    box-shadow: var(--glow-green);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-darkest);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sage);
    margin: 16px 0;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--color-sage);
    border-bottom: 1px solid rgba(142, 182, 155, 0.1);
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--color-sage);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1100px) {
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .blog-grid,
    .gallery-grid,
    .pricing-grid,
    .image-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #FFFFFF;
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 90px 24px 24px;
        transition: right 0.4s var(--transition-smooth);
        border-left: 1px solid var(--color-light);
        box-shadow: -4px 0 24px rgba(6,46,42,0.1);
        z-index: 9998;
    }

    .header-phone { display: none; }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .brand-logo-header {
        height: 44px;
        max-width: 165px;
    }

    .brand-logo-footer {
        height: 68px;
        max-width: 210px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .contact-grid,
    .about-grid,
    .hero-layout,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .hero-image-secondary,
    .hero-image-tertiary { display: none; }

    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .fab-call {
        bottom: 24px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .fab-whatsapp {
        bottom: 88px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    body {
        padding-bottom: 96px;
    }

    .service-card .service-body {
        padding: 20px 24px 28px;
    }

    .container,
    .container-wide,
    .hero .container-wide,
    .hero-layout {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .blog-grid,
    .gallery-grid,
    .pricing-grid,
    .image-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Background effects disabled - pure white site */

/* Quantum Grid */
.quantum-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(111, 158, 147, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 158, 147, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: quantumGridMove 20s linear infinite;
}

@keyframes quantumGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Cyber Grid Scrolling */
.cyber-grid-scroll {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(46, 110, 103, 0.04) 49px, rgba(46, 110, 103, 0.04) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(46, 110, 103, 0.04) 49px, rgba(46, 110, 103, 0.04) 50px);
    animation: cyberScroll 30s linear infinite;
    transform: perspective(500px) rotateX(60deg) scale(2);
    transform-origin: center top;
    opacity: 0.5;
}

@keyframes cyberScroll {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 500px, 500px 0; }
}

/* Volumetric Light Beams */
.volumetric-beams {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
}

.beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(46, 110, 103, 0.2), transparent);
    animation: beamSweep 8s ease-in-out infinite;
}

.beam-1 { left: 20%; animation-delay: 0s; }
.beam-2 { left: 50%; animation-delay: 2.5s; width: 3px; }
.beam-3 { left: 75%; animation-delay: 5s; }

@keyframes beamSweep {
    0%, 100% { opacity: 0; transform: scaleY(0.5) translateX(0); }
    50% { opacity: 1; transform: scaleY(1) translateX(30px); }
}

/* Holographic Data Streams */
.data-streams-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-medium), transparent);
    animation: dataStreamFlow linear infinite;
    opacity: 0.4;
}

@keyframes dataStreamFlow {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* 3D Glassmorphism Layers */
.glass-layer {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(111, 158, 147, 0.15);
    background: rgba(207, 224, 209, 0.08);
    backdrop-filter: blur(8px);
    animation: glassLayerFloat 15s ease-in-out infinite;
}

.glass-layer-1 { width: 300px; height: 300px; top: 10%; left: 5%; animation-delay: 0s; }
.glass-layer-2 { width: 200px; height: 200px; top: 60%; right: 10%; animation-delay: 5s; }
.glass-layer-3 { width: 150px; height: 150px; bottom: 20%; left: 40%; animation-delay: 10s; }

@keyframes glassLayerFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    33% { transform: translate(20px, -30px) rotate(5deg); opacity: 0.5; }
    66% { transform: translate(-15px, 20px) rotate(-3deg); opacity: 0.4; }
}

/* AI Data Pulse Network - REMOVED (no dots) */
.pulse-network, .pulse-dot { display: none !important; }

/* Holographic Dashboard Assembly */
.dashboard-assemble {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: dashboardAssemble 0.8s var(--transition-smooth) forwards;
}

@keyframes dashboardAssemble {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating UI Ecosystem */
@keyframes floatUI {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Digital Twin Interface */
.glass-card.digital-twin-active {
    box-shadow: var(--glass-shadow), 0 0 30px rgba(46, 110, 103, 0.15), inset 0 0 20px rgba(207, 224, 209, 0.2);
    border-color: var(--color-medium);
}

/* Liquid Glass Morphing - handled via --mouse-x/y in .glass-card::after */

/* Neural Network Scroll offset */
.main-content {
    transform: translateZ(0);
}

/* Contact detail strong text */
.contact-detail strong {
    color: var(--color-darkest);
}

/* Gallery overlay light theme */
.gallery-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.gallery-overlay span {
    color: var(--color-darkest);
    font-weight: 600;
}
