/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables - Spa & Wellness Theme */
    --primary-color: #3a4f41;          /* Deep sage green */
    --secondary-color: #a67c52;        /* Warm terracotta/caramel */
    --accent-color: #c9a77c;           /* Soft gold/sand */
    --tertiary-color: #7d9d8e;         /* Muted sage */
    --light-bg: #f7f5f2;               /* Warm off-white */
    --cream-bg: #faf8f5;               /* Lighter cream */
    --white: #ffffff;
    --text-dark: #2d2d2d;              /* Soft black */
    --text-light: #6b6b6b;             /* Medium gray */
    --text-muted: #9a9a9a;             /* Light gray */
    --border-color: #e5e1db;           /* Warm border */
    --overlay-dark: rgba(58, 79, 65, 0.65);  /* Sage overlay */
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 100px);
    --container-padding: clamp(20px, 5vw, 40px);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.section-description {
    font-size: clamp(0.95rem, 1.8vw, 1.0625rem);
    color: var(--text-light);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem clamp(1.5rem, 5vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* Left Navigation */
.nav-left {
    justify-self: start;
}

.nav-menu-left {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    list-style: none;
}

.nav-menu-left li a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-menu-left li a:hover {
    color: var(--secondary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    width: 10px;
    height: 6px;
    margin-left: 0.35rem;
    transition: var(--transition-smooth);
    opacity: 0.7;
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-arrow {
    opacity: 1;
    transform: translateY(2px);
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(58, 79, 65, 0.15);
    min-width: 250px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    border: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0.01em;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    padding-left: 1.75rem;
}

/* Center Logo */
.logo-center {
    justify-self: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-icon {
    width: 55px;
    height: 55px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-icon {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: lowercase;
}

/* Right Navigation */
.nav-right {
    justify-self: end;
}

.book-session-btn {
    padding: 0.85rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(58, 79, 65, 0.15);
}

.book-session-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 79, 65, 0.25);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: clamp(1.5rem, 5vw, 3rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    display: block;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Mobile Menu Scrollbar Styling */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--tertiary-color);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.mobile-nav {
    list-style: none;
    padding: 2rem clamp(1.5rem, 5vw, 3rem);
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.mobile-nav a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.mobile-book {
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-trigger {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-arrow {
    width: 12px;
    height: 8px;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--light-bg);
    margin-top: 0.5rem;
    border-radius: var(--radius-md);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.mobile-submenu a:hover {
    background-color: var(--cream-bg);
    color: var(--secondary-color) !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&h=1080&fit=crop&q=85') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(58, 79, 65, 0.5) 0%,
        rgba(125, 157, 142, 0.4) 50%,
        rgba(166, 124, 82, 0.45) 100%
    );
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 950px;
    padding: 0 var(--container-padding);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 3rem;
    opacity: 0.98;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.01em;
}

.hero-btn {
    padding: 1.1rem 2.75rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* ===================================
   Trusted Service Section
   =================================== */
.trusted-service {
    padding: calc(var(--section-padding) * 1.2) 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f3ef 100%);
    position: relative;
    overflow: hidden;
}

.trusted-service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trusted-service-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.trusted-left {
    position: relative;
    padding: 2rem 0;
}

.years-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.years-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
    position: relative;
}

.star-accent {
    position: absolute;
    width: 35px;
    height: 35px;
    top: -10px;
    right: -25px;
    color: var(--accent-color);
    opacity: 0.7;
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 1;
    }
}

.trusted-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    margin: 0;
}

.trusted-right {
    padding: 2rem 0;
}

.trusted-intro {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.trusted-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.trusted-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 1.75rem;
}

/* ===================================
   Self Care Club Section
   =================================== */
.self-care-club {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    padding: 0;
}

.club-container {
    max-width: 100%;
    position: relative;
}

.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
}

.club-text-wrapper {
    padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.club-title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
}

.title-left {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    display: block;
    line-height: 1;
    letter-spacing: 0.02em;
    position: relative;
    left: -10%;
    margin-bottom: 0.5rem;
}

.title-right {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    display: block;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: right;
    position: relative;
    right: -10%;
}

.club-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    text-align: center;
}

.club-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    align-self: center;
    text-decoration: none;
}

.club-cta-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.club-image {
    position: relative;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s ease;
}

.club-image:hover img {
    transform: scale(1.05);
}

/* Self Care Club Responsive */
@media (max-width: 968px) {
    .club-content {
        grid-template-columns: 1fr;
    }
    
    .club-text-wrapper {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }
    
    .club-image {
        height: 350px;
    }
    
    .title-left,
    .title-right {
        left: 0;
        right: 0;
        text-align: center;
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 480px) {
    .club-text-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .club-title {
        margin-bottom: 2rem;
    }
    
    .title-left,
    .title-right {
        font-size: 1.75rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    .club-benefits {
        margin-bottom: 2rem;
    }
    
    .club-cta-btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }
    
    .club-image {
        height: 250px;
    }
}

/* ===================================
   About Preview Section
   =================================== */
.about-preview {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.about-preview-text h2 {
    margin-bottom: 2rem;
}

.about-preview-intro {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-preview-description {
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.2);
}

.learn-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
}

.about-preview-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(58, 79, 65, 0.12);
}

/* ===================================
   Guiding Principle Section
   =================================== */
.guiding-principle {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.principle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.principle-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(58, 79, 65, 0.12);
}

.principle-text {
    padding: 2rem 0;
}

.principle-description {
    margin-bottom: 2.5rem;
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.principle-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.list-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.principle-list strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.principle-list p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(58, 79, 65, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(58, 79, 65, 0.15);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--primary-color);
    margin: 2rem 2rem 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 2rem 1.5rem;
}

.service-features {
    margin: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 0.5rem;
}

.service-btn {
    width: calc(100% - 4rem);
    margin: 2rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(58, 79, 65, 0.2);
    transition: var(--transition-smooth);
}

.service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(166, 124, 82, 0.3);
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: var(--section-padding) 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.why-choose .section-title {
    color: var(--white);
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1.1rem 2.75rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--light-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(58, 79, 65, 0.08);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.stars {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-style: italic;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active,
.dot:hover {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 167, 124, 0.1);
}

.submit-btn {
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.2);
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
}

/* ===================================
   Acknowledgment Section
   =================================== */
.acknowledgment {
    padding: calc(var(--section-padding) * 1.1) 0;
    background: linear-gradient(
        135deg,
        rgba(58, 79, 65, 0.88) 0%,
        rgba(125, 157, 142, 0.85) 100%
    ), 
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=700&fit=crop&q=85') center/cover;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.acknowledgment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(58, 79, 65, 0.3) 100%
    );
    pointer-events: none;
}

