/*
Theme Name: Sparkle Maids 4U Custom Theme
Theme URI: https://sparklemaids4u.com
Description: Modern, minimal professional cleaning services theme for Sparkle Maids 4U
Author: Wanatux
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sparklemaids-custom
Tags: cleaning, professional-services, business, modern, responsive, minimal
*/

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

:root {
    --primary-color: #8C468C;        /* Sparkle Purple (Logo Color) */
    --secondary-color: #B87BB8;      /* Light Purple */
    --accent-color: #FFD700;         /* Gold (Complementary) */
    --purple-dark: #6B2F6B;          /* Dark Purple */
    --purple-light: #D4A5D4;         /* Very Light Purple */
    --contrast-teal: #46908C;        /* Teal (Analogous Contrast) */
    --dark-color: #2D2D2D;           /* Charcoal */
    --light-color: #F9F6F9;          /* Light Purple Tint */
    --white: #FFFFFF;
    --text-color: #3D3D3D;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    --shadow: 0 2px 8px rgba(140, 70, 140, 0.15);
    --shadow-md: 0 4px 16px rgba(140, 70, 140, 0.2);
    --shadow-lg: 0 8px 24px rgba(140, 70, 140, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #6B2F6B 0%, #8C468C 100%);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

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

.top-contact i {
    font-size: 0.9rem;
}

.top-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.top-social a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background: var(--white);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.site-logo {
    height: 45px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.75rem;
}

.site-logo img {
    max-height: 45px;
    max-width: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-logo .custom-logo-link {
    display: flex;
    align-items: center;
    height: 45px;
}

.site-logo .custom-logo {
    max-height: 45px;
    width: auto;
    height: auto;
}

.site-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.site-logo .logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 0.15rem;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.site-logo i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

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

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #6B2F6B, #B87BB8);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.75), rgba(140, 70, 140, 0.6)),
                url('images/hero-bg.jpg') center/cover;
    padding: 120px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(140, 70, 140, 0.3), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #FFC700;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

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

/* Accent Button (Gold - for dark backgrounds) */
.btn-accent {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: #FFC700;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

/* White Button (for dark backgrounds) */
.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.section-title p {
    color: #6B7280;
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, var(--white), var(--light-color));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(140, 70, 140, 0.12), rgba(184, 123, 184, 0.12));
    border-radius: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    color: var(--accent-color);
    transform: scale(1.15);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-item p {
    color: #6B7280;
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-legal {
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.footer-social a i {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Page Templates */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.page-content {
    padding: 4rem 0;
    background: var(--white);
}

.page-article {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-article h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.page-article h3 {
    color: var(--purple-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.page-article p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.page-article ul,
.page-article ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.page-article li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.page-article a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-article a:hover {
    color: var(--accent-color);
}

.page-article strong {
    color: var(--purple-dark);
    font-weight: 600;
}

/* Location Pages */
.location-hero {
    padding: 5rem 0 4rem;
}

.location-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.location-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.location-hero .btn-accent {
    background: var(--accent-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
}

.location-hero .btn-accent:hover {
    background: #FFE44D;
    border-color: #FFE44D;
    transform: translateY(-2px);
    color: var(--dark-color);
}

.location-hero .btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.location-hero .btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.location-content {
    padding: 4rem 0;
}

.location-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-showcase {
    margin: 5rem 0;
    text-align: center;
}

.services-showcase h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(140, 70, 140, 0.2);
    border-color: var(--accent-color);
}

.service-icon {
    display: none;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 0;
}

.service-card > p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    border-top: 2px solid var(--light-color);
    padding-top: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-choose-location {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9f6f9 0%, #fff 100%);
    border-radius: var(--border-radius);
}

.why-choose-location h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.location-faq {
    max-width: 900px;
    margin: 5rem auto;
}

.location-faq h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-item {
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--purple-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.location-cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 5rem 0;
}

.location-cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.location-cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.location-areas {
    margin: 4rem 0;
    text-align: center;
}

.location-areas h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.areas-list li {
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: var(--transition);
}

.areas-list li:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(140, 70, 140, 0.15);
}

.areas-list a {
    display: block;
    padding: 1.25rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.areas-list a:hover {
    color: var(--purple-dark);
}

.areas-list i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .top-contact {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .top-contact span {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .site-logo img {
        max-height: 38px;
        max-width: 38px;
    }
    
    .site-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .site-logo .logo-text span {
        font-size: 0.7rem;
    }
    
    .hero-logo img {
        max-width: 350px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-header {
        font-size: 0.85rem;
        padding: 0.55rem 1.2rem;
    }
    
    .btn-header i {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-contact {
        gap: 0.5rem;
    }
    
    .top-social a {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .header-actions {
        width: 100%;
        order: 2;
    }
    
    .btn-header {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-logo img {
        max-width: 280px;
    }
    
    .site-logo .logo-text {
        font-size: 0.95rem;
    }
    
    .site-logo .logo-text span {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation {
        gap: 0.5rem;
        width: 100%;
    }
    
    .main-navigation li {
        flex: 1 1 auto;
    }
}

/* ========================================
   Contact & FAQ Pages
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
    margin-bottom: 0;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero p,
.page-hero span,
.page-hero a {
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Page */
.contact-content {
    padding: 3rem 0;
    background: var(--light-color);
}

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

.contact-info {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-items {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.service-areas {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-areas h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-areas ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-areas li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(140, 70, 140, 0.1);
}

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

/* FAQs Page */
.faqs-content {
    padding: 3rem 0;
    background: var(--light-color);
}

.faq-categories {
    max-width: 800px;
    margin: 0 auto;
}

.faqs-page .cta-box {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    color: var(--dark-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 3.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.cta-box h2,
.cta-box h3,
.cta-box p,
.cta-box span {
    color: var(--white);
}

.cta-box h2 {
    margin-bottom: 0.75rem;
}

.cta-box p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn i {
    margin-right: 0.5rem;
}

/* Protect button colors inside purple CTA boxes */
.cta-box .btn-accent,
.location-cta .btn-accent {
    color: var(--dark-color) !important;
}

.cta-box .btn-white,
.location-cta .btn-white {
    color: var(--primary-color) !important;
}

.cta-box .btn-white:hover,
.location-cta .btn-white:hover {
    color: var(--purple-dark) !important;
}

/* Responsive for Contact & FAQs */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-areas ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .faq-answer p {
        padding-left: 1.5rem;
    }
}

/* ========================================
   Location & Careers Pages
   ======================================== */

.location-content,
.careers-content {
    padding: 3rem 0;
    background: var(--light-color);
}

.location-intro,
.careers-intro {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.location-intro h2,
.location-intro h3,
.careers-intro h2 {
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.intro-text p {
    color: var(--text-color);
}

.location-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.location-cta h2,
.location-cta h3,
.location-cta p,
.location-cta span,
.location-cta a:not(.btn) {
    color: var(--white);
}

.location-page .services-grid {
    display: block;
    margin-top: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.location-page .services-grid h2,
.location-page .why-choose h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.location-page .why-choose {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

.location-page .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.location-page .service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #E5E7EB;
    text-align: center;
    transition: var(--transition);
}

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

.location-page .service-card i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.location-page .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.location-page .service-card p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.location-areas {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

.location-areas h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.areas-list li a {
    display: block;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.areas-list li a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Careers Page Styles */
.careers-intro {
    text-align: center;
}

.careers-intro h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers-intro p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.county-link {
    background: linear-gradient(135deg, var(--accent-color), #FFE44D);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.county-link a {
    color: var(--purple-dark);
    font-weight: 700;
    text-decoration: underline;
}

.county-link a:hover {
    color: var(--primary-color);
}

.job-description {
    max-width: 960px;
    margin: 0 auto 3rem;
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.job-description h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.job-description h3 {
    color: var(--dark-color);
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.benefits-list,
.duties-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.duties-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-color);
    border-bottom: 1px solid #F3F4F6;
}

.benefits-list li:last-child,
.duties-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✦";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.duties-list li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    color: var(--contrast-teal);
    font-weight: bold;
    font-size: 1.1rem;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.job-box {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.job-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.job-box h2 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.job-box h3 {
    color: var(--dark-color);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.job-box ul {
    list-style: none;
    padding: 0;
}

.job-box ul li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.careers-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 3.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.careers-cta h1,
.careers-cta h2,
.careers-cta h3,
.careers-cta p,
.careers-cta span,
.careers-cta a:not(.btn) {
    color: var(--white);
}

/* Ensure button colors are NOT overridden by CTA white rules */
.careers-cta .btn-accent {
    color: var(--dark-color) !important;
}

.careers-cta .btn-white {
    color: var(--primary-color) !important;
}

.careers-cta .btn-white:hover {
    color: var(--purple-dark) !important;
}

.careers-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.careers-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}

.careers-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.careers-cta .btn {
    min-width: 220px;
}

/* Job description sections explicit colors */
.job-description p,
.job-description li {
    color: var(--text-color);
}

.job-box p,
.job-box li {
    color: var(--text-color);
}

/* Responsive for Location & Careers */
@media (max-width: 968px) {
    .location-intro,
    .careers-intro {
        padding: 1.5rem;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 640px) {
    .careers-cta {
        padding: 2rem 1rem;
    }
    
    .careers-cta h1 {
        font-size: 1.75rem;
    }
    
    .careers-cta p {
        font-size: 1rem;
    }
    
    .job-box {
        padding: 1.5rem;
    }
}
