:root {
    --primary-gold: #C9A96E;
    --secondary-cream: #F5F1E8;
    --deep-charcoal: #2C2C2C;
    --soft-gray: #FAFAFA;
    --pure-white: #FFFFFF;
    --accent-blue: #4A90E2;
    --success-green: #27AE60;
    --warning-orange: #F39C12;
    --error-red: #E74C3C;
    --shadow-light: rgba(201, 169, 110, 0.1);
    --shadow-medium: rgba(201, 169, 110, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #C9A96E 0%, #B8956A 50%, #A68B5B 100%);
    --gradient-secondary: linear-gradient(135deg, #F5F1E8 0%, #FAFAFA 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato';
    line-height: 1.7;
    color: var(--deep-charcoal);
    background-color: var(--pure-white);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Enhanced Typography with RTL Support */
.arabic-text {
    font-family: 'Amiri', 'Noto Sans Arabic', serif;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.arabic-heading {
    font-family: 'Amiri', 'Noto Sans Arabic', serif;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* RTL Layout Fixes */
[dir="rtl"] .navbar-nav { margin-left: auto; margin-right: 0; }
[dir="rtl"] .language-switcher { margin-right: auto; margin-left: 0; }
[dir="rtl"] .portfolio-overlay { text-align: right; }
[dir="rtl"] .service-card .icon { margin-left: 0; margin-right: auto; }
[dir="rtl"] .whatsapp-float { left: 30px; right: auto; }
[dir="rtl"] .instagram-float { right: 30px; left: auto; }
[dir="rtl"] .notification { left: 20px; right: auto; }

.latin-heading {
    font-family: 'lato';
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.latin-text {
    font-family: 'lato';
    font-weight: 400;
    line-height: 1.7;
}

/* Modern Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--deep-charcoal);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.lang-btn:hover:not(.active) {
    background: var(--secondary-cream);
    transform: translateY(-1px);
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px var(--shadow-light);
    padding: 1rem 0;
    min-height: 80px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold) !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 40px !important;
    margin-right: 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--deep-charcoal) !important;
    font-weight: 500;
    padding: 0.6rem 1.2rem !important;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pure-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.9) 0%, 
        rgba(44, 44, 44, 0.8) 50%,
        rgba(201, 169, 110, 0.9) 100%),
        url('../images/0301d63b-6895-4efb-8413-32710d41ffd3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content .tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 300;
    line-height: 1.6;
}

.hero-content .cta-button {
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--deep-charcoal);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: var(--primary-gold);
}

/* Modern Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section.cream {
    background: var(--gradient-secondary);
}

.section.gray {
    background: var(--soft-gray);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-gold);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced Service Cards */
.service-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 40px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.service-card .icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    color: var(--accent-blue);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Enhanced Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(201, 169, 110, 0.95) 0%, 
        rgba(44, 44, 44, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: var(--pure-white);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 0.9rem;
}

/* Enhanced Stats Section */
.stats {
    background: var(--gradient-primary);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    animation: float 20s ease-in-out infinite;
}

.stat-item {
    margin-bottom: 2rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--deep-charcoal);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Enhanced WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20B358 100%);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 3s infinite;
}

/* Instagram Float Button */
.instagram-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.4);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.6);
    color: white;
}



.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%);
    transform: scale(1.1) translateY(-3px);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, #1a1a1a 100%);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* Enhanced Form Styles */
.form-control {
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem var(--shadow-medium);
    background: var(--pure-white);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: var(--primary-gold);
    transform: translateY(-1px);
}

.form-control.error {
    border-color: var(--error-red) !important;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25) !important;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 
                    0 0 0 20px rgba(37, 211, 102, 0.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Language Content Management */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* Loading Screen Enhancement */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--secondary-cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--secondary-cream);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification Styles */
@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .language-switcher {
        padding: 3px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .portfolio-grid {
        gap: 1rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--soft-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-charcoal);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Accessibility Enhancements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    color: white;
}

/* Enhanced Visual Hierarchy */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.service-card .price {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 1rem;
}

/* Sticky CTA for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, var(--warning-orange), #e67e22);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal img {
    width: 100%;
    height: auto;
    display: block;
}

/* Progressive Form Styles */
.progressive-form .form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.progressive-form .form-step.active {
    display: block;
}

.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--primary-gold);
    color: white;
}

.progress-step.completed {
    background: var(--success-green);
    color: white;
}

/* Contact Page Specific Styles */
.contact-info {
    background: var(--deep-charcoal);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(154, 116, 72, 0.1), 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(154, 116, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #B8864F, var(--primary-gold));
}

.appointment-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.consultation-type {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.consultation-type:hover {
    background: var(--secondary-cream);
    transform: translateX(5px);
}

.consultation-type i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    width: 50px;
    text-align: center;
}

.appointment-form {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 15px;
}

/* Print styles */
@media print {
    .navbar, .whatsapp-float, .loading, .sticky-cta, .urgency-banner {
        display: none !important;
    }
}