/* 
   SriUrjith Acupuncture Web Design System
   Theme: Nature & Holistic Wellness
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Premium Wellness (60-30-10 Rule) */
    --bg-dark: #f0f9f4;
    --bg-card: rgba(255, 255, 255, 0.82);
    --border-color: rgba(26, 92, 69, 0.08);
    --border-glow: rgba(26, 92, 69, 0.04);
    --text-primary: #1a1a1a;
    --text-secondary: #3d3d3d;
    --accent: #1a5c45;
    --accent-gold: #5db87e;
    --accent-gold-light: rgba(93, 184, 126, 0.15);
    
    /* Theme Accent Variables (Deep Jade Green) */
    --el-glow: rgba(27, 122, 94, 0.12);
    --el-grad: linear-gradient(135deg, #0f3d2e, #1b7a5e);
    --el-color: #1b7a5e;

    /* System Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: linear-gradient(180deg, #f5fbf7 0%, #e8f5ec 50%, #f0f9f4 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 18px;
}

p {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.75;
}

li {
    font-size: 1.18rem; /* Globally sized up list items */
    font-weight: 500; /* Bolder weight */
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #eaf5ee;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a9e6b;
}

/* Custom Selection */
::selection {
    background-color: var(--el-color);
    color: #fff;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f2faf5 0%, #ffffff 50%, #eef8f1 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    display: none;
}

.loader-img-logo {
    position: static;
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 25px;
    animation: loaderZoomIn 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards, pulse 2.5s ease-in-out infinite alternate 2.2s;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Sized up from 2rem */
    letter-spacing: 0.15rem;
    font-weight: 500; /* Increased from 300 */
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

.loader-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--text-secondary);
    margin-top: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

/* Keyframe Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(0.92); }
    100% { transform: scale(1.08); }
}

@keyframes loaderZoomIn {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Blur Blobs */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    transition: background 1.5s ease;
}

.blob-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #a8d5ba;
}

.blob-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #7bc5a0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 252, 248, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26, 92, 69, 0.08);
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

