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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    color: #1a365d;
    margin: 0;
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c6a96b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a365d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: #1a365d;
    color: white;
}

.cta-button.primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.cta-button.secondary:hover {
    background: #1a365d;
    color: white;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-button.full-width {
    width: 100%;
}

/* Page Hero - Enhanced for Contact Page */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(198, 169, 107, 0.2));
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Introduction Section */
.contact-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.intro-content h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.method-icon {
    margin-bottom: 20px;
    color: #c6a96b;
}

.method-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.method-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.method-details strong {
    color: #1a365d;
    font-size: 1.1rem;
}

.method-details span {
    color: #718096;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #4a5568;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c6a96b;
    box-shadow: 0 0 0 3px rgba(198, 169, 107, 0.1);
}

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

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.checkmark {
    display: none;
}

.form-footer {
    margin-top: 30px;
    padding: 20px;
    background: #fef5e7;
    border-radius: 8px;
    border-left: 4px solid #c6a96b;
}

.form-footer p {
    margin: 0;
    color: #744210;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #c6a96b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Emergency Resources Section */
.emergency-resources {
    padding: 80px 0;
    background: #1a365d;
    color: white;
}

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

.emergency-content h2 {
    color: white;
    margin-bottom: 20px;
}

.emergency-content > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.resource {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resource h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.resource p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

.resource strong {
    color: #c6a96b;
    font-size: 1.3rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(198, 169, 107, 0.3));
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.trust-content h2 {
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #c6a96b;
    font-family: 'Playfair Display', serif;
}

/* Specific styling for Treatment Transition to make it smaller */
.stat-number.smaller-text {
    font-size: 1.8rem; /* 40% reduction from 3rem */
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Programs Section */
.programs-section {
    padding: 6rem 0;
}

.programs-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #4a5568;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-cta {
    text-align: center;
}

/* Stories Section */
.stories-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.stories-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #c6a96b;
    font-weight: 600;
}

.stories-cta {
    text-align: center;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle {
    text-align: center;
    padding: 1.5rem;
}

.principle h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #1a365d;
    color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c6a96b;
}

.privacy-note {
    font-size: 0.9rem;
    color: #4a5568;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #c6a96b;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Contact Page Responsive Styles */
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .contact-intro,
    .contact-methods,
    .contact-form-section,
    .faq-section,
    .emergency-resources {
        padding: 60px 0;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .principles {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile Styles */
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .contact-intro,
    .contact-methods,
    .contact-form-section,
    .faq-section,
    .emergency-resources {
        padding: 40px 0;
    }
    
    .method-card {
        padding: 25px 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .resource {
        padding: 20px 15px;
    }
    
    .form-intro h2 {
        font-size: 1.8rem;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .emergency-content h2 {
        font-size: 1.8rem;
    }
}


/* Founder Photo Section */
.founder-photo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founder-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .founder-photo {
        width: 250px;
        height: 250px;
    }
    
    .founder-photo-section {
        padding: 40px 0;
    }
}


/* Center text on About page */
.founder-section .founder-text {
    text-align: center;
}

.founder-section .founder-text h2,
.founder-section .founder-text h3,
.founder-section .founder-text p {
    text-align: center;
}

.mission-section .content-text {
    text-align: center;
}

.mission-section .content-text h2,
.mission-section .content-text p {
    text-align: center;
}

.page-hero h1 {
    text-align: center;
}


/* Center the mission section image below text */
.mission-section .content-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mission-section .content-image {
    display: flex;
    justify-content: center;
    width: 100%;
}

.mission-section .content-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .mission-section .content-image img {
        max-width: 100%;
    }
}


/* Center the Programs Overview section */
.programs-overview .overview-content {
    text-align: center;
}

.programs-overview .overview-content h2,
.programs-overview .overview-content p {
    text-align: center;
}


/* Podcast Appearances Section */
.podcast-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.podcast-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.podcast-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.podcast-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.podcast-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.podcast-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.podcast-item p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.podcast-link {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.podcast-link:hover {
    background: linear-gradient(135deg, #34495e 0%, #2980b9 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .podcast-section {
        padding: 60px 0;
    }
    
    .podcast-content h2 {
        font-size: 2rem;
    }
    
    .podcast-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .podcast-item {
        padding: 20px;
    }
}


/* Success Stories Hero Image Section */
.stories-hero-image {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-image-content {
    text-align: center;
}

.hero-image-content img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Success Stories Placeholder Section */
.stories-placeholder {
    padding: 80px 0;
    text-align: center;
}

.placeholder-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.placeholder-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-image-content img {
        border-radius: 10px;
    }
    
    .placeholder-content h2 {
        font-size: 2rem;
    }
    
    .placeholder-content p {
        font-size: 1.1rem;
    }
}



/* Testimonials Content Styles */
.testimonials-content {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-intro h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.testimonials-intro p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card.placeholder .placeholder-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.testimonial-card.placeholder .placeholder-content p {
    color: rgba(255, 255, 255, 0.9);
}

.quote-icon {
    font-size: 4rem;
    color: #c6a96b;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-attribution {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.client-info .client-name {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.client-info .client-location {
    color: #718096;
    font-size: 0.95rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}


/* Updated Footer Styles */
.footer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-header .footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

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

.footer-bottom .footer-links {
    margin-bottom: 1rem;
}

.footer-bottom .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom .footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-links ul li a:hover {
    color: white;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Thank You Page Styles */
.thank-you-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: #4299e1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.emergency-notice {
    background: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.emergency-notice h3 {
    color: #c53030;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.emergency-notice p {
    color: #742a2a;
    margin: 0;
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

