/* ===================================
   SAM'S SOFTWASH - HOME SERVICE STYLE
   Warm, Trustworthy, Professional
   =================================== */

/* CSS Custom Properties */
:root {
    /* Warm Home Service Colors */
    --primary: #1e6b4f;          /* Forest green - trust, nature, clean */
    --primary-dark: #154d39;
    --primary-light: #e8f5f0;
    --secondary: #3498db;         /* Water blue - cleaning, freshness */
    --secondary-light: #ebf5fb;
    --accent: #e67e22;            /* Warm orange - friendly, action */
    --accent-hover: #d35400;
    --accent-light: #fef5e7;

    /* Warm Neutrals */
    --dark: #2c3e50;
    --dark-warm: #34495e;
    --gray-900: #1a252f;
    --gray-800: #2c3e50;
    --gray-700: #5d6d7e;
    --gray-600: #7f8c8d;
    --gray-500: #95a5a6;
    --gray-400: #bdc3c7;
    --gray-300: #d5dbdb;
    --gray-200: #ecf0f1;
    --gray-100: #f8f9f9;
    --white: #ffffff;
    --cream: #fdfcfa;

    /* Typography - Friendlier fonts */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius - Softer, friendlier */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows - Softer */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   UTILITIES
   =================================== */

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons - More Friendly */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 3px solid var(--gray-300);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-green {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 107, 79, 0.35);
}

.btn-green:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--white);
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text span {
    color: var(--primary);
}

.navbar.scrolled .logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    padding: var(--space-sm) 0;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ===================================
   HERO SECTION - HOME SERVICE STYLE
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0d3d2d 100%);
    overflow: hidden;
}

/* Water droplet pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
}

/* Spray/mist effect */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-4xl) var(--container-padding);
    margin-left: 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.6s ease;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    position: relative;
    color: #4ade80;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta .btn svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat-number span {
    color: #4ade80;
}

.hero-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color var(--transition-fast);
    animation: bounce 2s infinite;
}

.hero-scroll a:hover {
    color: var(--white);
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   TRUST BAR
   =================================== */

.trust-bar {
    background: var(--white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-700);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon svg {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ===================================
   BEFORE/AFTER SECTION
   =================================== */

.before-after {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.ba-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ba-image-before,
.ba-image-after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.ba-image-before {
    left: 0;
    background: linear-gradient(135deg, #8b7355, #6d5a45);
}

.ba-image-after {
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.ba-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.ba-icon {
    width: 48px;
    height: 48px;
    opacity: 0.9;
}

.ba-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 1;
}

.ba-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.ba-content {
    padding: var(--space-lg);
}

.ba-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.ba-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
    opacity: 0.9;
    position: relative;
}

.image-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: var(--space-xl);
}

.about-text {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
}

.about-feature .feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.about-feature .feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-us {
    padding: var(--space-4xl) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.why-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.why-icon svg {
    width: 40px;
    height: 40px;
    color: #4ade80;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.why-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===================================
   SERVICE AREAS SECTION
   =================================== */

.areas {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.map-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--primary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' stroke='rgba(30,107,79,0.1)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 100px 50px;
}

.map-placeholder svg {
    width: 70px;
    height: 70px;
    position: relative;
}

.map-placeholder span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.area-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.area-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.area-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.area-item span {
    font-weight: 600;
    color: var(--dark);
}

.area-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.areas-note {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--gray-600);
    font-size: 1.0625rem;
}

.areas-note a {
    color: var(--primary);
    font-weight: 700;
}

.areas-note a:hover {
    color: var(--accent);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-lg);
}

.testimonial-stars svg {
    width: 22px;
    height: 22px;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    font-size: 1.0625rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-15deg);
}

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

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info {
    padding-right: var(--space-xl);
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.method-content strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-size: 1.0625rem;
}

.method-content a,
.method-content span {
    color: var(--gray-600);
    font-size: 1.0625rem;
}

.method-content a:hover {
    color: var(--primary);
}

.business-hours {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary);
}

.business-hours h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.business-hours p {
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-4xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 320px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer ul a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
    display: block;
}

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

.footer-badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-badges .badge {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    text-align: center;
}

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

/* ===================================
   ANIMATIONS
   =================================== */

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-content {
        padding-left: 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .areas-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }

    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--dark) !important;
        font-size: 1.125rem;
        padding: var(--space-md) 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link.nav-cta {
        margin-top: var(--space-lg);
        text-align: center;
    }

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

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

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

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .trust-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .section-tag {
        padding-left: 0;
    }

    .section-tag::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--space-3xl) var(--container-padding);
    }

    .about-badge {
        position: static;
        margin-top: var(--space-lg);
        display: inline-block;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-stat-number {
        font-size: 2rem;
    }
}