/* Navbar Mobile Open State Styles for Legibility */
.navbar.navbar-mobile-open {
    background: rgba(245, 252, 248, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(26, 92, 69, 0.08) !important;
}

.navbar.navbar-mobile-open .nav-brand span {
    color: var(--text-primary) !important;
    text-shadow: none !important;
}

.navbar.navbar-mobile-open .mobile-nav-toggle {
    color: var(--text-primary) !important;
    text-shadow: none !important;
}

/* Transparent navbar for home page hero */
.navbar.navbar-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar.navbar-transparent .nav-brand span,
.navbar.navbar-transparent .nav-link,
.navbar.navbar-transparent .mobile-nav-toggle {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.navbar.navbar-transparent .nav-link::after {
    background-color: #ffffff;
}
.navbar.navbar-transparent .nav-link.active {
    color: #ffffff;
}
.navbar.navbar-transparent .nav-btn {
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
}
.navbar.navbar-transparent .nav-btn:hover {
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled {
    padding: 12px 8%;
    background: rgba(245, 252, 248, 0.96);
    box-shadow: 0 4px 30px rgba(26, 92, 69, 0.06);
}
/* When scrolled, override transparent styles back to default */
.navbar.scrolled.navbar-transparent {
    background: rgba(245, 252, 248, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26, 92, 69, 0.08);
}
.navbar.scrolled.navbar-transparent .nav-brand span,
.navbar.scrolled.navbar-transparent .nav-link,
.navbar.scrolled.navbar-transparent .mobile-nav-toggle {
    color: var(--text-primary);
    text-shadow: none;
}
.navbar.scrolled.navbar-transparent .nav-link::after {
    background-color: var(--el-color);
}
.navbar.scrolled.navbar-transparent .nav-link.active {
    color: var(--text-primary);
}
.navbar.scrolled.navbar-transparent .nav-btn {
    border-color: var(--el-color);
    color: var(--text-primary);
}
.navbar.scrolled.navbar-transparent .nav-btn:hover {
    background: var(--el-color);
    color: #ffffff;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-brand .logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--el-color);
    transition: stroke 0.8s ease;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-brand span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--el-color);
    transition: width 0.3s, background-color 0.8s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-btn {
    background: var(--el-grad);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.8s ease;
    box-shadow: 0 4px 18px var(--el-glow);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.02rem;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--el-glow);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 12px 16px;
    margin-right: -10px;
    position: relative;
    z-index: 1010;
}

/* Hero Canvas Container */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left side */
    overflow: hidden;
    z-index: 2; /* Stack above background blur blobs to prevent image overlay blur */
    background-color: #0a110f; /* Dark fallback to prevent white flash before video loads */
}

/* Specific Home Hero Left Alignment Overrides */
.hero-container .hero-content {
    text-align: left;
    margin-left: 8%; /* Align with the navbar brand logo padding */
    max-width: 750px;
}

.hero-container .hero-animated-text {
    align-items: flex-start; /* Align each text line left */
}

.hero-container .hero-tagline {
    margin: 20px 0 35px 0; /* Left align margins */
}

.hero-container .hero-ctas {
    justify-content: flex-start; /* Left align buttons */
}

/* Sub-page Hero Banner (height: 30vh) */
.sub-page-hero {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 220px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    margin-top: 88px; /* Fixed navbar spacing on desktop */
}

.sub-page-hero-bg {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
    filter: brightness(0.45);
}

.sub-page-hero .hero-content {
    z-index: 5;
    text-align: center;
    position: relative;
}

.sub-page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    opacity: 0;
    animation: loopSlideFromLeft 8s ease-in-out infinite, whiteGlowPulse 4s ease-in-out infinite;
    -webkit-animation: loopSlideFromLeft 8s ease-in-out infinite, whiteGlowPulse 4s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .sub-page-hero {
        margin-top: 80px; /* Fixed navbar spacing on mobile */
        height: 25vh;
    }
    .sub-page-hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
}

/* Sub-page Hero Container */
.sub-hero-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 459;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    margin-top: 88px;
}

.sub-hero-bg {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    background-image: url('../images/services-hero-bg.png?v=35');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: #ffffff; /* Brighter white glowing color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    opacity: 0;
    animation: loopSlideFromLeft 8s ease-in-out infinite, whiteGlowPulse 4s ease-in-out infinite;
    -webkit-animation: loopSlideFromLeft 8s ease-in-out infinite, whiteGlowPulse 4s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9);
    text-align: center;
    z-index: 5;
}

@keyframes whiteGlowPulse {
    0% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, 0.95), 0 0 70px rgba(255, 255, 255, 0.85), 0 2px 15px rgba(0, 0, 0, 0.9); }
    100% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9); }
}

@-webkit-keyframes whiteGlowPulse {
    0% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, 0.95), 0 0 70px rgba(255, 255, 255, 0.85), 0 2px 15px rgba(0, 0, 0, 0.9); }
    100% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 35px rgba(255, 255, 255, 0.85), 0 0 50px rgba(255, 255, 255, 0.6), 0 2px 15px rgba(0, 0, 0, 0.9); }
}

.hero-bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
}

#hero-canvas, #nature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(242, 250, 245, 0.15) 0%, rgba(242, 250, 245, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 60px;
}

/* Hero Animated Text Structure */
.hero-animated-text {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px; /* Eliminate gap between lines */
    margin-bottom: 20px;
    perspective: 1000px;
}

.hero-animated-text div {
    margin: 0;
    padding: 0;
    line-height: 0.85; /* Tighten line height to eliminate gaps */
}