.acknowledgment .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.acknowledgment-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.9vw, 1.1rem);
    line-height: 1.95;
    text-align: center;
    color: rgba(255, 255, 255, 0.96);
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #2a3a30 0%, #1e2922 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    color: var(--accent-color);
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--accent-color);
}

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

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Force hide mobile menu at desktop sizes */
@media (min-width: 969px) {
    .mobile-menu {
        display: none !important;
        max-height: 0 !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-left,
    .nav-right {
        display: block !important;
    }
    
    .header-content {
        grid-template-columns: 1fr auto 1fr !important;
    }
}

@media (max-width: 1200px) {
    .nav-menu-left {
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .nav-menu-left li a {
        font-size: 0.8rem;
    }
    
    .book-session-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Better spacing for tablets - Images above text */
    .about-hero-content,
    .story-content,
    .apart-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .about-hero-text {
        order: 2 !important;
        padding: 0;
    }
    
    .about-hero-image {
        order: 1 !important;
        margin-bottom: 1rem;
    }
    
    .about-hero-image img {
        height: 280px;
        width: 100%;
    }
    
    .story-image {
        order: 1 !important;
        margin-bottom: 1rem;
    }
    
    .story-text {
        order: 2 !important;
        padding: 0;
    }
    
    .story-image img {
        height: 280px;
        width: 100%;
    }
    
    .about-preview-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-preview-text {
        order: 2 !important;
    }
    
    .about-preview-image {
        order: 1 !important;
    }
    
    .about-preview-image img {
        height: 350px;
        width: 100%;
    }
    
    .apart-text {
        order: 2 !important;
        padding: 0;
    }
    
    .apart-image {
        order: 1 !important;
        margin-bottom: 1rem;
    }
    
    .apart-image img {
        height: 380px;
        width: 100%;
    }
    
    .principle-image img {
        height: 320px;
    }
    
    /* Text adjustments */
    .page-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    /* Better line heights and spacing for readability */
    .about-intro,
    .about-preview-intro,
    .trusted-intro {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .about-description,
    .about-preview-description,
    .trusted-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }
    
    /* Cards and spacing */
    .philosophy-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .cert-item {
        padding: 2rem 1.5rem;
    }
    
    /* Section padding adjustments */
    .about-hero,
    .our-story,
    .philosophy-section,
    .team-section,
    .sets-apart-section,
    .expectations-section,
    .certifications-section,
    .about-preview,
    .guiding-principle {
        padding: 3.5rem 0;
    }
}

@media (max-width: 968px) {
    /* Header Responsive */
    .header-content {
        grid-template-columns: 1fr;
        position: relative;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .logo-center {
        justify-self: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop dropdowns on mobile */
    .dropdown-menu {
        display: none !important;
    }
    
    .trusted-service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .trusted-left {
        padding: 1rem 0;
    }
    
    .trusted-tagline {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent-color);
        padding-top: 1.5rem;
    }
    
    .principle-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .principle-image img {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* About Preview Section Responsive */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-preview-image img {
        height: 450px;
    }
    
    /* Location Page Responsive */
    .location-hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }
    
    .location-hero-logo {
        order: 1 !important;
    }
    
    .location-hero-text {
        order: 2 !important;
    }
    
    .location-logo-icon {
        max-width: 250px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        padding: 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
    
    /* Service Template Page Responsive */
    .demo-notice-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .demo-text h3 {
        font-size: 1.3rem;
    }
    
    .demo-text p {
        font-size: 0.95rem;
    }
    
    .service-hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2.5rem;
    }
    
    .service-hero-image {
        order: 1 !important;
    }
    
    .service-hero-text {
        order: 2 !important;
    }
    
    .service-hero-image img {
        height: 350px;
    }
    
    .service-pricing {
        flex-wrap: wrap;
    }
    
    .expectations-timeline {
        padding: 0 1rem;
    }
    
    .timeline-step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.15rem;
    }
    
    .feature-item {
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        text-align: center;
    }
    
    /* About Page Responsive */
    .about-hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }
    
    .about-hero-text {
        order: 2;
    }
    
    .about-hero-image {
        order: 1;
    }
    
    .about-hero-image img {
        height: 350px;
    }
    
    .story-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image img {
        height: 350px;
    }
    
    .apart-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }
    
    .apart-text {
        order: 2;
    }
    
    .apart-image {
        order: 1;
    }
    
    .apart-image img {
        height: 400px;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-main {
        font-size: 1.25rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    /* Main Page - Smaller images for mobile */
    .principle-image img {
        height: 280px;
    }
    
    .about-preview-image img {
        height: 300px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* About Page - Smaller images and better spacing - Image above text */
    .about-hero-content,
    .story-content,
    .apart-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .about-preview-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-preview-text {
        order: 2 !important;
    }
    
    .about-preview-image {
        order: 1 !important;
    }
    
    .about-hero-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .about-hero-image {
        order: 1 !important;
        margin-bottom: 0.5rem;
    }
    
    .about-hero-image img {
        height: 240px;
        width: 100%;
    }
    
    .story-image {
        order: 1 !important;
        margin-bottom: 0.5rem;
    }
    
    .story-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .story-image img {
        height: 240px;
        width: 100%;
    }
    
    .apart-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .apart-image {
        order: 1 !important;
        margin-bottom: 0.5rem;
    }
    
    .apart-image img {
        height: 280px;
        width: 100%;
    }
    
    .member-image {
        height: 240px;
    }
    
    /* Better text sizing for small screens */
    .page-title {
        font-size: 2.25rem;
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .about-intro,
    .about-preview-intro {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    
    .about-description,
    .about-preview-description {
        font-size: 0.93rem;
        line-height: 1.7;
    }
    
    .story-text p,
    .apart-item p {
        font-size: 0.93rem;
        line-height: 1.7;
    }
    
    .apart-item h4 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }
    
    /* Timeline adjustments */
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.35rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    /* Service cards optimization */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.75rem;
        margin: 1.5rem 1.5rem 1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin: 0 1.5rem 1rem;
    }
    
    .service-btn {
        margin: 1.5rem;
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    /* Reduce section padding on small screens */
    .about-hero,
    .our-story,
    .philosophy-section,
    .team-section,
    .sets-apart-section,
    .expectations-section,
    .certifications-section,
    .about-preview,
    .guiding-principle,
    .trusted-service,
    .location-hero,
    .contact-info-section,
    .location-services-section,
    .map-section,
    .location-faq-section,
    .location-testimonials {
        padding: 2.5rem 0;
    }
    
    /* Location Page - Fix side-by-side issues */
    .location-hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .location-hero-logo {
        order: 1 !important;
    }
    
    .location-hero-text {
        order: 2 !important;
    }
    
    .location-logo-icon {
        max-width: 200px;
    }
    
    .location-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .location-description,
    .location-details {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .location-cta-btn {
        padding: 0.95rem 2.25rem;
        font-size: 0.95rem;
    }
    
    .contact-info-grid {
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .service-categories {
        gap: 1.5rem;
    }
    
    .service-category {
        padding: 2rem 1.5rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-box {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .directions-info {
        padding: 2rem 1.5rem;
    }
    
    .faq-accordion {
        margin-top: 2rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    /* Better button sizing */
    .learn-more-btn,
    .hero-btn,
    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Landscape Orientation for Mobile/Tablet */
@media (max-width: 968px) and (orientation: landscape) {
    .header-content {
        padding: 0.75rem clamp(1rem, 5vw, 2rem);
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-main {
        font-size: 1.25rem;
    }
    
    .hero {
        min-height: 500px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Even smaller images for tiny screens - Image above text */
    .about-hero-content,
    .story-content,
    .apart-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }
    
    .about-preview-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-preview-text {
        order: 2 !important;
    }
    
    .about-preview-image {
        order: 1 !important;
    }
    
    .about-hero-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .about-hero-image {
        order: 1 !important;
        margin-bottom: 0.75rem;
    }
    
    .about-hero-image img {
        height: 200px;
        width: 100%;
    }
    
    .story-image {
        order: 1 !important;
        margin-bottom: 0.75rem;
    }
    
    .story-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .story-image img {
        height: 200px;
        width: 100%;
    }
    
    .about-preview-image img {
        height: 220px;
        width: 100%;
    }
    
    .apart-text {
        order: 2 !important;
        padding: 0 !important;
    }
    
    .apart-image {
        order: 1 !important;
        margin-bottom: 0.75rem;
    }
    
    .apart-image img {
        height: 240px;
        width: 100%;
    }
    
    .member-image {
        height: 200px;
    }
    
    .principle-image img {
        height: 200px;
        width: 100%;
    }
    
    /* Text adjustments */
    .page-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .about-intro,
    .about-preview-intro,
    .trusted-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.9rem;
    }
    
    .about-description,
    .about-preview-description,
    .trusted-description {
        font-size: 0.87rem;
        line-height: 1.65;
    }
    
    .story-text p,
    .apart-item p {
        font-size: 0.87rem;
        line-height: 1.65;
        margin-bottom: 0.9rem;
    }
    
    .apart-item h4 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    .member-specialty,
    .member-title {
        font-size: 0.87rem;
    }
    
    /* Padding adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .philosophy-card,
    .team-member,
    .cert-item {
        padding: 1.5rem 1rem;
    }
    
    /* Reduce margins between sections */
    .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .philosophy-grid,
    .team-grid,
    .cert-grid {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }
    
    .service-categories {
        margin: 1.5rem 0;
    }
    
    .contact-info-grid {
        margin-top: 1.5rem;
    }
    
    /* Reduce spacing between cards */
    .service-card,
    .contact-info-card,
    .testimonial-box {
        margin-bottom: 1.5rem;
    }
    
    /* Service Template Page - Mobile */
    .demo-notice {
        padding: 1.25rem 0;
    }
    
    .demo-text h3 {
        font-size: 1.15rem;
    }
    
    .demo-text p {
        font-size: 0.9rem;
    }
    
    .service-template-hero {
        padding: 2.5rem 0;
    }
    
    .service-hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
    }
    
    .service-hero-image {
        order: 1 !important;
    }
    
    .service-hero-text {
        order: 2 !important;
    }
    
    .service-hero-image img {
        height: 280px;
    }
    
    .service-category-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        gap: 0.65rem;
    }
    
    .highlight-item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .service-pricing {
        gap: 0.85rem;
    }
    
    .price-item {
        padding: 0.85rem 1.25rem;
    }
    
    .price-duration {
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .service-cta-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .template-section {
        padding: 2.5rem 0;
    }
    
    .timeline-step {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .timeline-step:not(:last-child)::after {
        left: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .benefit-card {
        padding: 1.75rem 1.25rem;
    }
    
    .benefit-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
        padding: 0.85rem;
    }
    
    .benefit-card h3 {
        font-size: 1.35rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .website-service-cta {
        padding: 3rem 0;
    }
    
    .features-showcase {
        padding: 1.5rem 1rem;
    }
    
    .features-showcase h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        line-height: 1.4;
        align-items: flex-start;
        gap: 0.65rem;
    }
    
    .feature-item svg {
        width: 16px;
        height: 16px;
        margin-top: 0.15rem;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        padding: 0.95rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .showcase-box {
        padding: 1.25rem 1rem;
    }
    
    .showcase-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .showcase-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Timeline for very small screens */
    .timeline-item {
        grid-template-columns: 45px 1fr;
        gap: 0.75rem;
    }
    
    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Further reduce section padding */
    .about-hero,
    .our-story,
    .philosophy-section,
    .team-section,
    .sets-apart-section,
    .expectations-section,
    .certifications-section,
    .about-preview,
    .guiding-principle,
    .trusted-service,
    .location-hero,
    .contact-info-section,
    .location-services-section,
    .map-section,
    .location-faq-section,
    .location-testimonials,
    .service-template-hero,
    .template-section,
    .website-service-cta {
        padding: 2rem 0;
    }
    
    /* Location Page - Extra small screens */
    .location-hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .location-logo-icon {
        max-width: 150px;
    }
    
    .location-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }
    
    .location-description,
    .location-details {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    
    .location-cta-btn,
    .services-link-btn,
    .testimonial-cta-btn {
        padding: 0.85rem 1.85rem;
        font-size: 0.9rem;
    }
    
    .map-description,
    .faq-intro {
        font-size: 1rem;
        margin: 1rem auto 2rem;
    }
    
    .contact-info-grid {
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .service-categories {
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .service-category {
        padding: 1.5rem 1.25rem;
    }
    
    .service-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .services-cta {
        padding: 1.5rem 1.25rem;
        margin-top: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1.25rem;
        margin: 2rem 0;
    }
    
    .testimonial-box {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.25rem;
        margin-top: 1.5rem;
    }
    
    .directions-info {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-accordion {
        margin-top: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 0.85rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .map-container {
        margin-top: 2rem;
    }
    
    .map-placeholder iframe {
        height: 350px;
    }
    
    /* Service Template Page - Extra Small Devices */
    .demo-notice {
        padding: 1rem 0;
    }
    
    .demo-icon {
        width: 32px;
        height: 32px;
    }
    
    .demo-text h3 {
        font-size: 1.05rem;
    }
    
    .demo-text h3 svg {
        width: 20px;
        height: 20px;
    }
    
    .demo-text p {
        font-size: 0.85rem;
    }
    
    .service-hero-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 1.5rem;
    }
    
    .service-hero-image {
        order: 1 !important;
    }
    
    .service-hero-text {
        order: 2 !important;
    }
    
    .service-hero-image img {
        height: 240px;
    }
    
    .service-category-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        gap: 0.55rem;
    }
    
    .highlight-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-item {
        padding: 0.75rem 1.15rem;
        width: 100%;
    }
    
    .price-duration {
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .service-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
        margin: 0.75rem auto 2rem;
    }
    
    .timeline-step {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .timeline-step:not(:last-child)::after {
        left: 18px;
        top: 48px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.45;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .benefit-card h3 {
        font-size: 1.15rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.45;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-text h2 svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.45;
    }
    
    .features-showcase {
        padding: 1.25rem 0.85rem;
        margin-bottom: 1.75rem;
    }
    
    .features-showcase h3 {
        font-size: 1.15rem;
        margin-bottom: 1.15rem;
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        line-height: 1.35;
        align-items: flex-start;
        gap: 0.55rem;
    }
    
    .feature-item svg {
        width: 15px;
        height: 15px;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .showcase-box {
        padding: 1rem 0.85rem;
    }
    
    .showcase-box h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .showcase-box h4 svg {
        width: 18px;
        height: 18px;
    }
    
    .showcase-box p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
    
    .image-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.6rem 1.25rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .badge-text svg {
        width: 14px;
        height: 14px;
    }
    
    /* General text spacing improvements */
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .team-intro,
    .expectations-intro {
        margin: 1rem auto 2rem;
    }
    
    /* Service cards for tiny screens */
    .service-title {
        font-size: 1.5rem;
        margin: 1.25rem 1.25rem 0.75rem;
    }
    
    .service-description,
    .service-features li {
        font-size: 0.9rem;
    }
    
    .service-btn {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
    
    /* Button adjustments */
    .learn-more-btn,
    .hero-btn,
    .cta-btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }
    
    /* Years badge in trusted service */
    .years-number {
        font-size: 3rem;
    }
    
    .trusted-title {
        font-size: 2rem;
    }
}

/* ===================================
   About Page Styles
   =================================== */
.about-hero {
    padding: calc(var(--section-padding) * 1.5) 0;
    background: var(--light-bg);
    margin-top: 80px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.about-hero-text {
    padding: 2rem 0;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-intro {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.85;
    color: var(--text-light);
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(58, 79, 65, 0.15);
}

/* Our Story Section */
.our-story {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(58, 79, 65, 0.12);
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.philosophy-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(58, 79, 65, 0.08);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(58, 79, 65, 0.12);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    border-radius: 50%;
    color: var(--white);
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 79, 65, 0.1);
}

.member-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-specialty {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Sets Apart Section */
.sets-apart-section {
    padding: var(--section-padding) 0;
    background: var(--cream-bg);
}

.apart-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.apart-text h2 {
    margin-bottom: 2rem;
}

.apart-text > p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.apart-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apart-item h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.apart-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.apart-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(58, 79, 65, 0.15);
}

/* Expectations Section */
.expectations-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.expectations-intro {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 4rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.expectations-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.cert-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(58, 79, 65, 0.08);
    transition: var(--transition-smooth);
}

.cert-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(58, 79, 65, 0.12);
}

.cert-item h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Mission Statement */
.mission-statement {
    padding: calc(var(--section-padding) * 1.2) 0;
    background: linear-gradient(
        135deg,
        rgba(58, 79, 65, 0.92) 0%,
        rgba(125, 157, 142, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1920&h=800&fit=crop&q=85') center/cover;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.mission-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(58, 79, 65, 0.4) 100%
    );
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: 2.5rem;
}

.mission-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.98);
    margin: 0 0 2.5rem;
    padding: 0 2rem;
    position: relative;
}

.mission-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: 0;
    color: var(--accent-color);
    opacity: 0.4;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

/* ===================================
   Location Page Styles
   =================================== */
.location-hero {
    padding: calc(var(--section-padding) * 1.3) 0;
    background: var(--light-bg);
    margin-top: 80px;
}

.location-hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

.location-hero-text {
    padding: 2rem 0;
}

.location-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.location-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-details {
    font-size: clamp(0.95rem, 1.7vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.location-cta-btn {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.2);
}

.location-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
}

.location-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-logo-icon {
    width: 100%;
    max-width: 280px;
    height: auto;
    color: var(--primary-color);
}

/* Contact Info Section */
.contact-info-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(58, 79, 65, 0.08);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(58, 79, 65, 0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list p,
.contact-details p,
.address-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.hours-note,
.parking-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.parking-info {
    color: var(--tertiary-color);
    font-weight: 500;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Location Services Section */
.location-services-section {
    padding: var(--section-padding) 0;
    background: var(--cream-bg);
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.service-category {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(58, 79, 65, 0.08);
}

.service-category h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.services-note {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.services-link-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.2);
}

.services-link-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
}

/* Map Section */
.map-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.map-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 3rem;
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    width: 100%;
    margin-bottom: 2rem;
}

.directions-info {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.directions-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.directions-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* FAQ Section */
.location-faq-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 3rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--cream-bg);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Testimonials Section */
.location-testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.testimonial-box {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(58, 79, 65, 0.08);
    transition: var(--transition-smooth);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 79, 65, 0.12);
}

.stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-radius: var(--radius-lg);
    color: var(--white);
}

.testimonials-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.testimonial-cta-btn {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-cta-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Service Template Page Styles
   =================================== */

/* Demo Notice Banner */
.demo-notice {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    padding: 1.5rem 0;
    margin-top: 80px;
    border-bottom: 3px solid var(--accent-color);
}

.demo-notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.demo-icon {
    flex-shrink: 0;
    color: var(--white);
}

.demo-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.demo-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.demo-text strong {
    color: var(--white);
    font-weight: 600;
}

/* Service Hero Section */
.service-template-hero {
    padding: calc(var(--section-padding) * 0.8) 0;
    background: var(--light-bg);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(3rem, 7vw, 5rem);
    align-items: center;
}

.service-category-badge {
    display: inline-block;
    background: var(--tertiary-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
}

.highlight-item svg {
    color: var(--tertiary-color);
    flex-shrink: 0;
}

.service-pricing {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-item {
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(58, 79, 65, 0.25);
}

.service-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.3);
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(58, 79, 65, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-text {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Template Sections */
.template-section {
    padding: var(--section-padding) 0;
}

.what-to-expect {
    background: var(--white);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 3rem;
}

/* Expectations Timeline */
.expectations-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, var(--tertiary-color), transparent);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(58, 79, 65, 0.2);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    background: var(--cream-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(58, 79, 65, 0.08);
    transition: var(--transition-smooth);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 79, 65, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    border-radius: 50%;
    padding: 1rem;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    color: var(--white);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Website Service CTA Section */
.website-service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    padding: calc(var(--section-padding) * 1.3) 0;
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.features-showcase {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.features-showcase h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    color: var(--white);
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.feature-item span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-align: center;
    word-wrap: break-word;
}

.primary-cta-btn:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.secondary-cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: transparent;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    border: 2px solid var(--white);
    transition: var(--transition-smooth);
    text-align: center;
    word-wrap: break-word;
}

.secondary-cta-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.showcase-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.showcase-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.showcase-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (max-width: 1024px) {
    .website-service-cta .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Prevent grid children from forcing horizontal overflow */
.service-hero-content > *,
.cta-content > *,
.feature-list > *,
.benefits-grid > * {
    min-width: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .website-service-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .website-service-cta .features-showcase {
        padding: 1.25rem 1rem;
    }
    .website-service-cta .feature-list {
        grid-template-columns: 1fr !important;
        gap: 0.85rem;
    }
    .website-service-cta .feature-item {
        align-items: flex-start;
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .website-service-cta .cta-buttons {
        flex-direction: column;
        gap: 0.85rem;
    }
    .website-service-cta .primary-cta-btn,
    .website-service-cta .secondary-cta-btn {
        width: 100%;
        padding: 0.95rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-template-hero {
        padding: 2rem 0;
    }
    .service-hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .service-hero-image img {
        height: 260px;
    }
    .service-highlights {
        gap: 0.6rem;
    }
    .service-pricing {
        flex-direction: column;
        gap: 0.6rem;
    }
    .price-item {
        padding: 0.75rem 1rem;
    }
    .service-cta-btn {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    .template-section {
        padding: 2rem 0;
    }
    .expectations-timeline {
        padding: 0;
    }
    .timeline-step {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .website-service-cta {
        padding: 2.25rem 0;
    }
    .website-service-cta .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .showcase-box {
        padding: 1rem 0.85rem;
    }
    .showcase-box h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    .showcase-box p {
        font-size: 0.85rem;
        line-height: 1.35;
    }
    .image-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.6rem 1.1rem;
    }
}
