/* Hair Aesthetics Club - Brand Theme CSS */
/* ========================================== */

/* ===== SEO OPTIMIZATION ===== */
/* Schema.org structured data styling */
[itemtype*="schema.org"] {
    display: contents;
}

/* Rich snippets styling */
.rich-snippet {
    display: none;
}

/* SEO-friendly heading hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Semantic HTML styling */
main, section, article, aside, nav, header, footer {
    display: block;
}

/* ===== BRAND COLOR VARIABLES ===== */
:root {
    /* Primary Colors - Golden Theme */
    --color-primary: #d4af37;
    --color-primary-hover: #b8941f;
    --color-primary-light: #e6c866;
    --color-primary-lighter: #f0d78c;
    
    /* Background Colors - Dark Charcoal/Espresso Theme */
    --color-bg-primary: #2a2a2a;
    --color-bg-secondary: #3a3a3a;
    --color-bg-tertiary: #4a4a4a;
    --color-bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Text Colors - Golden Hierarchy */
    --color-text-primary: #d4af37;
    --color-text-secondary: #e6c866;
    --color-text-tertiary: #f0d78c;
    --color-text-light: #f8e8b3;
    --color-text-white: #ffffff;
    --color-text-white-muted: rgba(255, 255, 255, 0.9);
    --color-text-white-subtle: rgba(255, 255, 255, 0.8);
    
    /* Border Colors */
    --color-border-primary: rgba(212, 175, 55, 0.2);
    --color-border-secondary: #5a5a5a;
    --color-border-tertiary: #4a4a4a;
    --color-border-dark: #333;
    
    /* Shadow Colors */
    --color-shadow-light: rgba(0, 0, 0, 0.3);
    --color-shadow-medium: rgba(0, 0, 0, 0.5);
    --color-shadow-heavy: rgba(0, 0, 0, 0.7);
    --color-shadow-overlay: rgba(0, 0, 0, 0.8);
    
    /* Accent Colors */
    --color-accent: #d4af37;
    --color-accent-hover: #b8941f;
    --color-accent-whatsapp: #25D366;
    --color-accent-whatsapp-shadow: rgba(37, 211, 102, 0.3);
    --color-accent-whatsapp-shadow-hover: rgba(37, 211, 102, 0.4);
    
    /* Status Colors */
    --color-success: #25D366;
    --color-error: #dc3545;
    --color-warning: #ffc107;
    
    /* Transparent Colors */
    --color-transparent-light: rgba(212, 175, 55, 0.1);
    --color-transparent-medium: rgba(212, 175, 55, 0.2);
    --color-transparent-heavy: rgba(212, 175, 55, 0.3);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ===== TYPOGRAPHY ===== */
.serif-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-accent);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-border-primary);
    padding: 1.2rem 0;
}

/* ===== ADVANCED BOOKING SYSTEM ===== */
.advanced-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-bg-primary);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.booking-flow {
    position: relative;
}

.booking-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.booking-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-header h2 {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* Service Categories */
.service-categories {
    margin-bottom: 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 8px;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
}

.category-tab.active {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.service-item.selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.duration {
    color: var(--color-text-secondary);
}

.price {
    color: var(--color-accent);
    font-weight: 600;
}

.select-service-btn {
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #b8943a;
    transform: translateY(-1px);
}

/* Location & Specialist Selection */
.location-specialist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-section, .specialist-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
}

.location-section h3, .specialist-section h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-options, .specialist-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-option, .specialist-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-option:hover, .specialist-option:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-accent);
}

.location-option.active, .specialist-option.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
}

.location-icon, .specialist-avatar {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.location-info h4, .specialist-info h4 {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.location-info p, .specialist-info p {
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.availability {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Calendar & Time Selection */
.calendar-time-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calendar-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
}

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

.calendar-nav {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(212, 175, 55, 0.1);
}

.calendar-header h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day-header {
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.calendar-day {
    text-align: center;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.calendar-day.other-month {
    color: var(--color-text-tertiary);
}

.calendar-day.current-month {
    color: var(--color-text-primary);
}

.calendar-day.available:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-accent);
}

.calendar-day.unavailable {
    color: var(--color-text-tertiary);
    cursor: not-allowed;
}

.calendar-day.today {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-accent);
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    font-weight: 600;
}

.time-slots-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
}

.time-slots-section h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.time-slot:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
}