/* ===================================
   BLOG SECTION - HOMEPAGE PREVIEW
   =================================== */

.blog-preview {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.blog-card-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
    opacity: 0.5;
}

.blog-card-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.blog-card-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--accent);
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

/* ===================================
   BLOG LISTING PAGE
   =================================== */

.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.blog-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-xl);
}

.blog-featured {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-3xl);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 3px solid var(--primary);
}

.blog-featured-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-featured-image svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-featured-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-featured-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    width: fit-content;
}

.blog-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.blog-featured-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.blog-featured-title a:hover {
    color: var(--primary);
}

.blog-featured-excerpt {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-featured-meta svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   INDIVIDUAL BLOG POST
   =================================== */

.blog-post-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.blog-post-header .container {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--white);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.blog-post-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    max-width: 900px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-lg);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.blog-post-body {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-3xl);
    align-items: start;
}

.blog-content {
    max-width: 100%;
}

/* Blog Prose Styling */
.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: var(--space-2xl) 0 var(--space-md);
    line-height: 1.2;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin: var(--space-xl) 0 var(--space-md);
    line-height: 1.3;
}

.blog-content p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.blog-content ul,
.blog-content ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.blog-content li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.blog-content ul li {
    list-style-type: disc;
}

.blog-content ol li {
    list-style-type: decimal;
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.blog-content a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.blog-content strong {
    font-weight: 700;
    color: var(--dark);
}

.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--primary-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--dark);
}

/* Table of Contents */
.blog-toc {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border: 2px solid var(--gray-200);
}

.blog-toc h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-toc ul {
    padding-left: var(--space-md);
    margin: 0;
}

.blog-toc li {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    list-style-type: none;
    position: relative;
    padding-left: var(--space-md);
}

.blog-toc li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.blog-toc a {
    color: var(--gray-700);
    text-decoration: none;
}

.blog-toc a:hover {
    color: var(--primary);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 2px solid var(--gray-200);
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

/* CTA Box */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    border: none;
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 1.25rem;
}

.sidebar-cta p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.sidebar-cta .btn {
    width: 100%;
}

/* Related Posts in Sidebar */
.sidebar-related-post {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-related-post:first-of-type {
    padding-top: 0;
}

.sidebar-related-thumb {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-md);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-related-thumb svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
    opacity: 0.5;
}

.sidebar-related-content h5 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 4px;
}

.sidebar-related-content h5 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sidebar-related-content h5 a:hover {
    color: var(--primary);
}

.sidebar-related-content span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Blog Post CTA Section */
.blog-post-cta {
    background: var(--accent);
    padding: var(--space-3xl) 0;
    margin-top: var(--space-3xl);
}

.blog-post-cta .container {
    text-align: center;
}

.blog-post-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.blog-post-cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-cta .btn-primary {
    background: var(--white);
    color: var(--accent);
}

.blog-post-cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

/* Related Posts Section */
.blog-related {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
}

