/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Primary Palette */
    --primary-navy: #0f1a2e;
    --secondary-navy: #1a2744;
    --champagne-gold: #c9a962;
    --light-gold: #d4c49a;
    --dark-gold: #b89952;
    
    /* Backgrounds */
    --bg-primary: #f8f6f3;
    --bg-secondary: #ebe8e3;
    --bg-white: #ffffff;
    --bg-footer: #0f1a2e;
    
    /* Text Colors */
    --text-dark: #2a2a2a;
    --text-medium: #4a4a4a;
    --text-light: #f5f5f5;
    --text-muted: #6b6b6b;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #c9a962 0%, #d4c49a 50%, #c9a962 100%);
    --accent-gradient: linear-gradient(90deg, #c9a962, #d4c49a);
    
    /* Layout */
    --container-width: 1280px;
    --section-padding-desktop: 80px;
    --section-padding-tablet: 60px;
    --section-padding-mobile: 48px;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

@media (max-width: 1024px) {
    .container { padding: 0 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

/* Typography Scale */
h1 { font-size: clamp(48px, 6vw, 85px); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 3vw, 24px); line-height: 1.3; }
.subheadline { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; }
.label { font-size: 18px; font-weight: 500; color: var(--champagne-gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    box-shadow: 0 2px 8px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--champagne-gold);
    border: 2px solid var(--champagne-gold);
}

.btn-secondary:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--dark-gold);
    border-color: var(--dark-gold);
}

/* Layout Utilities */
section {
    padding: var(--section-padding-desktop) 0;
}

@media (max-width: 1024px) {
    section { padding: var(--section-padding-tablet) 0; }
}

@media (max-width: 768px) {
    section { padding: var(--section-padding-mobile) 0; }
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 20px;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    margin: 40px 0;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 26, 46, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(15, 26, 46, 0.12);
    border-color: rgba(201, 169, 98, 0.4);
}

/* Header & Nav */
header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 15px;
}

nav ul li a:hover {
    color: var(--champagne-gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 70% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%), var(--bg-primary);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Reviews Section */
.reviews {
    background: var(--bg-secondary);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    text-align: left;
}

.stars {
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.review-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-navy);
}

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

