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

:root {
    --primary-color: #A0826D;
    --primary-dark: #8B6F47;
    --secondary-color: #D4A574;
    --accent-color: #E8B298;
    --text-dark: #3E2723;
    --text-gray: #6D4C41;
    --text-light: #FFFFFF;
    --bg-light: #FAF7F5;
    --bg-gradient: linear-gradient(135deg, #D4A574 0%, #B08968 100%);
    --success-green: #81C784;
    --border-radius: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop a:not(.nav-cta):hover {
    color: var(--primary-color);
}

.nav-desktop a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-desktop a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #1F9D8F, #26C6B5);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31, 157, 143, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 157, 143, 0.5);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.mobile-menu-header .logo img {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.mobile-nav-link {
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    background: #F8FAFC;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-nav-cta {
    margin: 16px 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1F9D8F, #26C6B5);
    color: white !important;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(31, 157, 143, 0.3);
    border-left: none !important;
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #1A8479, #1F9D8F);
    transform: translateY(-2px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    color: var(--text-light);
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.75) 0%, rgba(176, 137, 104, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #F5E6D3;
    font-weight: 600;
    line-height: 1.3;
}

.benefits {
    list-style: none;
    margin-bottom: 30px;
}

.benefits li {
    font-size: 1.15rem;
    margin-bottom: 14px;
    padding-left: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits li svg {
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Lead Form */
.lead-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.form-subtext {
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #F8FAFC;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(160, 130, 109, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #1F9D8F, #26C6B5);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(31, 157, 143, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 157, 143, 0.6);
    background: linear-gradient(135deg, #1A8479, #1F9D8F);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 12px;
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message h3 {
    color: var(--success-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Social Proof Section */
.social-proof {
    background: white;
    padding: 60px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    background: linear-gradient(135deg, #FAF7F5 0%, #F5EDE4 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #E8D5C4;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat h3 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 900;
}

.stat p {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card .service-features {
    margin-left: 48px;
    margin-right: 48px;
}

.service-card .service-icon {
    margin-top: 32px;
}

.service-card .service-features {
    margin-bottom: 48px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #F5EDE4 0%, #E8D5C4 100%);
    border-radius: 16px;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.service-card p {
    margin-bottom: 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F8FAFC 100%);
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Facility Section */
.facility {
    padding: 80px 20px;
    background: var(--bg-light);
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.facility-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.facility-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.facility-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.facility-highlight-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.facility-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.facility-text ul {
    list-style: none;
}

.facility-text li {
    padding: 10px 0;
    padding-left: 38px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.facility-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
}

.facility-highlight {
    background: linear-gradient(135deg, #F5EDE4 0%, #E8D5C4 100%);
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #D4A574;
}

.facility-highlight h4 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.facility-highlight p {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.facility-highlight ul {
    list-style: none;
    margin: 20px 0;
}

.facility-highlight li {
    padding: 8px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-button-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(160, 130, 109, 0.3);
    text-align: center;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 130, 109, 0.4);
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: white;
}

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

.faq-item {
    background: linear-gradient(135deg, #FAF7F5 0%, #F5EDE4 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E8D5C4;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Hours Section */
.hours {
    padding: 80px 20px;
    background: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours-info h3,
.location-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.hours-list {
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.day {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.time {
    color: #555;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.address {
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #1F9D8F, #26C6B5);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 157, 143, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 157, 143, 0.5);
    background: linear-gradient(135deg, #1A8479, #1F9D8F);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: var(--bg-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 900;
    position: relative;
    letter-spacing: -0.02em;
}

.final-cta-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    position: relative;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 22px 56px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.final-cta-subtext {
    margin-top: 24px;
    font-size: 1.2rem;
    position: relative;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 16px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 12px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 60px 20px 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .lead-form-container {
        padding: 30px 24px;
        margin: 0 -10px;
    }

    .service-card {
        margin: 0 -10px;
    }

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

    .facility-content,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .facility-images {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .trust-badges {
        flex-direction: column;
    }

    .badge {
        width: 100%;
        text-align: center;
    }
}