/* Author Bio Box */
.author-bio {
    display: flex;
    gap: var(--space-xl);
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3xl);
    border: 2px solid var(--gray-200);
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.author-bio-content .author-title {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.author-bio-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Blog Responsive Styles */
@media (max-width: 1024px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-listing-grid {
        grid-template-columns: 1fr;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .blog-featured-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .blog-hero {
        padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
    }

    .blog-post-header {
        padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
    }

    .blog-post-body {
        padding: var(--space-2xl) 0;
    }

    .blog-toc {
        padding: var(--space-lg);
    }

    .blog-content blockquote {
        padding: var(--space-md) var(--space-lg);
        margin: var(--space-lg) 0;
    }

    .sidebar-widget {
        padding: var(--space-lg);
    }

    .blog-post-cta {
        padding: var(--space-2xl) 0;
    }

    .blog-related {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .blog-card-title {
        font-size: 1.125rem;
    }

    .blog-card-content {
        padding: var(--space-md);
    }

    .blog-card-excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }

    .blog-featured-title {
        font-size: 1.25rem;
    }

    .blog-featured-content {
        padding: var(--space-lg);
    }

    .blog-featured-excerpt {
        font-size: 0.9375rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-post-header h1 {
        font-size: 1.5rem;
    }

    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.375rem;
    }

    .blog-content h3 {
        font-size: 1.125rem;
    }

    .blog-content p,
    .blog-content li {
        font-size: 1rem;
    }

    .blog-toc li {
        font-size: 0.875rem;
    }

    .author-bio {
        padding: var(--space-lg);
    }

    .author-avatar-large {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .author-bio-content h4 {
        font-size: 1rem;
    }

    .author-bio-content p {
        font-size: 0.875rem;
    }

    .blog-post-cta h3 {
        font-size: 1.25rem;
    }

    .blog-post-cta p {
        font-size: 0.9375rem;
    }

    .sidebar-related-thumb {
        width: 60px;
        height: 60px;
    }

    .sidebar-related-content h5 {
        font-size: 0.875rem;
    }

    .blog-card-meta {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .blog-featured-badge {
        top: var(--space-md);
        left: var(--space-md);
        font-size: 0.6875rem;
        padding: 4px 10px;
    }

    .blog-card-category {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-answer-content a {
    color: var(--primary);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.faq-cta p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

/* ===================================
   GALLERY PAGE
   =================================== */

.gallery-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.gallery-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.gallery-section:nth-child(odd) {
    background: var(--white);
}

.gallery-category-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.gallery-category-title .icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-category-title .icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.gallery-category-title h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
    display: flex;
    overflow: hidden;
}

.gallery-before,
.gallery-after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}

.gallery-before {
    left: 0;
    background: linear-gradient(135deg, #8b7355, #6d5a45);
}

.gallery-after {
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.gallery-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.gallery-icon {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.gallery-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 1;
}

.gallery-content {
    padding: var(--space-lg);
}

.gallery-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.gallery-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.gallery-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

.gallery-location svg {
    width: 14px;
    height: 14px;
}

/* ===================================
   SERVICE PAGES
   =================================== */

.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero-content {
    max-width: 700px;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.service-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.service-hero .btn {
    margin-right: var(--space-md);
    margin-bottom: var(--space-sm);
}

.service-content {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.service-main h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: var(--space-2xl) 0 var(--space-md);
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: var(--space-xl) 0 var(--space-md);
}

.service-main p {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.service-main ul {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.service-main li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    list-style-type: disc;
}

.service-process {
    background: var(--gray-100);
    padding: var(--space-4xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-xl);
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto var(--space-md);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.service-sidebar-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-sidebar-cta p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.service-sidebar-cta .btn {
    width: 100%;
    background: var(--white);
    color: var(--accent);
}

.service-sidebar-cta .btn:hover {
    background: var(--cream);
}

.other-services {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.other-services h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.other-services ul {
    list-style: none;
}

.other-services li {
    border-bottom: 1px solid var(--gray-200);
}

.other-services li:last-child {
    border-bottom: none;
}

.other-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.other-services a:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.other-services a svg {
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.other-services a:hover svg {
    opacity: 1;
}

/* ===================================
   LOCATION PAGES
   =================================== */

.location-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.location-hero .container {
    position: relative;
    z-index: 1;
}

.location-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.location-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.location-services {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
}

.location-service-card {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.location-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-service-card .icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.location-service-card .icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.location-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.location-service-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.location-about {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.location-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.location-about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.location-about-content p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.location-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.location-feature span {
    font-weight: 600;
    color: var(--dark);
}

.location-map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--primary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.location-map-placeholder svg {
    width: 60px;
    height: 60px;
}

.location-map-placeholder span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ===================================
   SPECIALS PAGE
   =================================== */

.specials-hero {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.specials-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.specials-hero .container {
    position: relative;
    z-index: 1;
}

.specials-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.specials-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

.specials-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-xl);
}

.special-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gray-200);
    transition: all var(--transition-base);
}

.special-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.special-card.featured {
    border-color: var(--accent);
}

.special-badge {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-card-content {
    padding: var(--space-xl);
}

.special-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.special-discount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.special-card-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.special-details {
    background: var(--gray-100);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.special-details li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding: var(--space-xs) 0;
}

.special-details svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.special-card .btn {
    width: 100%;
}

.specials-note {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.specials-note p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-story {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-lg);
}

.about-story-content p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

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

.about-story-image .image-placeholder {
    aspect-ratio: 4/3;
}

.about-values {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.about-credentials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.credential-item {
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.credential-item svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.credential-item h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.credential-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===================================
   LEGAL PAGES (PRIVACY, TERMS)
   =================================== */

.legal-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-2xl);
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.legal-content {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    list-style-type: disc;
}

.legal-content a {
    color: var(--primary);
}

/* ===================================
   ADDITIONAL RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .location-about-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .service-hero .btn {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.9375rem;
        padding: var(--space-md);
    }

    .faq-answer-content {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.9375rem;
    }

    .gallery-category-title h2 {
        font-size: 1.375rem;
    }

    .special-discount {
        font-size: 2rem;
    }

    .process-step {
        padding: var(--space-lg);
    }

    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
