:root {
    /* Brand Colors - Warm Walnut & Camel (The Dribbble Palette) */
    --primary-color: #2b2522;     /* Dark Walnut - Professional & High Contrast */
    --primary-light: #433432;
    --accent-color: #a47551;      /* Camel/Warm Leather */
    --accent-hover: #8c6242;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-body: #faf9f6;           /* Soft Linen White */
    --bg-section: #f2ede7;        /* Gentle Beige */
    --bg-dark: #2b2522;
    
    /* Text - Readable & Sharp */
    --text-main: #1a1412;         /* Near-Black for Headlines */
    --text-body: #2d2622;         /* Dark Brown for Body */
    --text-muted: #4a3e3e;        /* Dark Taupe for secondary text */
    --text-on-dark: #ffffff;

    /* UI Elements */
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 12px 24px -6px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px -4px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.2rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-section); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-on-dark); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white !important;
    box-shadow: 0 4px 14px rgba(164, 117, 81, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 117, 81, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* Top Bar */
.top-bar {
    background: #1a1412;
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.top-bar-info { display: flex; gap: 30px; font-weight: 600; }
.top-bar a { color: white; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}
.brand-co { color: var(--accent-color); font-style: italic; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}
.main-nav a:hover { color: var(--accent-color); }

.nav-btn {
    background: var(--accent-color); color: white !important;
    padding: 10px 24px; border-radius: 50px;
}
.nav-btn:hover { background: var(--accent-hover); }

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 180px 0 160px;
    text-align: center;
    background-color: var(--primary-color);
    background-image: 
        linear-gradient(rgba(43, 37, 34, 0.5), rgba(43, 37, 34, 0.4)),
        url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero h1 { color: white; font-size: 4rem; text-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.hero-sub { color: white; font-size: 1.35rem; margin-bottom: 40px; font-weight: 500; }
.hero-bullets { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; font-weight: 600; }
.trust-micro { margin-top: 24px; font-size: 0.9rem; opacity: 0.9; color: white; }

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    padding: 30px 0;
    border-bottom: 1px solid #eef0f2;
}
.trust-grid {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
    color: var(--text-muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-image-container { height: 260px; overflow: hidden; }
.service-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-card:hover .service-image-container img { transform: scale(1.05); }

.service-card-content { padding: 40px; }
.service-card h3 { color: var(--accent-color); font-size: 1.75rem; margin-bottom: 16px; }

.service-list li {
    margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--text-muted); list-style: none;
}
.service-list li::before {
    content: "•"; color: var(--accent-color); position: absolute; left: 0; font-size: 1.5rem; line-height: 1rem;
}

/* About Section */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { border-radius: var(--border-radius); width: 100%; box-shadow: var(--shadow-lg); }
.founder-block {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    margin: 32px 0;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}
.founder-grid { display: flex; gap: 24px; align-items: center; margin-top: 24px; }
.founder-avatar {
    width: 80px; height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--font-heading); font-size: 1.5rem;
    flex-shrink: 0;
}
.check-list li { margin-bottom: 10px; list-style: none; }

/* Pricing Section */
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
    margin-bottom: 60px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px 24px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.featured h3, .pricing-card.featured p, .pricing-card.featured li, .pricing-card.featured strong { color: white; }
.pricing-card.featured .price { color: white; }

.price { font-size: 2.8rem; font-family: var(--font-heading); font-weight: 700; color: var(--text-main); margin: 20px 0; }
.pricing-card ul { text-align: left; margin-top: 24px; flex-grow: 1; }
.pricing-card li { margin-bottom: 10px; border-bottom: 1px solid #eeeeee; padding-bottom: 8px; font-size: 0.9rem; list-style: none; }
.pricing-card.featured li { border-bottom: 1px solid rgba(255,255,255,0.1); }

.badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.disclaimer { margin-top: 40px; font-size: 0.9rem; opacity: 0.8; }

/* Service Areas */
.areas-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.area-column h3 { font-size: 1.1rem; color: var(--accent-color); border-bottom: 2px solid #e2e8f0; padding-bottom: 12px; margin-bottom: 16px; }
.area-column li { color: var(--text-body); font-weight: 500; margin-bottom: 8px; list-style: none; }
.zip-codes { background: var(--bg-white); padding: 32px; border-radius: var(--border-radius); text-align: center; color: var(--text-muted); font-size: 0.95rem; box-shadow: var(--shadow-sm); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--bg-white); padding: 32px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); }
.stars { color: #d4af37; margin-bottom: 16px; font-size: 1.2rem; }
.review-card p { font-style: italic; font-size: 1.05rem; line-height: 1.7; }
.reviewer { margin-top: 20px; font-weight: 700; color: var(--primary-color); text-align: right; }

/* FAQ */
.faq-grid { display: grid; gap: 24px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-white); padding: 32px; border-radius: var(--border-radius); border: 1px solid #e2e8f0; }
.faq-item h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary-color); }

/* Contact Section Refined */
.contact-section-content { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-section-content h2 { color: #ffffff !important; margin-bottom: 20px; }
.contact-grid-simple { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 60px 0; }
.contact-method-card {
    background: rgba(255,255,255,0.05);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: var(--transition);
}
.contact-method-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.contact-method-card h3 { color: white; margin-bottom: 20px; }
.contact-method-card a { color: white; font-weight: 700; word-break: break-all; }
.contact-icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.contact-bilingual-footer { margin-top: 20px; font-weight: 700; color: var(--accent-color); }

/* Footer */
footer { background: var(--bg-dark); color: #d6d3d1; padding-top: 100px; font-size: 0.95rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 80px; }
.footer-block h4 { color: white; font-family: var(--font-heading); margin-bottom: 24px; font-size: 1.2rem; }
/* Footer Link Visibility Fix */
.footer-links a { 
    color: #f2ede7 !important; /* Light beige for high contrast on dark */
    text-decoration: none; 
    display: block; 
    margin-bottom: 12px; 
    transition: all 0.2s; 
    opacity: 0.9;
}

.footer-links a:hover { 
    color: var(--accent-color) !important; 
    opacity: 1;
    padding-left: 5px; 
}

.footer-desc {
    color: #d6d3d1;
    line-height: 1.6;
    margin-top: 10px;
}

/* Contact Button Text Fix */
.contact-method-card .btn {
    color: var(--primary-color) !important; /* Dark text on light buttons */
    font-weight: 800;
}

.contact-method-card .btn-primary {
    color: white !important; /* White text on the camel-colored button */
}

.contact-row { 
    margin-bottom: 16px; 
    color: #ffffff !important; /* Force high-contrast white */
}

.contact-row a { 
    color: #ffffff !important; 
    text-decoration: underline; 
    text-decoration-color: var(--accent-color); 
    font-weight: 600;
}

.copyright { background: #1a1412; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.seo-tiny { font-size: 0.8rem; opacity: 0.5; margin-top: 8px; }

/* Google Translate */
#google_translate_element { display: inline-block; min-height: 26px; vertical-align: middle; }
.goog-logo-link { display: none !important; }
.goog-te-gadget { color: transparent !important; }
.goog-te-gadget .goog-te-combo { padding: 4px; border-radius: 4px; border: none; font-size: 0.85rem; background: rgba(255,255,255,0.9); }

/* Accessibility */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--accent-color); color: white; padding: 12px 24px; z-index: 2000; transition: top 0.3s; font-weight: 700; }
.skip-link:focus { top: 0; }

/* Mobile Menu */
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); padding: 10px; cursor: pointer; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--primary-color); position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 2px; background: var(--primary-color); left: 0; }
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 1200px) {
    .pricing-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-wrapper, .contact-wrapper, .footer-content { grid-template-columns: 1fr; }
    h1 { font-size: 2.8rem; }
    .hero { padding: 120px 0; }
}

@media (max-width: 768px) {
    .top-bar-container { flex-direction: column; text-align: center; }
    .top-bar-info { display: flex; flex-direction: column; gap: 8px; align-items: center; }
    .mobile-menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 20px; box-shadow: var(--shadow-lg); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 600px) {
    .pricing-grid, .areas-grid, .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
}