.line-left-right {
    font-size: 1.8rem;
    color: #2e8b57; /* Brand leaf green for contrast on light theme */
    font-weight: 700; /* Bolder font weight for readability */
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    opacity: 0;
    -webkit-animation: loopSlideFromLeft 8s ease-in-out infinite;
    animation: loopSlideFromLeft 8s ease-in-out infinite; /* Continuous loop slide */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: -8px; /* Negative margin to pull lines closer and remove font whitespace padding */
}

.line-back-front {
    font-size: 3.8rem;
    color: var(--text-primary); /* Deep forest green */
    font-weight: 500;
    font-style: italic;
    opacity: 0;
    -webkit-animation: loopZoomFromBack 8s ease-in-out infinite;
    animation: loopZoomFromBack 8s ease-in-out infinite; /* Continuous loop zoom */
    text-shadow: 0 2px 8px rgba(18, 53, 42, 0.12);
    margin-bottom: -6px; /* Negative margin to pull lines closer and remove font whitespace padding */
}

.line-bottom-up {
    font-size: 5.2rem;
    color: var(--el-color); /* Radiant forest green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    opacity: 0;
    -webkit-animation: loopSlideFromBottom 8s ease-in-out infinite, greenGlowPulse 4s ease-in-out infinite 3.5s;
    animation: loopSlideFromBottom 8s ease-in-out infinite, greenGlowPulse 4s ease-in-out infinite 3.5s; /* Continuous loop slide + glow pulse */
    text-shadow: 0 0 30px rgba(27, 122, 94, 0.3), 0 2px 10px rgba(18, 53, 42, 0.25);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-primary);
    max-width: 750px;
    margin: 20px 0 35px 0;
    font-weight: 400; /* slightly heavier for readability */
    line-height: 1.6;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInTagline 1.2s ease forwards;
    animation: fadeInTagline 1.2s ease forwards;
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s; /* Continuous overlap */
    text-shadow: 0 1px 4px rgba(18, 53, 42, 0.15);
}

.hero-ctas {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    opacity: 0;
    -webkit-animation: fadeInCTAs 1.0s ease forwards;
    animation: fadeInCTAs 1.0s ease forwards;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s; /* Continuous overlap */
}

/* Keyframe Animations for Hero Text */
@-webkit-keyframes slideFromLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes zoomFromBack {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5) translateZ(-150px);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0);
    }
}

