:root {
    /* Premium Dark Mode Colors */
    --bg-color: #0f1115;
    --surface-color: #1a1d24;
    --surface-light: #252a34;
    --primary-color: #16a34a; /* Deeper Lawn Green */
    --primary-hover: #15803d;
    --text-main: #f9fafb;
    --text-secondary: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --transition: all 0.3s ease;
}

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



body {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.app-container {
    overflow-x: hidden;
}

/* Utilities */
.text-center { text-align: center; }
.text-dark { color: var(--text-main); } /* Kept class name but mapped to bright text for dark mode */
.text-white { color: #ffffff; }
.text-gold { color: var(--primary-color); } /* Mapped the gold from layout to our green */
.bg-light { background-color: var(--bg-color); }
.bg-green { background-color: var(--surface-color); }
.bg-dark-green { background-color: #0a0b0d; border-top: 1px solid var(--border-color); }

/* Hero Section */
.hero {
    position: relative;
    padding-top: 40px; 
    padding-bottom: 40px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(15,17,21,0.4) 0%, rgba(15,17,21,1) 90%);
    z-index: 1;
}

.top-nav {
    position: relative;
    width: 100%;
    z-index: 10;
    text-align: center;
    margin-bottom: 0px;
    margin-top: -40px;
}

.logo img {
    height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 600px;
    margin-top: 10px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 100px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-actions .btn-outline {
    grid-column: 1 / -1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

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

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

.btn-white {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-text {
    background: none;
    color: var(--primary-color);
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.btn-text i { transition: transform 0.2s; }
.btn-text:hover i { transform: translateX(5px); }

.btn-full { width: 100%; }

/* Sections */
.section-padding { padding: 20px 20px; }

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-main);
}

.intro-desc {
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

/* Services */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: var(--transition);
}

.service-card:active {
    transform: scale(0.98);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info { padding: 24px; }
.service-info h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-info p {
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Why Us */
.why-us-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.why-us-list i {
    font-size: 1.5rem;
    margin-top: 4px;
    color: var(--primary-color);
}

.why-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

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

/* Reviews */
.reviews {
    position: relative;
    padding: 80px 20px;
}
.reviews-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 0;
}
.reviews-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 17, 21, 0.85); z-index: 1;
}
.reviews-content {
    position: relative; z-index: 2;
    max-width: 600px; margin: 0 auto;
}

.glass-panel {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    margin-top: 32px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.quote-text {
    color: var(--text-main);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 16px;
}

.stars { margin-bottom: 12px; font-size: 1.1rem; color: var(--primary-color); }
.reviewer {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Footer */
.footer { padding: 40px 20px; }
.footer-grid {
    display: flex; flex-direction: column; gap: 32px;
    max-width: 1000px; margin: 0 auto 40px;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem; margin-bottom: 12px; color: var(--text-main);
}
.footer-brand p { color: var(--text-secondary); line-height: 1.5; }
.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 16px; font-size: 1.1rem; color: var(--text-main);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer ul a:hover { color: var(--primary-color); }
.copyright {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* Interior Pages Styling */
.interior-header {
    padding: 100px 20px 40px;
    background: var(--surface-color);
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--primary-color);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.info-card {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.info-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 4px;
}

.info-card h4 {
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.callout-block {
    background: var(--surface-color);
    border-left: 4px solid var(--primary-color);
    padding: 32px;
    border-radius: 0 12px 12px 0;
    max-width: 800px;
    margin: 40px auto;
}

.callout-block h3 {
    color: var(--text-main);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Reviews Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--bg-color);
    padding: 20px 0;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.marquee-track.left-to-right {
    animation: scrollLeft 40s linear infinite;
}

.marquee-track.right-to-left {
    animation: scrollRight 30s linear infinite;
}

.marquee-track.slow {
    animation: scrollRight 50s linear infinite;
}

.review-card-mini {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    flex-shrink: 0;
}

.review-card-mini .stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.review-card-mini .quote {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.review-card-mini .author {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

@keyframes scrollRight {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Quote Modal */
.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 1000;
    display: flex; align-items: flex-end;
    opacity: 1; transition: opacity 0.3s;
}
.modal-backdrop.hidden { opacity: 0; pointer-events: none; }
.modal-backdrop.hidden .modal-dialog { transform: translateY(100%); }

.modal-dialog {
    background: var(--surface-color);
    width: 100%; border-radius: 16px 16px 0 0;
    transform: translateY(0); transition: transform 0.4s;
    display: flex; flex-direction: column; max-height: 90vh;
}

.close-modal {
    position: absolute; top: 16px; right: 16px;
    background: var(--surface-light); border: none; color: var(--text-secondary);
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; z-index: 10;
}

.modal-header { padding: 24px 20px 16px; border-bottom: 1px solid var(--border-color); }
.progress-bar { height: 4px; background: var(--surface-light); border-radius: 2px; }
.progress-fill { height: 100%; background: var(--primary-color); width: 33.33%; transition: width 0.3s; }

.modal-body { padding: 24px 20px; overflow-y: auto; flex: 1; }
.step-view { display: none; }
.step-view.active { display: block; animation: fadeInRight 0.3s forwards; }

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

.question-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 16px; color: var(--text-main); }
.options-grid { display: flex; flex-direction: column; gap: 12px; }

.selectable-option input { position: absolute; opacity: 0; }
.selectable-option span {
    display: block; padding: 16px;
    background: var(--surface-light); color: var(--text-main);
    border: 2px solid transparent; border-radius: 8px;
    font-weight: 500; transition: var(--transition); cursor: pointer;
}
.selectable-option input:checked ~ span {
    border-color: var(--primary-color); background: rgba(16, 185, 129, 0.05); color: var(--primary-color);
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.9rem; margin-bottom: 8px; font-weight: 500; color: var(--text-secondary); }
.input-group input {
    width: 100%; padding: 14px 16px; color: var(--text-main);
    background: var(--surface-light); border: 1px solid var(--border-color);
    border-radius: 8px; font-family: var(--font-body); font-size: 1rem;
}
.input-group input:focus { outline: none; border-color: var(--primary-color); }

.modal-footer {
    padding: 16px 20px; border-top: 1px solid var(--border-color); display: flex; gap: 16px;
}
.success-icon { font-size: 4rem; color: var(--primary-color); text-align: center; margin-bottom: 16px; }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
    .service-cards { flex-direction: row; }
    .service-card { flex: 1; }
    .footer-grid { flex-direction: row; justify-content: space-between; }
    .hero { min-height: 80vh; padding-bottom: 80px; }
    .hero-actions { display: flex; flex-direction: row; justify-content: center; }
    .section-padding { padding: 60px 20px; }
    .hero-title { font-size: 3.5rem; }
    .bottom-floating-cta { display: none; }
    body { padding-bottom: 0; }
}