.time-slot.selected {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
}

.no-slots {
    text-align: center;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Personal Information Form */
.personal-info-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border-primary);
    border-radius: 6px;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Booking Summary */
.booking-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-card h3 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-primary);
}

.summary-item:last-child {
    border-bottom: none;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Progress Bar */
.booking-progress {
    margin: 3rem 0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--color-border-primary);
    border-radius: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border-primary);
    transition: all 0.3s ease;
}

.progress-step.active .step-dot {
    background: var(--color-accent);
}

.step-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--color-accent);
}

/* Navigation */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-primary);
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-btn.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-primary);
}

.nav-btn.btn-primary:hover {
    background: #b8943a;
    transform: translateY(-1px);
}

.nav-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-primary);
}

.nav-btn.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
}

/* Payment System Styles */
.payment-section {
    max-width: 800px;
    margin: 0 auto;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-summary h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.payment-method.selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.payment-method-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.payment-method-info h4 {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.payment-method-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.payment-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.payment-form h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.paypal-info {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.paypal-info ul {
    margin: 0.5rem 0 0 1rem;
    color: var(--color-text-secondary);
}

.paypal-info li {
    margin-bottom: 0.25rem;
}

.bank-transfer-info {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.bank-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.bank-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.bank-note {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

/* Payment Summary Styles */
.summary-details {
    display: grid;
    gap: 0.75rem;
}

.summary-details .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border-primary);
}

.summary-details .summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advanced-booking-container {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 12px;
        padding-top: 0; /* Account for sticky progress bar */
    }
    
    .booking-header {
        margin-bottom: 2rem;
    }
    
    .booking-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .booking-header p {
        font-size: 1rem;
    }
    
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    /* Service Categories */
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-tab {
        width: 100%;
        max-width: 200px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
        width: 50px;
        margin: 0 auto;
    }
    
    .service-info h3 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.8rem;
    }
    
    .service-details {
        justify-content: center;
        gap: 1rem;
    }
    
    .select-service-btn {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
    
    /* Location & Specialist */
    .location-specialist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-section, .specialist-section {
        padding: 1rem;
    }
    
    .location-option, .specialist-option {
        padding: 0.75rem;
    }
    
    .location-icon, .specialist-avatar {
        font-size: 1.2rem;
        width: 35px;
    }
    
    .location-info h4, .specialist-info h4 {
        font-size: 0.9rem;
    }
    
    .location-info p, .specialist-info p {
        font-size: 0.75rem;
    }
    
    /* Calendar & Time Selection */
    .calendar-time-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calendar-section, .time-slots-section {
        padding: 1rem;
    }
    
    .calendar-header h3 {
        font-size: 1rem;
    }
    
    .calendar-nav {
        padding: 0.25rem;
        font-size: 1rem;
    }
    
    .calendar-day {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.25rem;
    }
    
    .time-slot {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Form */
    .personal-info-form {
        padding: 0 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    /* Payment Section */
    .payment-section {
        padding: 0 0.5rem;
    }
    
    .payment-summary, .payment-methods {
        margin-bottom: 1.5rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .payment-method {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .payment-method-icon {
        font-size: 1.5rem;
        width: 50px;
        margin: 0 auto;
    }
    
    .payment-method-info h4 {
        font-size: 1rem;
    }
    
    .payment-method-info p {
        font-size: 0.8rem;
    }
    
    .payment-form {
        padding: 1rem;
    }
    
    .payment-form h3 {
        font-size: 1.1rem;
    }
    
    /* Progress Bar */
    .booking-progress {
        margin: 2rem 0;
        position: sticky;
        top: 0;
        background: var(--color-bg-primary);
        z-index: 100;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border-primary);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .progress-step {
        flex: 1;
        min-width: 60px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    /* Navigation */
    .booking-navigation {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .nav-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Summary */
    .booking-summary {
        padding: 0 0.5rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-card h3 {
        font-size: 1.1rem;
    }
    
    .summary-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .advanced-booking-container {
        padding: 0.75rem;
        margin: 0.25rem;
    }
    
    .booking-header h1 {
        font-size: 1.6rem;
    }
    
    .step-header h2 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 0.75rem;
    }
    
    .calendar-day {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    
    .time-slot {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    
    .payment-method {
        padding: 0.75rem;
    }
    
    .nav-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Extra Small Screen Pricing Styles */
    .pricing-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .package-card {
        padding: 1rem !important;
        margin-bottom: 0.75rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.3rem;
    }
    
    .package-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 1rem;
    }
    
    .initial-price {
        font-size: 1.8rem !important;
        margin-bottom: 0.3rem;
    }
    
    .price-details {
        gap: 0.1rem;
    }
    
    .upfront-label {
        font-size: 0.75rem !important;
    }
    
    .monthly-price {
        font-size: 0.9rem !important;
    }
    
    .package-features {
        margin-bottom: 1rem;
    }
    
    .feature-item {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .package-actions {
        gap: 0.5rem;
    }
    
    .package-btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
    }
    
    .package-badge {
        font-size: 0.65rem !important;
        padding: 4px 12px !important;
        top: -8px;
    }
    
    .contract-note {
        font-size: 0.7rem !important;
        margin-top: 0.2rem;
    }
    
    .savings {
        font-size: 0.7rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
    }
    
    /* Mobile Container Styles */
    .services-container {
        padding: 0 1rem !important;
    }
    
    .pricing {
        padding: 3rem 0 !important;
    }
}

/* ===== BOOKING SYSTEM ===== */
.booking-hero {
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.booking-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.booking-hero h1 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.booking-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.booking-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

.booking-section {
    padding: 4rem 0;
    background: var(--color-bg-secondary);
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-container {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.booking-form-container h2 {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 1px solid var(--color-border-primary);
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border-primary);
    border-radius: 8px;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
}

.form-actions {
    margin-top: 1rem;
}

.booking-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8943a 100%);
    color: var(--color-bg-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.booking-submit:hover {
    background: linear-gradient(135deg, #b8943a 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.booking-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

.info-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expectations-list li {
    padding: 0.5rem 0;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.1rem;
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 3000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid var(--color-accent);
}

.notification-message {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .booking-benefits {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 2rem 0;
    }
    
    .booking-hero h1 {
        font-size: 1.8rem;
    }
    
    .booking-subtitle {
        font-size: 1rem;
    }
    
    .booking-section {
        padding: 2rem 0;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* ===== ELEGANT CONTACT DISPLAY ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border-primary);
    position: relative;
    overflow: visible;
    min-height: 120px;
    margin-top: 80px;
}

/* Mobile Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

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

.contact-modal-content {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    padding: 2rem;
    max-width: 90%;
    width: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-modal-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-modal-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-family: 'Playfair Display', Georgia, serif;
}

.contact-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-modal-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-modal-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-modal-action:hover::before {
    left: 100%;
}

.contact-modal-action:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    color: var(--color-accent);
}

.contact-modal-action.primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8943a 100%);
    color: var(--color-bg-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-modal-action.primary:hover {
    background: linear-gradient(135deg, #b8943a 0%, var(--color-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--color-bg-primary);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.contact-modal-action svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-modal-action:hover svg {
    transform: scale(1.1);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    margin-right: 1rem;
    white-space: nowrap;
}

.contact-hero-subtitle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.contact-hero-subtitle strong {
    color: var(--color-accent);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
}

.contact-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-action:hover::before {
    left: 100%;
}

.contact-action:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    color: var(--color-accent);
}

.contact-action svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-action:hover svg {
    transform: scale(1.1);
}

.contact-action-label {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 0.2rem;
    font-weight: 400;
}

.contact-action-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8943a 100%);
    color: var(--color-bg-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-action-primary:hover {
    background: linear-gradient(135deg, #b8943a 0%, var(--color-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--color-bg-primary);
}

/* Reset navbar position */
.navbar {
    top: 0;
}

/* Reset main content margins */
main, .hero, section {
    margin-top: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-primary);
    font-size: 1rem;
    box-shadow: 0 2px 8px var(--color-shadow-light);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-full {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-acronym {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.nav-menu a:hover, .nav-menu a:active {
    color: var(--color-bg-primary);
    background: var(--color-accent);
    transform: translateY(-1px);
}

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

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

/* ===== BUTTON DESIGN SYSTEM ===== */

/* Primary Buttons (Golden) */
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: var(--color-bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Secondary Buttons (Outlined) */
.btn-secondary {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-shadow-light);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Consultation Buttons (Special) */
.btn-consultation {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: var(--color-bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Package Buttons */
.package-btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-btn.primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: var(--color-bg-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.package-btn.secondary {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    color: var(--color-accent);
    box-shadow: 0 4px 15px var(--color-shadow-light);
    border: 2px solid var(--color-accent);
}

.package-btn.consultation {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: var(--color-bg-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Book Consultation Buttons */
.book-consultation-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: var(--color-bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
    width: 100%;
}

.book-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== CARDS ===== */
.card {
    background: var(--color-bg-tertiary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--color-shadow-light);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-card {
    background: var(--color-bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--color-shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-primary);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow-medium);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 600;
}

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

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* ===== PACKAGE CARDS ===== */
.package-card {
    background: var(--color-bg-tertiary);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.package-price {
    margin-bottom: 2rem;
}

.initial-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.upfront-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.plus {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.monthly-price {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.contract-note {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

.savings {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
}

.package-features {
    margin-bottom: 2rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.feature-icon {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.consultation-card {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 148, 31, 0.05));
}

/* ===== SECTIONS ===== */
.section-transition {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* ===== FORM ELEMENTS ===== */
.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border-secondary);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Mobile Pricing Card Styles */
    .package-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .package-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem;
    }
    
    .initial-price {
        font-size: 2rem !important;
        margin-bottom: 0.5rem;
    }
    
    .price-details {
        gap: 0.2rem;
    }
    
    .upfront-label {
        font-size: 0.8rem !important;
    }
    
    .monthly-price {
        font-size: 1rem !important;
    }
    
    .package-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem;
        gap: 0.6rem;
    }
    
    .package-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .package-btn {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .package-badge {
        font-size: 0.7rem !important;
        padding: 6px 16px !important;
        top: -10px;
    }
    
    .contract-note {
        font-size: 0.75rem !important;
        margin-top: 0.3rem;
    }
    
    .savings {
        font-size: 0.75rem !important;
    }
    
    /* Mobile Container Styles */
    .services-container {
        padding: 0 1.5rem !important;
    }
    
    .pricing {
        padding: 4rem 0 !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-full {
        font-size: 0.6rem;
    }
    
    .logo-acronym {
        font-size: 1.2rem;
    }
    
    /* Mobile Navigation for Booking Page */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    /* Adjust main content for fixed navbar */
    .advanced-booking-container {
        margin-top: 80px;
    }
    
    /* Ensure contact hero doesn't interfere */
    .contact-hero {
        margin-top: 80px;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

.luxury-glow {
    box-shadow: 0 4px 20px var(--color-shadow-light);
    transition: all 0.3s ease;
}

.luxury-glow:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-column h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-column a {
    color: var(--color-text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-contact-link {
    color: var(--color-accent) !important;
    font-weight: 500;
}

.footer-contact-link:hover {
    color: var(--color-accent-hover) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    width: 22px;
    height: 22px;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    border-color: var(--color-accent);
}

.social-link:hover::before {
    transform: scaleX(1);
}

.social-link:hover svg {
    color: #ffffff;
}

.studio-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-hours-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
}

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

.footer-bottom p {
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

/* ===== WHATSAPP CHAT BUTTON ===== */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-accent-whatsapp);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 20px var(--color-accent-whatsapp-shadow);
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--color-accent-whatsapp-shadow-hover);
    color: white;
}

.whatsapp-chat svg {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    display: none;
}

.whatsapp-chat:hover .whatsapp-text {
    display: inline;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== CONTACT MODAL TRIGGER ===== */
/* Hide modal trigger on desktop */
@media (min-width: 769px) {
    .contact-modal-trigger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Mobile Contact Modal Approach */
    .contact-hero {
        display: none; /* Hide contact hero on mobile */
    }
    
    /* Hide modal trigger on desktop */
    .contact-modal-trigger {
        display: none; /* Hidden by default */
    }
    
    /* Show modal trigger ONLY on mobile */
    @media (max-width: 768px) {
        .contact-modal-trigger {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--color-accent);
            color: var(--color-bg-primary);
            padding: 0.6rem 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: fixed;
            top: 80px;
            right: 1rem;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .contact-modal-trigger:hover {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }
        
        .contact-modal-trigger svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
    }
}

@media (prefers-contrast: high) {
    :root {
        --color-text-primary: #ffffff;
        --color-text-secondary: #cccccc;
        --color-bg-primary: #000000;
        --color-bg-secondary: #111111;
        --color-bg-tertiary: #222222;
    }
}

/* ===== IMPROVED CONTACT NUMBERS DISPLAY ===== */
.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

/* ===== LOCATION TRANSPORT SECTIONS ===== */
.location-transport-section {
    margin-bottom: 1.5rem;
}

.location-transport-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.location-transport {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-transport li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.location-transport li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .contact-numbers {
        gap: 0.5rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }
    
    .location-transport-section {
        margin-bottom: 2rem;
    }
    
    .location-transport-section h5 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .location-transport li {
        font-size: 0.85rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .location-transport li svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== PAYPAL BUTTON STYLING ===== */
#paypal-button-container {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    text-align: center;
}

#paypal-button-container .paypal-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    #paypal-button-container {
        padding: 0.75rem;
    }
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-primary), var(--color-bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-card {
    background: var(--color-bg-primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s infinite;
}

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

.success-card h1 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-card p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-details {
    background: var(--color-bg-tertiary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.success-details h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.success-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .success-card {
        padding: 2rem;
    }
    
    .success-card h1 {
        font-size: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-numbers {
        gap: 0.25rem;
    }
    
    .contact-label {
        font-size: 0.7rem;
        margin-left: 0.2rem;
    }
    
    .location-transport li {
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .location-transport li svg {
        width: 14px;
        height: 14px;
    }
}

/* ===== FORM ELEMENTS ===== */
.newsletter {
    padding: 4rem 2rem;
    background: var(--color-bg-secondary);
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 400;
}

.newsletter p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border-secondary);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* Newsletter Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* ===== BLOG STYLING ===== */
/* Article Header */
.article-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.article-header-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Article Body */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border-primary);
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 3rem 0 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--color-primary);
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 2.5rem 0 1rem 0;
}

.article-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 2rem 0 1rem 0;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.article-body em {
    color: var(--color-primary);
    font-style: italic;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-main {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border-primary);
    overflow: hidden;
}

.article-sidebar {
    background: var(--color-bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

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

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* Article Content */
.article-content {
    padding: 3rem 2rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

/* Article Sidebar */
.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section li {
    margin-bottom: 0.75rem;
}

.sidebar-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

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

/* Article Callouts */
.article-callout {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.article-callout::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
}

.article-callout h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.article-callout p {
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
}

/* Article Images */
.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Article Tables */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-table th {
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border-secondary);
    color: var(--color-text-secondary);
}

.article-table tr:hover {
    background: var(--color-bg-secondary);
}

/* Article Quotes */
.article-quote {
    background: var(--color-bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.article-quote cite {
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

/* Article Lists */
.article-checklist {
    list-style: none;
    padding: 0;
}

.article-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--color-border-secondary);
}

.article-checklist li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-header {
        padding: 3rem 0;
    }
    
    .article-body {
        padding: 2rem 1rem;
        margin: -1rem 1rem 0 1rem;
    }
    
    .article-content {
        padding: 2rem 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .article-layout {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
    
    .article-callout {
        padding: 1.5rem;
    }
} 