@keyframes zoomFromBack {
    0% {
        opacity: 0;
        transform: scale(0.5) translateZ(-150px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

@-webkit-keyframes slideFromBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInTagline {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInTagline {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInCTAs {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInCTAs {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Ambient Continuous Looping Text transitions */
@keyframes loopSlideFromLeft {
    0% { opacity: 0; transform: translateX(-150px); }
    3% { opacity: 0; transform: translateX(-150px); }
    12% { opacity: 1; transform: translateX(0); }
    80% { opacity: 1; transform: translateX(0); }
    87% { opacity: 0; transform: translateX(150px); }
    100% { opacity: 0; transform: translateX(-150px); }
}

@-webkit-keyframes loopSlideFromLeft {
    0% { opacity: 0; -webkit-transform: translateX(-150px); }
    3% { opacity: 0; -webkit-transform: translateX(-150px); }
    12% { opacity: 1; -webkit-transform: translateX(0); }
    80% { opacity: 1; -webkit-transform: translateX(0); }
    87% { opacity: 0; -webkit-transform: translateX(150px); }
    100% { opacity: 0; -webkit-transform: translateX(-150px); }
}

@keyframes loopZoomFromBack {
    0% { opacity: 0; transform: scale(0.5) translateZ(-150px); }
    12% { opacity: 0; transform: scale(0.5) translateZ(-150px); }
    22% { opacity: 1; transform: scale(1) translateZ(0); }
    80% { opacity: 1; transform: scale(1) translateZ(0); }
    87% { opacity: 0; transform: scale(1.3) translateZ(100px); }
    100% { opacity: 0; transform: scale(0.5) translateZ(-150px); }
}

@-webkit-keyframes loopZoomFromBack {
    0% { opacity: 0; -webkit-transform: scale(0.5) translateZ(-150px); }
    12% { opacity: 0; -webkit-transform: scale(0.5) translateZ(-150px); }
    22% { opacity: 1; -webkit-transform: scale(1) translateZ(0); }
    80% { opacity: 1; -webkit-transform: scale(1) translateZ(0); }
    87% { opacity: 0; -webkit-transform: scale(1.3) translateZ(100px); }
    100% { opacity: 0; -webkit-transform: scale(0.5) translateZ(-150px); }
}

@keyframes loopSlideFromBottom {
    0% { opacity: 0; transform: translateY(70px); }
    22% { opacity: 0; transform: translateY(70px); }
    32% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    87% { opacity: 0; transform: translateY(-70px); }
    100% { opacity: 0; transform: translateY(70px); }
}

@-webkit-keyframes loopSlideFromBottom {
    0% { opacity: 0; -webkit-transform: translateY(70px); }
    22% { opacity: 0; -webkit-transform: translateY(70px); }
    32% { opacity: 1; -webkit-transform: translateY(0); }
    80% { opacity: 1; -webkit-transform: translateY(0); }
    87% { opacity: 0; -webkit-transform: translateY(-70px); }
    100% { opacity: 0; -webkit-transform: translateY(70px); }
}

@keyframes greenGlowPulse {
    0% { text-shadow: 0 0 30px rgba(155, 240, 155, 0.5), 0 2px 15px rgba(0, 0, 0, 0.9); }
    50% { text-shadow: 0 0 45px rgba(155, 240, 155, 0.8), 0 2px 15px rgba(0, 0, 0, 0.9); }
    100% { text-shadow: 0 0 30px rgba(155, 240, 155, 0.5), 0 2px 15px rgba(0, 0, 0, 0.9); }
}

@-webkit-keyframes greenGlowPulse {
    0% { text-shadow: 0 0 30px rgba(155, 240, 155, 0.5), 0 2px 15px rgba(0, 0, 0, 0.9); }
    50% { text-shadow: 0 0 45px rgba(155, 240, 155, 0.8), 0 2px 15px rgba(0, 0, 0, 0.9); }
    100% { text-shadow: 0 0 30px rgba(155, 240, 155, 0.5), 0 2px 15px rgba(0, 0, 0, 0.9); }
}

.btn-primary {
    background: var(--el-grad);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--el-glow);
    transition: transform 0.3s, box-shadow 0.3s, background 0.8s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--el-glow);
}

.btn-secondary {
    background: rgba(18, 53, 42, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(18, 53, 42, 0.25);
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(18, 53, 42, 0.12);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}




/* Section Layouts */
.section {
    padding: 60px 8%;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-tag {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: var(--el-color);
    font-weight: 700;
    transition: all 0.8s ease;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(93, 184, 126, 0.12);
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(93, 184, 126, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 450;
    margin-top: 15px;
}

/* Glassmorphic Cards Container */
.glass-container {
    background: var(--bg-card);
    border: 1px solid rgba(26, 92, 69, 0.06);
    border-radius: 24px;
    padding: 55px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(26, 92, 69, 0.04), 0 1px 3px rgba(26, 92, 69, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.4s ease;
}

.glass-container:hover {
    box-shadow: 0 25px 70px rgba(26, 92, 69, 0.06), 0 1px 3px rgba(26, 92, 69, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Philosophy Content */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.philosophy-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 450;
}

.philosophy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.ph-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ph-feat svg {
    width: 24px;
    height: 24px;
    stroke: var(--el-color);
    flex-shrink: 0;
    transition: stroke 0.8s ease;
}

.ph-feat div h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.ph-feat div p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.philosophy-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1; /* Keep perfect square to show the image fully without cropping */
    box-shadow: 0 15px 40px rgba(18, 53, 42, 0.08);
    border: 1px solid var(--border-color);
}

.philosophy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.philosophy-image-wrap:hover .philosophy-img {
    transform: scale(1.05);
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 53, 42, 0.92), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.philosophy-overlay-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.3;
}


/* 3D Tilt Cards for Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.card-3d-wrap {
    height: 100%;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(26, 92, 69, 0.08);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background-color 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26, 92, 69, 0.04);
    position: relative;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 122, 94, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(26, 92, 69, 0.08), 0 0 0 1px var(--accent-gold-light);
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.92);
}

.service-card:hover::before {
    opacity: 1;
}

.sc-image-wrap {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.service-card:hover .sc-image-wrap {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(18, 53, 42, 0.08);
    border-color: var(--el-color);
}

.sc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .sc-image {
    transform: scale(1.08); /* Clean professional zoom transition */
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
    letter-spacing: -0.01rem;
}

.service-card:hover h3 {
    color: var(--el-color); /* Light up text on hover */
}

.service-card ul, .service-card p {
    list-style: none;
    margin: 0;
    flex: 1;
}

.service-card-desc {
    font-size: 1rem !important;
    font-weight: 300 !important;
    color: var(--text-secondary) !important;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
    font-weight: 400;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--el-color);
    transition: background-color 0.8s ease, transform 0.3s ease;
}

.service-card:hover li::before {
    transform: scale(1.3);
    background-color: var(--el-color);
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--el-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.sc-btn:hover {
    border-bottom-color: var(--el-color);
}

.service-card:hover .sc-btn {
    color: var(--text-primary);
    gap: 14px;
}

.sc-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.service-card:hover .sc-btn svg {
    transform: translateX(4px);
}


/* About Page Content */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--el-color) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 1;
    filter: blur(20px);
}

.about-img-container {
    width: 100%;
    height: 500px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: morphCircle 8s ease-in-out infinite alternate;
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morphCircle {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    }
    100% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.15rem; /* Sized up description */
    font-weight: 450;
}

.about-philosophy {
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 15px;
    margin: 40px auto 0;
    max-width: 90%;
    position: relative;
}

.about-philosophy blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.6;
}

.about-philosophy cite {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: var(--text-secondary);
    font-style: normal;
    display: block;
    text-align: center;
}


/* Blog Page Content */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(18, 53, 42, 0.04);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--el-color);
    box-shadow: 0 20px 50px rgba(18, 53, 42, 0.10), 0 0 20px var(--el-glow);
}

.blog-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(197, 165, 114, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.blog-title:hover {
    color: var(--el-color);
}

.blog-excerpt {
    font-size: 1.1rem; /* Sized up */
    color: var(--text-secondary);
    font-weight: 500; /* Increased */
    margin-bottom: 20px;
    line-height: 1.65;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--el-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.blog-card:hover .blog-link {
    gap: 12px;
}

.blog-newsletter-content {
    text-align: center;
    padding: 60px 40px;
}

.blog-newsletter-title {
    font-size: 2.2rem;
    line-height: 1.4;
    display: block;
    margin-top: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-newsletter-title:hover {
    color: var(--el-color);
}

.blog-btn-wrap {
    margin-top: 25px;
}



/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.booking-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 45px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-sub {
    color: var(--text-secondary);
    font-size: 1.1rem; /* Sized up */
    margin-bottom: 35px;
    font-weight: 500; /* Increased */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.form-input {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(18, 53, 42, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: rgba(18, 53, 42, 0.45);
}

.form-input:focus {
    border-color: var(--el-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px var(--el-glow);
}

.form-input:focus + .form-label {
    color: var(--el-color);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e6055' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

select.form-input option {
    background: #faf8f4;
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

/* Contact Info Column */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 53, 42, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--el-color);
    transition: stroke 0.8s ease;
}

.info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-details p {
    font-size: 1.1rem; /* Sized up text */
    color: var(--text-secondary);
    font-weight: 450;
}

.info-details a {
    color: var(--el-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-details a:hover {
    color: var(--text-primary);
}

/* Static Map Placeholder */
.map-placeholder {
    height: 250px;
    background: radial-gradient(circle, rgba(250, 248, 244, 0.9) 0%, rgba(242, 239, 232, 0.95) 100%);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 92, 69, 0.04);
}

.map-glow-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(18, 53, 42, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-pulse {
    width: 16px;
    height: 16px;
    background-color: var(--el-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--el-color);
    position: relative;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--el-color);
    animation: markerPulseRing 1.8s infinite ease-out;
}

@keyframes markerPulseRing {
    0% { transform: scale(0.3); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.marker-label {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(244, 250, 246, 0.95);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 10px;
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

/* Call booking CTA Section */
.call-cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(197, 165, 114, 0.06) 50%, transparent 100%);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 248, 244, 0.9) 100%);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(26, 92, 69, 0.05), 0 1px 3px rgba(197, 165, 114, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--el-glow) 0%, transparent 50%);
    opacity: 0.4;
    pointer-events: none;
    transition: background 1.5s ease;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600; /* Increased */
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}


.cta-desc {
    color: var(--text-secondary);
    font-size: 1.25rem; /* Sized up */
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500; /* Increased */
    position: relative;
    z-index: 2;
}

.cta-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}


/* Footer styling */
.footer {
    background: #1B4D3E;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 60px 8% 30px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-about .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #ffffff;
}

.footer-about .logo-icon {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    transition: stroke 0.8s ease;
}

.footer-about span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: #ffffff;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0rem;
    font-weight: 350;
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    flex-shrink: 0;
    margin-top: 3px;
    transition: stroke 0.8s ease;
}

.footer-contact-item div p {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer-contact-item div p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item div p a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

.designer-credit a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-decoration 0.3s;
}

.designer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B4D3E;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* WhatsApp Floating Widget */
#wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#wa-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#wa-float-btn:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

#wa-float-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

#wa-popup {
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(18, 53, 42, 0.08);
    margin-bottom: 15px;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#wa-popup.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-header {
    background: #1b7a5e;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.wa-header strong {
    font-size: 1rem;
    font-weight: 600;
}

#wa-close {
    font-size: 1.4rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

#wa-close:hover {
    color: #fff;
}

.wa-body {
    padding: 20px;
}

.wa-body p {
    font-size: 1.05rem; /* Sized up text */
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 450;
    line-height: 1.45;
}

.wa-chat-btn {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.wa-chat-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}


/* Form Success Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 53, 42, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 50px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(18, 53, 42, 0.08), 0 0 30px var(--el-glow);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(92, 184, 92, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(92, 184, 92, 0.3);
}

.modal-icon svg {
    width: 36px;
    height: 36px;
    stroke: #5cb85c;
}

.modal h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.modal p {
    color: var(--text-secondary);
    font-size: 1.15rem; /* Sized up text */
    margin-bottom: 30px;
    font-weight: 450;
    line-height: 1.6;
}


/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 5%;
    }
    .line-left-right {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }
    .services-hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.3rem;
    }
    .line-back-front {
        font-size: 3.0rem;
    }
    .line-bottom-up {
        font-size: 4.2rem;
    }
    .section {
        padding: 80px 5%;
    }
    .philosophy-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .philosophy-image-wrap {
        height: auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .sub-hero-container {
        margin-top: 80px;
    }
    .hero-container .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }
    .hero-container .btn-primary, .hero-container .btn-secondary {
        padding: 14px 20px;
        font-size: 1.15rem;
        text-align: center;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .philosophy-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .blog-newsletter-content {
        padding: 40px 20px;
    }
    .blog-newsletter-title {
        font-size: 1.5rem;
    }
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(245, 252, 248, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        transition: left 0.4s ease;
        border-top: 1px solid rgba(26, 92, 69, 0.08);
        padding: 30px 40px;
        box-shadow: 0 10px 30px rgba(26, 92, 69, 0.04);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1005;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .line-left-right {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
        margin-bottom: -4px;
    }
    .services-hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.2rem;
    }
    
    .line-back-front {
        font-size: 2.2rem;
        margin-bottom: -3px;
    }
    
    .line-bottom-up {
        font-size: 3.0rem;
        letter-spacing: 0.1rem;
    }

    .hero-container .hero-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 100%;
    }

    .hero-tagline {
        font-size: 1.0rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .footer-divider {
        display: none;
    }

    /* Responsive Service Cards Mobile */
    .service-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 15px 0;
        text-align: center;
        padding: 30px 20px;
    }
    .sc-image-wrap {
        grid-column: 1;
        grid-row: 1;
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }
    .service-card h3 {
        grid-column: 1;
        grid-row: 2;
        align-self: center;
        font-size: 1.4rem;
    }
    .service-card ul, .service-card p, .service-card-desc {
        grid-column: 1;
        grid-row: 3;
        align-self: center;
        text-align: left;
        margin: 5px auto;
    }
    .service-card .sc-btn {
        grid-column: 1;
        grid-row: 4;
        align-self: center;
        margin: 5px auto 0;
    }

    /* Mobile nav-menu link and button styling adjustments */
    .nav-menu .nav-link {
        color: var(--text-primary) !important;
        font-weight: 600;
        font-size: 1.25rem !important;
        text-shadow: none !important;
        transition: color 0.3s;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--el-color) !important;
    }
    
    .nav-menu .nav-link::after {
        display: none !important;
    }
    
    .nav-menu .nav-btn {
        width: 80% !important;
        margin-top: 10px !important;
        padding: 14px 24px !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        background: var(--el-grad) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 30px !important;
        display: block !important;
    }
    
    .nav-brand span {
        font-size: 1.25rem !important;
    }
    
    .logo-img {
        height: 38px !important;
    }
    
    /* Reposition back-to-top on mobile to prevent overlapping WhatsApp widget */
    .back-to-top {
        bottom: 30px !important;
        left: 30px !important;
        right: auto !important;
    }
}

