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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Color Variables & Design System */
:root {
    --primary-color: #c18e34;
    --primary-light: #d4a556;
    --primary-dark: #a67829;
    --secondary-color: #ea8f6e;
    --secondary-light: #f2a688;
    --secondary-dark: #d17a56;
    --accent-color: #f4f1e8;
    --accent-light: #f8f6f0;
    --accent-dark: #ede8d8;
    --text-dark: #2c2c2c;
    --text-medium: #555555;
    --text-light: #666666;
    --text-lighter: #888888;
    --white: #ffffff;
    --background: #fafafa;
    --border-light: #f0f0f0;
    --border-medium: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-search {
    margin-left: 1rem;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Services Page Styles */
.services-grid-section {
    padding: 4rem 0;
    background: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card-detailed {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-card-header .service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-card-header .service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.service-card-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.service-card-content .service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-card-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* Service Detail Page Styles */
.breadcrumb {
    background: white;
    padding: 2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #eee;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-nav span:not(:last-child) {
    color: var(--text-light);
    font-weight: 400;
}

.breadcrumb-nav span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.service-hero {
    padding: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f6f0 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.service-hero-text .service-icon-large {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-hero-text .service-icon-large img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-hero-text h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.service-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-self: center;
}

.stat-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.service-content {
    padding: 0;
    background: #fafafa;
}

.service-content-grid {
    display: grid;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    padding: 5rem 2rem;
}

.content-section:nth-child(even) {
    background: white;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-item span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.process-steps {
    display: grid;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Modern Process Timeline */
.process-steps::before {
    content: '';
    position: absolute;
    left: 3rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-light) 100%
    );
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(193, 142, 52, 0.3);
}

/* Progress Line Animation */
.process-steps::after {
    content: '';
    position: absolute;
    left: 3rem;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, 
        var(--primary-light) 0%, 
        var(--secondary-light) 100%
    );
    border-radius: 2px;
    z-index: 2;
    animation: progressLine 3s ease-in-out infinite alternate;
}

@keyframes progressLine {
    0% { height: 0%; }
    100% { height: 100%; }
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem 3rem 0;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover {
    transform: translateX(15px) scale(1.02);
}

.step-item:nth-child(even) {
    background: linear-gradient(135deg, rgba(244, 241, 232, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    margin: 0 -2rem;
    padding: 3rem 4rem 3rem 2rem;
}

/* Enhanced Step Numbers */
.step-number {
    position: relative;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%,
        var(--primary-light) 100%
    );
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(193, 142, 52, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(193, 142, 52, 0.2) 0%, 
        rgba(234, 143, 110, 0.2) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.step-item:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(193, 142, 52, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.step-item:hover .step-number::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Enhanced Step Content */
.step-content {
    position: relative;
    padding: 0.8rem 0;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.step-item:hover .step-content::before {
    opacity: 1;
    transform: scaleY(1.1);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
}

.step-content p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.step-item:hover .step-content p {
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Step Icons */
.step-item::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.step-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(10px);
}

/* Milestone Indicators */
.step-item:first-child .step-number::after {
    content: '🚀';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.step-item:last-child .step-number::after {
    content: '🎯';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Step Count Display */
.content-section:has(.process-steps)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-light) 100%
    );
    border-radius: 0 0 10px 10px;
}

.content-section:has(.process-steps) {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(244, 241, 232, 0.1) 0%, 
        rgba(255, 255, 255, 0.9) 100%
    );
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.faq-item h4::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-left: 2rem;
}

.related-services {
    padding: 0;
    background: #f8f8f8;
}

.related-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.related-services .service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.related-services .service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.related-services .service-card .service-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.related-services .service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.related-services .service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-cta {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.service-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-cta .cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-cta .cta-content h2::after {
    background: white;
}

.service-cta .cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .service-hero-content {
        max-width: 1400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tablet Process Steps */
    .process-steps {
        max-width: 800px;
        padding: 1.5rem 0;
    }
    
    .process-steps::before {
        left: 2.5rem;
        width: 3px;
    }
    
    .process-steps::after {
        left: 2.5rem;
        width: 3px;
    }
    
    .step-item {
        padding: 2.5rem 1.5rem 2.5rem 0;
        gap: 2rem;
    }
    
    .step-item:nth-child(even) {
        padding: 2.5rem 3rem 2.5rem 1.5rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .step-item:hover {
        transform: translateX(10px) scale(1.01);
    }
    
    .step-content h4 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 1.05rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Service Detail Page Mobile */
    .breadcrumb {
        padding: 1rem 0;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 3rem 0;
    }
    
    .service-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .service-hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        min-width: auto;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* Mobile Process Steps */
    .process-steps {
        gap: 0;
        padding: 1rem 0;
    }
    
    .process-steps::before {
        left: 1.5rem;
        width: 2px;
    }
    
    .process-steps::after {
        left: 1.5rem;
        width: 2px;
    }
    
    .step-item {
        display: flex;
        flex-direction: row;
        padding: 2rem 1rem 2rem 0;
        gap: 1.5rem;
        text-align: left;
    }
    
    .step-item:nth-child(even) {
        background: transparent;
        margin: 0;
        padding: 2rem 1rem 2rem 0;
    }
    
    .step-item:hover {
        transform: translateX(8px) scale(1.01);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .step-content {
        padding: 0.5rem 0;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .step-item::after {
        display: none;
    }
    
    .step-item:first-child .step-number::after,
    .step-item:last-child .step-number::after {
        display: none;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-item h4 {
        font-size: 1.2rem;
        padding-left: 2rem;
    }
    
    .faq-item p {
        padding-left: 2rem;
    }
    
    .service-cta .cta-content {
        padding: 3rem 1rem;
    }
    
    .service-cta .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .service-cta .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .service-card-actions .btn {
        flex: none;
    }
}

/* Contact Form Enhancements */
.service-interest-group {
    position: relative;
}

.service-interest-group input[readonly] {
    background-color: var(--accent-light);
    border-color: var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
}

.form-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

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

/* Focus States */
button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection Colors */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Page Layout & Section Spacing */
main {
    min-height: 100vh;
    padding-top: 0;
}

/* Unified Section Spacing */
section {
    padding: 5rem 0;
}

section:first-child {
    padding-top: 6rem;
}

section:last-child {
    padding-bottom: 5rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f6f0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    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-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.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;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
}

.btn-nav::after {
    display: none !important;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #faf8f3 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

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

.hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: var(--accent-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
}

/* Team Preview */
.team-preview {
    padding: 80px 0;
    background: var(--white);
}

.team-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.team-member {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Specific adjustments for staff photos */
.team-member img[alt*="Yufen Xie"],
.team-member img[alt*="Hailey"],
.team-member img[alt*="Lily"],
.team-member img[alt*="Donna"] {
    object-position: center 10%;
    object-fit: contain;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f8f6f0 100%);
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid rgba(193, 142, 52, 0.1);
}

/* Enhanced hover effects for team photos */
.team-member:hover img[alt*="Yufen Xie"],
.team-member:hover img[alt*="Hailey"],
.team-member:hover img[alt*="Lily"],
.team-member:hover img[alt*="Donna"] {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.8rem;
}

/* Fallback for images that fail to load */
.team-member img {
    background: var(--accent-color);
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.image-placeholder::after {
    content: 'Image Loading...';
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Grid Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.team-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.team-member h3,
.team-member p {
    padding: 0 1.5rem;
}

.team-member h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

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

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--primary-color);
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #faf8f3 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 6rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-text {
    direction: ltr;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(193, 142, 52, 0.3);
}

.service-icon-large img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.service-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Active navigation link */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Team Detailed */
.team-detailed {
    padding: 80px 0;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.team-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.team-member-detailed {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member-detailed:hover .member-image img {
    transform: scale(1.03);
}

.member-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.member-description p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.member-specialties {
    list-style: none;
    margin: 0;
}

.member-specialties li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.member-specialties li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.member-specialties li:last-child {
    border-bottom: none;
}

.team-member {
    position: relative;
}

.member-bio {
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    margin-top: 1rem;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-member:hover .member-bio {
    opacity: 1;
    transform: translateY(0);
}

.member-bio p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-detail-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-detail-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

.locations-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.location-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-3px);
}

.location-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

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

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 142, 52, 0.1);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-contact .btn-secondary {
    background: white;
    color: #dc3545;
    border-color: white;
}

.emergency-contact .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* About Page Styles */
.about-content-section {
    padding: 80px 0;
}

.about-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text ul {
    margin-bottom: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
    position: sticky;
    top: 120px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Locations Overview */
.locations-overview {
    padding: 80px 0;
    background: var(--white);
}

.locations-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.locations-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.location-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.location-card p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.stats-section h2 {
    color: white;
    margin-bottom: 3rem;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Booking Page Styles */
.booking-section {
    padding: 80px 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.appointment-types {
    margin-bottom: 3rem;
}

.appointment-types h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.appointment-type-card {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.appointment-type-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.appointment-type-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-notes h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.booking-notes ul {
    list-style: none;
    padding: 0;
}

.booking-notes li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.booking-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.booking-form h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent-color);
}

.form-disclaimer {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.form-disclaimer p {
    margin: 0;
    color: var(--text-light);
}

/* Emergency Info */
.emergency-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-info .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.emergency-info .contact-item {
    color: rgba(255, 255, 255, 0.9);
}

.emergency-info .contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.emergency-info .contact-item a:hover {
    text-decoration: underline;
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 15px;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 142, 52, 0.3);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--accent-color);
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 1.5rem 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Search Page Styles */
.search-section {
    padding: 80px 0;
}

.search-form-section {
    margin-bottom: 3rem;
    text-align: center;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}

.search-input-group input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1.1rem;
    background: transparent;
}

.search-input-group input:focus {
    outline: none;
}

.search-btn {
    padding: 15px 25px;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
}

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

.results-summary {
    background: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.results-summary p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.results-list {
    display: grid;
    gap: 1.5rem;
}

.result-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

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

.type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.type-badge.service {
    background: rgba(193, 142, 52, 0.1);
    color: var(--primary-color);
}

.type-badge.team {
    background: rgba(234, 143, 110, 0.1);
    color: var(--secondary-color);
}

.type-badge.page {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.result-item h3 {
    margin-bottom: 1rem;
}

.result-item h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-item h3 a:hover {
    color: var(--primary-color);
}

.result-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.result-link:hover {
    color: var(--secondary-color);
}

mark {
    background: rgba(255, 235, 59, 0.3);
    padding: 2px 4px;
    border-radius: 3px;
}

.no-results {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results ul {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
}

.no-results li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.no-results a {
    color: var(--primary-color);
    text-decoration: none;
}

.no-results a:hover {
    text-decoration: underline;
}

.search-suggestions {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
}

.search-suggestions h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.search-help {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.search-help h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.search-category {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 10px;
}

.search-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.search-category p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--accent-color);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 2rem 0;
    position: relative;
}

.testimonial-author {
    border-top: 2px solid var(--accent-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-author span:last-child {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Testimonials Page Styles */
.featured-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.featured-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.featured-testimonial {
    background: linear-gradient(135deg, var(--accent-color), #fdfcf8);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.treatment-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 2rem 0;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.featured-testimonial .testimonial-author {
    border-top: 2px solid rgba(193, 142, 52, 0.2);
    padding-top: 1rem;
}

.featured-testimonial .testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.date {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Treatment Filter */
.testimonials-by-treatment {
    padding: 80px 0;
    background: var(--accent-color);
}

.testimonials-by-treatment h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.treatment-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 142, 52, 0.3);
}

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

.testimonial-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star.filled {
    color: #ffd700;
}

.star.empty {
    color: #ddd;
}

.treatment {
    background: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-item blockquote {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--accent-color);
    padding-top: 1rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-footer .date {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Testimonial Stats */
.testimonial-stats {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.testimonial-stats h2 {
    color: white;
    margin-bottom: 3rem;
}

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

.testimonial-stats .stat-item {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-stats .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Share Story Section */
.share-story {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.share-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.share-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.share-story .btn {
    background: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: 700;
}

.share-story .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Insurance Page Styles */
.insurance-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    gap: 1.5rem;
}

.overview-stats .stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(193, 142, 52, 0.3);
}

.overview-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.overview-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Insurance Coverage */
.insurance-coverage {
    padding: 80px 0;
    background: var(--accent-color);
}

.insurance-coverage h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.coverage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coverage-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coverage-card ul {
    text-align: left;
    color: var(--text-light);
    line-height: 1.6;
}

.coverage-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Financing Options */
.financing-options {
    padding: 80px 0;
    background: var(--white);
}

.financing-options h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.financing-option {
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.financing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.financing-option.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(193, 142, 52, 0.2);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.option-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--primary-color);
}

.option-badge.popular {
    background: var(--primary-color);
    color: white;
}

.financing-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.option-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--accent-color);
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Cost Breakdown */
.cost-breakdown {
    padding: 80px 0;
    background: var(--accent-color);
}

.cost-breakdown h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cost-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
    margin-bottom: 2rem;
}

.cost-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--accent-color);
    align-items: center;
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cost-service strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cost-service span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cost-range {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.cost-includes {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cost-note {
    background: rgba(193, 142, 52, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cost-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Financial Counseling */
.financial-counseling {
    padding: 80px 0;
    background: var(--white);
}

.counseling-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.counseling-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.counseling-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.counseling-services h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.counseling-services ul {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.counseling-services li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.counseling-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.counselor-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.counselor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.counselor-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.counselor-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.counselor-card p:last-of-type {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Next Steps */
.next-steps {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
}

.steps-content h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
}

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

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-member-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member img {
        height: 250px;
    }
    
    .team-member img[alt*="Yufen Xie"],
    .team-member img[alt*="Hailey"],
    .team-member img[alt*="Lily"],
    .team-member img[alt*="Donna"] {
        padding: 0.8rem;
        object-position: center 5%;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        position: static;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-map {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .search-categories {
        grid-template-columns: 1fr;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .booking-notes li {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services-preview,
    .about-preview,
    .team-preview,
    .contact-cta {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}