/* ============================================
   ChampionsGate Carwash v6 - Professional Styling
   
   NEW IN V6:
   - Icon image uploads (replaces emojis)
   - Black subheadings instead of gray
   - Responsive shade levels flex grid for mobile
   - White background / blue text "Get a Quote" button
   - Redesigned footer with centered title and social media icons
   - Amelia booking modal integration
   - Improved mobile responsiveness
   
   Maintained from v5: No green borders, centered titles, customizable fonts, 7-level tint guide
   ============================================ */

/* CSS Variables - Customizable via WordPress Customizer */
:root {
    --primary-color: #2563EB;
    --accent-color: #10B981;
    --hero-opacity: 0.8;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #FFFFFF;
    --background: #FFFFFF;
    --surface: #F9FAFB;
    --border-color: #E5E7EB;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--background);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

/* ============================================
   Buttons
   ============================================ */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: var(--text-light);
}

.cta-button.secondary {
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    padding-top: 80px;
}

.hero-image {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, var(--hero-opacity)), 
        rgba(16, 185, 129, calc(var(--hero-opacity) * 0.75)));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    padding: 3rem 0;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--surface);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-grid.secondary-services {
    margin-top: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

/* v5: Removed .service-card.featured and .service-card.secondary green border styling */

/* v5: Service badge removed - no more "Most Popular" ribbons */

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 100px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--surface);
    border-radius: 16px;
    border: 2px dashed var(--border-color);
    color: var(--text-gray);
    grid-column: 1 / -1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--surface);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.contact-item p {
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.contact-cta h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.contact-cta .cta-button {
    background: var(--background);
    color: var(--primary-color);
}

.contact-cta .cta-button:hover {
    background: var(--text-light);
    color: var(--accent-color);
}

.specialty-appointment {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.specialty-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ============================================
   All Services Page
   ============================================ */
.all-services-page {
    padding-top: 80px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Wash Options */
.wash-options-section {
    padding: 80px 0;
    background: var(--surface);
}

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

.wash-box {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.wash-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

/* v5: Removed .wash-box.featured green border styling */

.wash-box.premium {
    border-color: var(--primary-color);
}

/* v5: Removed .wash-badge styling - no more "Most Popular" ribbons */

.wash-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* Ceramic Section */
.ceramic-section {
    padding: 80px 0;
}

.ceramic-benefits {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.ceramic-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.ceramic-benefits li {
    color: var(--text-dark);
    font-weight: 500;
}

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

.ceramic-box {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.ceramic-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.ceramic-box.premium {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(37, 99, 235, 0.03));
}

.vehicle-types {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.ceramic-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.ceramic-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tinting Section */
.tinting-section {
    padding: 80px 0;
    background: var(--surface);
}

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

.tinting-box {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.tinting-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

/* v5: Removed .tinting-box.featured green border styling */

.tinting-box.premium {
    border-color: var(--primary-color);
}

.tint-subheading {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tinting-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.tint-shade-reference {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tint-shade-reference h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.shade-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shade-segment {
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.shade-segment span {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.shade-segment small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.shade-50 {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}

.shade-35 {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.shade-20 {
    background: linear-gradient(135deg, #374151, #1F2937);
}

.shade-5 {
    background: linear-gradient(135deg, #1F2937, #111827);
}

.shade-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* v5: 7-Level Shade Guide */
.shade-bar-seven {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.shade-70 {
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
}

.shade-30 {
    background: linear-gradient(135deg, #4B5563, #374151);
}

.shade-15 {
    background: linear-gradient(135deg, #1F2937, #111827);
}

/* v5: Centered Titles for All Services Page */
.centered-title {
    text-align: center;
}

/* v5: Remove blue border from appointment button */
.appointment-button {
    border: none !important;
}

/* Bumper to Bumper */
.bumper-to-bumper-section {
    padding: 80px 0;
}

.bumper-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.bumper-banner h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.bumper-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Detailing Section */
.detailing-section {
    padding: 80px 0;
    background: var(--surface);
}

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

.detailing-box {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.detailing-box:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.detail-list {
    list-style: none;
    margin: 2rem 0;
}

.detail-list li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    line-height: 1.6;
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

/* Other Services */
.other-services-section {
    padding: 80px 0;
}

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

.other-service-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.other-service-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
    background: var(--background);
}

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

.other-service-item p {
    margin-bottom: 1.5rem;
}

/* Add-On Services */
.addon-services-section {
    padding: 80px 0;
    background: var(--surface);
}

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

.addon-item {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.addon-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.addon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.addon-item p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Services CTA */
.services-cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info .logo-text {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact h4,
.footer-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .detailing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-image {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid-dynamic {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .wash-grid,
    .ceramic-pricing-grid,
    .tinting-grid {
        grid-template-columns: 1fr;
    }
    
    .shade-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .contact-item,
    .wash-box,
    .ceramic-box,
    .tinting-box {
        padding: 1.5rem;
    }
    
    .bumper-banner,
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .shade-bar {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   V6 ADDITIONS - NEW STYLES
   ============================================ */

/* Icon Images (replaces emojis) */
.service-icon-image,
.contact-icon-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.contact-icon-image {
    width: 48px;
    height: 48px;
}

/* Black Subheadings (v6 change from gray) */
.vehicle-types,
.tint-subheading,
.hero-subtitle {
    color: var(--text-dark) !important;
}

/* Get a Quote Button - White Background, Blue Text */
.quote-button {
    background: var(--background) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.quote-button:hover {
    background: var(--primary-color) !important;
    color: var(--text-light) !important;
}

/* Responsive Shade Levels Grid (v6) */
.shade-levels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.shade-box {
    flex: 0 1 120px;
    min-width: 80px;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
}

.shade-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shade-guide-title {
    text-align: center;
    margin: 2rem 0 1rem;
    font-size: 1.75rem;
}

/* Shade levels - darker to lighter */
.shade-5 { background: linear-gradient(135deg, #0a0a0a, #1a1a1a); }
.shade-15 { background: linear-gradient(135deg, #262626, #3a3a3a); }
.shade-20 { background: linear-gradient(135deg, #333333, #4a4a4a); }
.shade-30 { background: linear-gradient(135deg, #4d4d4d, #666666); }
.shade-35 { background: linear-gradient(135deg, #5a5a5a, #737373); }
.shade-50 { background: linear-gradient(135deg, #808080, #999999); }
.shade-70 { background: linear-gradient(135deg, #b3b3b3, #cccccc); }

@media (max-width: 768px) {
    .shade-box {
        flex: 0 1 calc(33.333% - 1rem);
        min-width: 70px;
        height: 100px;
    }
    
    .shade-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shade-box {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 60px;
        height: 80px;
    }
    
    .shade-levels-grid {
        gap: 0.5rem;
    }
}

/* Remove subheading text under shade levels (kept title only) */
.tint-shade-guide p.section-intro {
    display: none;
}

/* Amelia Modal Popup */
.amelia-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.amelia-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.amelia-modal-content {
    background-color: var(--background);
    margin: auto;
    padding: 2rem;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amelia-modal-close {
    color: var(--text-gray);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
    line-height: 1;
}

.amelia-modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

/* Footer V6 Redesign */
.footer-title-section {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 2px solid var(--border-color);
}

.footer-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.footer-content-v6 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-column {
    flex: 0 1 auto;
}

.footer-column h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    color: var(--text-dark);
    margin: 0.5rem 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
}

/* Remove old footer styling */
.site-footer .footer-content {
    display: none;
}

.site-footer .footer-info,
.site-footer .footer-contact,
.site-footer .footer-hours,
.site-footer .footer-tagline {
    display: none;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-main-title {
        font-size: 2rem;
    }
    
    .footer-content-v6 {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
}

/* Mobile Adjustments for Icon Images */
@media (max-width: 768px) {
    .service-icon-image {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon-image {
        width: 36px;
        height: 36px;
    }
}

/* Ensure appointment button has no thick border (v5 fix maintained in v6) */
.appointment-button {
    border: 2px solid var(--primary-color) !important;
}

/* Centered section titles (maintained from v5) */
.centered-title {
    text-align: center;
    margin-bottom: 2rem;
}