.four-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.list-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}

.list-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.list-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(18, 53, 42, 0.1);
    padding-bottom: 12px;
}

.list-panel ul {
    list-style: none;
}

.list-panel li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.list-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--el-color);
    transition: background-color 0.8s ease;
}

/* Home Page Hero Section Overrides - Reverting overlay and text to original dark contrast styling */
.hero-container .hero-overlay {
    background: linear-gradient(to bottom, rgba(10, 17, 15, 0.15) 0%, rgba(10, 17, 15, 0.65) 100%);
}

.hero-container .line-left-right {
    color: #7ecfa0; /* Brand leaf green */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-container .line-back-front {
    color: #ffffff; /* Pure white */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-container .line-bottom-up {
    color: #9bf09b; /* Radiant light sprout green */
    text-shadow: 0 0 30px rgba(155, 240, 155, 0.5), 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-container .hero-tagline {
    color: #ffffff; /* Legible white text on dark overlay */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-container .btn-primary, .hero-container .btn-secondary {
    padding: 18px 40px; /* Increased button sizing in hero */
    font-size: 1.35rem; /* Larger readable button text in hero */
    font-weight: 600;
}

.hero-container .btn-primary {
    background: linear-gradient(135deg, #184c3e, #9bf09b);
    box-shadow: 0 4px 15px rgba(155, 240, 155, 0.45);
    color: #fff;
}

.hero-container .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(155, 240, 155, 0.45);
}

.hero-container .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-container .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
}

