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

:root {
    /* Updated Color Palette - More Sophisticated */
    --primary-navy: #1A2332;
    --primary-charcoal: #2C3E50;
    --accent-brass: #C5A572;
    --accent-gold: #D4AF37;
    --accent-warm: #B8956A;
    --cream: #FAF8F5;
    --warm-white: #F5F3EF;
    --soft-gray: #E8E6E1;
    --medium-gray: #A8A39D;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --success-green: #6B8E23;
    --border-color: #D4D0C8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
}

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

/* ===================================
   Header
   =================================== */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--soft-gray);
}

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

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

.btn-phone {
    background: var(--primary-charcoal);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    border: 2px solid var(--primary-charcoal);
}

.btn-phone:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 35, 50, 0.2);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.92), rgba(44, 62, 80, 0.88)),
                url('images/DDC_9062copy.jpg') center/cover;
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 165, 114, 0.2);
    border: 1px solid var(--accent-brass);
    color: var(--accent-brass);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    color: var(--white);
}

.hero-description {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 16px;
    margin-top: 25px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-brass);
    color: var(--primary-navy);
    padding: 20px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(197, 165, 114, 0.3);
    letter-spacing: 0.3px;
    border: 2px solid var(--accent-brass);
}

.btn-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-brass);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-brass);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-brass);
    margin-bottom: 12px;
}

.stat-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-brass), transparent);
    margin: 0 auto 25px;
}

.section-divider.light {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   Pain Points Section
   =================================== */
.pain-points {
    padding: 100px 0;
    background: var(--white);
}

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

.pain-card {
    background: var(--warm-white);
    padding: 45px 35px;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-brass);
    transition: height 0.4s ease;
}

.pain-card:hover::before {
    height: 100%;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-brass);
}

.pain-icon-wrapper {
    margin-bottom: 25px;
}

.pain-icon {
    font-size: 42px;
    line-height: 1;
}

.pain-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-navy);
    font-weight: 600;
}

.pain-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===================================
   Empathy Section
   =================================== */
.empathy-section {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.94), rgba(44, 62, 80, 0.92)),
                url('images/DDC_9148copy.jpg') center/cover fixed;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.empathy-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.empathy-content {
    position: relative;
    z-index: 2;
}

.empathy-content h2 {
    font-size: 52px;
    margin-bottom: 30px;
    color: var(--white);
}

.empathy-content .lead {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}

.empathy-content p {
    font-size: 19px;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-navy);
    padding: 20px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-top: 40px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--accent-brass);
    color: var(--primary-navy);
    border-color: var(--accent-brass);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: 100px 0;
    background: var(--cream);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
}

.highlight-box {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    margin-top: 50px;
    border: 2px solid var(--accent-brass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 26px;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: var(--warm-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-item:hover {
    background: var(--white);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-brass);
}

.benefit-icon {
    background: var(--accent-brass);
    color: var(--primary-navy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.benefit-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-box {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 50px;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.approach-icon {
    font-size: 52px;
    margin-bottom: 25px;
}

.approach-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.approach-box p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Facility Section
   =================================== */
.facility-section {
    padding: 100px 0;
    background: var(--cream);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

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

.facility-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
    padding: 30px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-overlay {
    transform: translateY(0);
}

.facility-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-white);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-brass);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 35px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.faq-question:hover {
    background: var(--white);
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-brass);
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 35px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-charcoal));
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
}

.badge-icon {
    background: var(--accent-brass);
    color: var(--primary-navy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.form-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-brass);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

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

.btn-submit {
    background: var(--accent-brass);
    color: var(--primary-navy);
    padding: 20px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
}

.form-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

.alternative-contact {
    text-align: center;
    margin-top: 70px;
}

.divider-text {
    position: relative;
    margin-bottom: 40px;
}

.divider-text span {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-charcoal));
    padding: 0 20px;
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 500;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.btn-phone-large {
    background: var(--accent-brass);
    color: var(--primary-navy);
    padding: 22px 70px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 32px;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 25px 0;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
}

.btn-phone-large:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(197, 165, 114, 0.4);
}

.availability {
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
    font-weight: 300;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 70px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-brass);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 300;
}

.footer-column p {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
    opacity: 0.9;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.certification-badges {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.certification-badges img {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certification-badges img:hover,
.certification-badges a:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 300;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-certifications {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-certifications img {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-certifications a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-certifications a:hover,
.footer-certifications img:hover {
    opacity: 0.8;
}

.cert-expiry {
    color: var(--white);
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .btn-phone-large {
        font-size: 26px;
        padding: 18px 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding: 80px 0 70px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 16px 40px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-phone {
        font-size: 15px;
        padding: 12px 28px;
    }
    
    .highlight-text {
        font-size: 22px;
    }
    
    .approach-box {
        padding: 35px 25px;
    }
}

/* ===================================
   Smooth Scrolling
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.9s ease-out;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .btn-primary,
    .btn-secondary,
    .btn-phone,
    .btn-phone-large,
    .contact-section {
        display: none;
    }
}