.service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #253859 0%, #0a1120 100%);
    color: var(--text-light);
    border: none;
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.service-card .learn-more {
    color: var(--champagne-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    stroke: var(--champagne-gold);
    fill: none;
}

/* About Us Section */
.about .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-list {
    margin-top: 30px;
}

.about-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-item-icon {
    color: var(--champagne-gold);
}

.about-card {
    flex: 1;
    background: linear-gradient(135deg, #182743 0%, #0f1a2e 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -14px;
    bottom: -10px;
    left: 10px;
    background: linear-gradient(135deg, #b89952 0%, #e6d5a8 50%, #b89952 100%);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
    border: none;
}

.about-card h2 { color: var(--text-light); margin-bottom: 20px; }

/* About Card Layout classes replacing inline styles */
.about-card-layout {
    display: flex;
    align-items: center;
    padding: 40px 40px 40px 0;
}

.about-card-image {
    margin-left: -80px;
    margin-right: 30px;
    flex-shrink: 0;
}

.about-card-image img {
    width: 260px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
    border-radius: 4px;
}

/* Areas We Serve */
.areas-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.map-container {
    flex: 1.5;
}

.areas-list {
    flex: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.area-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-dot {
    width: 6px;
    height: 6px;
    background: var(--champagne-gold);
    border-radius: 50%;
}

/* Footer */
footer {
    background: var(--bg-footer);
    color: var(--text-light);
    padding: 80px 0 40px;
}

footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img { height: 70px; margin-bottom: 30px; }

.footer-contact p { margin-bottom: 10px; }

.footer-links h4 { color: var(--text-light); margin-bottom: 25px; font-family: 'Inter', sans-serif; text-transform: uppercase; font-size: 14px; letter-spacing: 0.1em; }

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a { color: rgba(255,255,255,0.7); }

.footer-links ul li a:hover { color: var(--champagne-gold); }

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Menu Components */
.mobile-top-bar {
    display: none;
    background: var(--bg-white);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hamburger-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-overlay {
    display: none; /* Active via JS */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 20px 24px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-logo {
    height: 40px;
}

.close-menu-btn {
    background: var(--bg-primary);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-links {
    margin-top: 10px;
}

.mobile-menu-links li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.mobile-menu-links a {
    display: block;
    padding: 16px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .desktop-nav, .desktop-cta { display: none !important; }
    
    .mobile-top-bar { display: block; }
    
    .hamburger-btn { display: flex; }
    
    .mobile-menu-overlay { display: block; }
    
    header { padding: 16px 0; }
    
    .logo img { height: 45px; }

    .hero .container, .about .container, .areas-content, footer .container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero-image { order: -1; margin-bottom: 40px; }

    .about-card-layout {
        flex-direction: column;
        padding: 30px;
    }
    
    .about-card-image {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .about-card-image img {
        margin: 0 auto;
    }
}

/* Utility / Extracted Inline Styles */
.text-center { text-align: center; }
.mb-60 { margin-bottom: 60px; }
.mb-30 { margin-bottom: 30px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.border-bottom-faint { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 15px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.flex-gap-40 { display: flex; gap: 40px; }

.top-call-btn { width: 100%; padding: 12px; font-size: 16px; border-radius: 8px; }
.header-cta-btn { padding: 12px 24px; }

.hero-subheadline { color: var(--secondary-navy); margin: 20px 0; }
.area-tag { display: flex; align-items: center; gap: 10px; color: var(--text-medium); }
.area-tag-icon { color: var(--champagne-gold); }

.reviews-accent { margin: 20px auto; }
.reviews-subtitle { color: var(--text-medium); }
.reviews-widget-container { margin-top: 50px; }

.services-subtitle { color: var(--text-medium); margin-top: 20px; }
.service-icon-img { height: 120px; width: auto; margin-bottom: 20px; }

.about-item-icon-wrapper { width: 50px; display: flex; justify-content: center; flex-shrink: 0; }
.about-description { margin-top: 30px; color: var(--text-medium); }

.about-card-title { font-size: 40px; margin-bottom: 20px; line-height: 1.1; }
.about-card-list { margin-bottom: 30px; }
.about-card-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
.about-card-link { color: var(--champagne-gold); font-weight: 600; }

.areas-section { background: var(--bg-white); }
.areas-accent { margin-top: 20px; }
.map-image { border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.areas-title { font-size: 32px; border-bottom: 4px solid var(--champagne-gold); display: inline-block; padding-bottom: 5px; }
.areas-description { margin-top: 40px; color: var(--text-medium); }

.footer-brand-logo { filter: brightness(0) invert(1); height: 70px; margin-bottom: 20px; }
.footer-spacing { margin-top: 15px; }
.footer-link { color: var(--champagne-gold); }

/* Additional Design System Components */
h4 { font-size: 24px; margin-bottom: 15px; }
h5 { font-size: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--secondary-navy); }
h6 { font-size: 18px; margin-bottom: 8px; color: var(--champagne-gold); }
.h7 { font-size: 16px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-family: 'Inter', sans-serif; }
.h8 { font-size: 14px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; font-family: 'Inter', sans-serif; }

/* Tables */
.table-container { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; background: var(--bg-white); border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
th { background: var(--primary-navy); color: var(--text-light); text-align: left; padding: 16px 24px; font-weight: 600; font-family: 'Inter', sans-serif; }
td { padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-medium); font-size: 15px; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) { background: rgba(201, 169, 98, 0.03); }

/* Forms */
.form-group { margin-bottom: 24px; }
label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary-navy); font-size: 14px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%; padding: 14px 18px; border: 1px solid #d1d1d1; border-radius: 6px; 
    background: var(--bg-white); font-family: inherit; font-size: 16px; color: var(--text-dark); transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--champagne-gold); box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15); }
.checkbox-group, .radio-group { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; cursor: pointer; font-size: 15px; font-weight: 500; }
input[type="checkbox"], input[type="radio"] { width: 20px; height: 20px; accent-color: var(--champagne-gold); cursor: pointer; }
textarea { min-height: 120px; resize: vertical; }

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .flex-gap-40 { flex-direction: column; gap: 15px; }
}