/* About Page Image Slider & Vision Grid */
.about-vision-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-vision-row:last-of-type {
    margin-bottom: 0;
}

.about-vision-row:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image-column {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    justify-content: center;
}

.about-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image-card {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(18, 53, 42, 0.10);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(18, 53, 42, 0.15);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.vision-feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
}

.vision-feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--el-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.vision-feature-item span {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-vision-row,
    .about-vision-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        align-items: center;
        text-align: center;
    }
    .about-image-column {
        flex: 0 0 100%;
        max-width: 420px;
        width: 100%;
    }
    .about-text-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .vision-feature-list {
        align-items: center;
    }
    .vision-feature-item {
        justify-content: center;
        text-align: center;
    }
}

/* --- Modern Scroll Reveal System --- */
.reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

/* Base direction offsets */
.reveal-b2u {
    transform: translateY(50px);
}

.reveal-l2r {
    transform: translateX(-60px);
}

.reveal-r2l {
    transform: translateX(60px);
}

.reveal:not(.reveal-b2u):not(.reveal-l2r):not(.reveal-r2l) {
    transform: translateY(30px);
}

/* Custom 2.5s duration classes */
.reveal-duration-25 {
    transition-duration: 2.5s !important;
}

/* Active states toggled on viewport intersect */
.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ============================================
   NEW PREMIUM COMPONENTS
   ============================================ */

/* --- Gold Accent Divider --- */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 30px;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.gold-divider .diamond {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    border-radius: 2px;
}

/* --- Stats Counter Section --- */
.stats-section {
    padding: 40px 8%;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(197, 165, 114, 0.1);
    box-shadow: 0 8px 30px rgba(26, 92, 69, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 92, 69, 0.06);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--accent-gold-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 1.8;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-number .suffix {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-card {
        padding: 30px 15px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* --- How It Works Section --- */
.how-it-works-section {
    padding: 60px 8%;
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-gold), transparent);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3d2e, #1b7a5e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(27, 122, 94, 0.25);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    opacity: 0.4;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps-grid::before {
        display: none;
    }
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 60px 8%;
    position: relative;
    z-index: 10;
}

.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
    background: var(--bg-card);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 8px 30px rgba(26, 92, 69, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 92, 69, 0.06);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    z-index: 12;
    position: relative;
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid rgba(197, 165, 114, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(197, 165, 114, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 5px;
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3d2e, #1b7a5e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-condition {
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--el-grad);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(27, 122, 94, 0.25);
    pointer-events: auto;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 6px 25px rgba(27, 122, 94, 0.35);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* --- Staggered Card Reveal --- */
.stagger-children > * {
    transition-delay: calc(var(--stagger-index, 0) * 100ms) !important;
}

/* --- FAQ Accordion --- */
.faq-section {
    margin-bottom: 50px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: rgba(197, 165, 114, 0.04);
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease, background 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--accent-gold);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 2.5;
}

.faq-item.active .faq-toggle svg {
    stroke: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Working Hours Badge --- */
.working-hours {
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.working-hours h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.hours-row .day {
    font-weight: 500;
}

.hours-row .time {
    color: rgba(255, 255, 255, 0.7);
}

.hours-row.closed .time {
    color: rgba(255, 120, 120, 0.7);
}

/* --- Trust Badges (Hero) --- */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    opacity: 0;
    animation: fadeInCTAs 1.0s ease forwards;
    animation-delay: 1.8s;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
}

.trust-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .trust-separator {
        display: none;
    }
}

/* --- View All Services Button --- */
.view-all-wrap {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    border-radius: 40px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.03rem;
    transition: all 0.4s ease;
}

.btn-view-all:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.25);
}

.btn-view-all svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(4px);
}

/* --- CTA Title Gold Span --- */
.cta-title span {
    font-weight: 700;
    color: var(--accent-gold);
    transition: color 0.8s ease;
}

/* --- Footer Working Hours in Contact column --- */
.footer-contact .working-hours {
    margin-top: 20px;
}
