/* Platinum Black Salon - Luxury Styling */

/* Color Variables */
:root {
    --primary-black: #121212;
    --secondary-black: #0F0F0F;
    --gold-accent: #C9A46C;
    --gold-hover: #D4B47C;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --glass-overlay: rgba(18, 18, 18, 0.8);
    --border-gold: rgba(201, 164, 108, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--gold-accent);
}

.btn-secondary:hover {
    background-color: var(--gold-accent);
    color: var(--primary-black);
    box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
    transform: translateY(-2px);
}

/* CTA Rows */
.cta-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold-accent);
}

.nav-link.cta-nav {
    background-color: var(--gold-accent);
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-weight: 500;
}

.nav-link.cta-nav:hover {
    background-color: var(--gold-hover);
    color: var(--primary-black);
}

.nav-link.whatsapp-nav {
    font-size: 1.25rem;
    color: var(--gold-accent);
}

.nav-link.whatsapp-nav:hover {
    color: var(--gold-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gold-accent);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-black);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.mobile-logo {
    position: absolute;
    top: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold-accent);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold-accent);
}

.mobile-nav-link.mobile-cta {
    background-color: var(--gold-accent);
    color: var(--primary-black);
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    margin-top: 1rem;
}

.mobile-nav-link.mobile-whatsapp {
    color: var(--gold-accent);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('luxury.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 164, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

/* Emotional Hook Section */
.emotional-hook {
    background-color: var(--secondary-black);
}

.assessment-form {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 600px;
}

.assessment-form h3 {
    color: var(--gold-accent);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--text-muted);
}

.form-row select option {
    background-color: var(--primary-black);
    color: var(--text-light);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 164, 108, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Categories Section */
.categories {
    background-color: var(--secondary-black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 164, 108, 0.2);
}

.category-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.category-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--gold-hover);
}

/* Authority Section */
.before-after-showcase {
    margin: 3rem 0;
}

.before-after-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.slider-item {
    text-align: center;
}

.before-after-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.before-image,
.after-image {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    border: 1px solid var(--border-gold);
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.before-image:hover,
.after-image:hover {
    transform: scale(1.02);
}

.before-image::after,
.after-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 164, 108, 0.1);
    pointer-events: none;
}

.team-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-accent);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 25px rgba(201, 164, 108, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 164, 108, 0.4);
}

.team-member h4 {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.team-member span {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Signature Services Section */
.signature-services {
    background-color: var(--secondary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 164, 108, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '•';
    color: var(--gold-accent);
    position: absolute;
    left: 0;
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof {
    background-color: var(--secondary-black);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.review-rating {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--gold-accent);
    font-weight: 500;
    margin-bottom: 0;
}

.google-rating {
    text-align: center;
    margin: 3rem 0;
}

.rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-score .score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
}

.rating-score .stars {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.instagram-feed {
    text-align: center;
    margin-top: 3rem;
}

.instagram-feed h3 {
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-post {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

/* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(201, 164, 108, 0.1) 0%, transparent 60%);
            z-index: 1;
        }

.booking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.booking-form {
    background: var(--glass-overlay);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3rem;
}

.booking-form h3 {
    color: var(--gold-accent);
    margin-bottom: 2rem;
    text-align: center;
}

.booking-info {
    padding: 2rem;
}

.booking-info h3 {
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-item div strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item div p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-black);
    border-top: 1px solid var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer-logo{
    margin-bottom: 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info i {
    color: var(--gold-accent);
    width: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold-accent);
}

.footer-column h4 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.footer-contact {
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--gold-accent);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold-hover);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Bottom CTA */
.mobile-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-black);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gold);
    padding: 1rem;
    display: none;
    justify-content: center;
    gap: 1rem;
    z-index: 999;
}

.mobile-bottom-cta .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-buttons,
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .benefits-grid,
    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-slider,
    .team-showcase,
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-bottom-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .assessment-form,
    .booking-form {
        padding: 2rem;
    }
    
    .form-row {
        margin-bottom: 1rem;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .logo img{
        height: 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .assessment-form,
    .booking-form {
        padding: 1.5rem;
    }
    
    .benefit-card,
    .category-card,
    .review-card {
        padding: 2rem;
    }
    .mobile-order2{
        order: 2;
    }
}

/* Smooth scrolling for navigation */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .mobile-bottom-cta,
    .cta-row {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}



        .breadcrumb {
            color: var(--gold-accent);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .breadcrumb a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .story-section {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.1);
        }

        .philosophy-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .pillar {
            text-align: center;
            padding: 2.5rem;
            background: var(--glass-overlay);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pillar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(201, 164, 108, 0.1);
        }

        .pillar-icon {
            width: 60px;
            height: 2px;
            background: var(--gold-accent);
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .pillar-icon::before,
        .pillar-icon::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: var(--gold-accent);
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .pillar-icon::after {
            top: 8px;
        }

        .cosmetology-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .space-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            background: var(--glass-overlay);
            border: 1px solid var(--border-gold);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.1);
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.8) contrast(1.2);
        }

        .team-preview {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .team-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .expert-card {
            background: var(--glass-overlay);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .expert-card:hover {
            transform: translateY(-3px);
        }

        .expert-portrait {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--gold-accent);
            overflow: hidden;
            position: relative;
        }

        .expert-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9) contrast(1.1);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            background: var(--glass-overlay);
            border-left: 3px solid var(--gold-accent);
        }

        .trust-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .trust-point {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--glass-overlay);
            border-radius: 8px;
            border: 1px solid rgba(201, 164, 108, 0.2);
        }

        .trust-icon {
            color: var(--gold-accent);
            font-size: 1.2rem;
            margin-top: 0.2rem;
            min-width: 20px;
        }

        .final-cta-about {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
            position: relative;
            overflow: hidden;
        }

        .final-cta-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(201, 164, 108, 0.1) 0%, transparent 60%);
            z-index: 1;
        }

        /* Missing button styles */
        .btn-outline {
            background-color: transparent;
            color: var(--gold-accent);
            border: 1px solid var(--gold-accent);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: var(--gold-accent);
            color: var(--primary-black);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        /* Fix section spacing and text colors */
        .philosophy, .cosmetology-approach, .our-space, .team-preview, .values, .why-choose-us {
            padding: 5rem 0;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .story-text p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .pillar h3, .service-card h3, .expert-card h4, .value-card h3 {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .pillar p, .service-card p, .expert-card p, .value-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .expert-title {
            color: var(--gold-accent);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .trust-point h4 {
            color: var(--text-light);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .trust-point p {
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Additional luxury styling */
        .our-space {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
        }

        .values {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .why-choose-us {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
        }

        /* Enhanced service cards */
        .cosmetology-grid .service-card {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cosmetology-grid .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 164, 108, 0.2);
        }

        .cosmetology-grid .service-icon {
            font-size: 2.5rem;
            color: var(--gold-accent);
            margin-bottom: 1.5rem;
            display: block;
        }

        /* Enhanced expert cards */
        .team-preview-grid .expert-card {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-preview-grid .expert-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(201, 164, 108, 0.1);
        }

        /* Enhanced value cards */
        .values-grid .value-card {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-left: 3px solid var(--gold-accent);
            border-radius: 0 8px 8px 0;
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .values-grid .value-card:hover {
            transform: translateX(5px);
        }

        /* Enhanced trust points */
        .trust-points .trust-point {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .trust-points .trust-point:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 164, 108, 0.1);
        }

        /* Container and section base styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }


        /* Section title styling */
        .section-title {
            text-align: center;
            color: var(--gold-accent);
            margin-bottom: 3rem;
            font-size: clamp(2rem, 4vw, 3rem);
        }

        /* CTA row styling */
        .cta-row {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background-color: var(--gold-accent);
            color: var(--primary-black);
        }

        .btn-primary:hover {
            background-color: var(--gold-hover);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--gold-accent);
        }

        .btn-secondary:hover {
            background-color: var(--gold-accent);
            color: var(--primary-black);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .philosophy-pillars {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cosmetology-grid {
                grid-template-columns: 1fr;
            }
            
            .space-gallery {
                grid-template-columns: 1fr;
            }
            
            .team-preview-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-points {
                grid-template-columns: 1fr;
            }
            
            
            .breadcrumb {
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .cta-row {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .philosophy, .cosmetology-approach, .our-space, .team-preview, .values, .why-choose-us {
                padding: 4rem 0;
            }
            
            .container {
                padding: 0 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .pillar {
                padding: 2rem;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            .expert-card {
                padding: 2rem;
            }
            
            .value-card {
                padding: 2rem;
            }
            
            .trust-point {
                padding: 1.5rem;
            }
        }

        

        .breadcrumb {
            color: var(--gold-accent);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .breadcrumb a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        /* Intro Overview Section */
        .intro-overview {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 5rem 0;
        }

        .gold-divider {
            width: 60px;
            height: 2px;
            background: var(--gold-accent);
            margin: 2rem auto;
            position: relative;
        }

        .gold-divider::before,
        .gold-divider::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: var(--gold-accent);
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .gold-divider::after {
            top: 8px;
        }

        /* Category Master Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .category-card {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-accent);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(201, 164, 108, 0.2);
        }

        .category-icon {
            font-size: 3rem;
            color: var(--gold-accent);
            margin-bottom: 1.5rem;
            display: block;
        }

        .category-card h3 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .category-card p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Service Overview Sections */
        .service-overview {
            padding: 5rem 0;
        }

        .service-overview:nth-child(even) {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-item-card {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-item-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 164, 108, 0.1);
        }

        .service-item-card h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .service-item-card p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        /* Premium Packages Section */
        .premium-packages {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 5rem 0;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .package-card {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
            border: 2px solid var(--border-gold);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(201, 164, 108, 0.2);
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--gold-accent), transparent);
            border-radius: 12px;
            z-index: -1;
        }

        .package-card h3 {
            color: var(--gold-accent);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .package-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .package-features li {
            color: var(--text-muted);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .package-features li::before {
            content: '✓';
            color: var(--gold-accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
        }

        .faq-item {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--gold-accent);
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(201, 164, 108, 0.05);
        }

        .faq-question h4 {
            color: var(--text-light);
            margin: 0;
            font-size: 1.1rem;
        }

        .faq-toggle {
            color: var(--gold-accent);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 2rem 2rem;
            color: var(--text-muted);
            line-height: 1.7;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Final CTA Section */
        .final-cta-services {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, var(--primary-black) 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        .final-cta-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(201, 164, 108, 0.1) 0%, transparent 60%);
            z-index: 1;
        }

        .final-cta-services .container {
            position: relative;
            z-index: 2;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            text-align: center;
            color: var(--gold-accent);
            margin-bottom: 3rem;
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .cta-row {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background-color: var(--gold-accent);
            color: var(--primary-black);
        }

        .btn-primary:hover {
            background-color: var(--gold-hover);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--gold-accent);
        }

        .btn-secondary:hover {
            background-color: var(--gold-accent);
            color: var(--primary-black);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--gold-accent);
            border: 1px solid var(--gold-accent);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: var(--gold-accent);
            color: var(--primary-black);
            box-shadow: 0 4px 20px rgba(201, 164, 108, 0.3);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .breadcrumb {
                text-align: center;
                margin-bottom: 2rem;
            }

            .category-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .package-grid {
                grid-template-columns: 1fr;
            }

            .cta-row {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .service-overview {
                padding: 4rem 0;
            }

            .premium-packages, .faq-section {
                padding: 4rem 0;
            }

            .final-cta-services {
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .category-card {
                padding: 2rem;
            }

            .service-item-card {
                padding: 2rem;
            }

            .package-card {
                padding: 2rem;
            }

            .faq-question {
                padding: 1.5rem;
            }

            .faq-answer {
                padding: 0 1.5rem 1.5rem;
            }
        }


        /* Team Page Specific Styles */
        .subpage-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('../Content/luxury.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            text-align: center;
        }

        .subpage-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--gold-accent);
        }

        .breadcrumb .current {
            color: var(--gold-accent);
        }

        .breadcrumb-separator {
            color: var(--gold-accent);
        }

        .subpage-hero h1 {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .subpage-hero .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Service Template Section */
        .service-template {
            background: var(--glass-overlay);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .service-template-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .service-info h2 {
            color: var(--gold-accent);
            margin-bottom: 1rem;
        }

        .service-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .service-calendar .calendar-widget {
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .service-template-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Introduction Block */
        .intro-block {
            padding: 6rem 0;
            text-align: center;
        }

        .intro-block h2 {
            color: var(--gold-accent);
            margin-bottom: 2rem;
        }

        .intro-block p {
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .gold-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
            margin: 3rem auto;
            border: none;
        }

        /* Team Grid */
        .team-grid-section {
            padding: 6rem 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .team-member-card {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .team-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(201, 164, 108, 0.2);
            border-color: var(--gold-accent);
        }

        .member-portrait {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
            position: relative;
            overflow: hidden;
        }

        .member-portrait::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.1), transparent);
        }

        .member-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        .member-info {
            padding: 2rem;
            text-align: center;
        }

        .member-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-accent);
            margin-bottom: 0.5rem;
        }

        .member-title {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .member-description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Lead Specialists */
        .lead-specialists {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .specialists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
        }

        .specialist-card {
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .specialist-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(201, 164, 108, 0.2);
            border-color: var(--gold-accent);
        }

        .specialist-portrait {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
            margin: 0 auto 2rem;
            border: 3px solid var(--gold-accent);
            overflow: hidden;
            position: relative;
        }

        .specialist-portrait::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.2), transparent);
        }

        .specialist-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        .specialist-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-accent);
            margin-bottom: 0.5rem;
        }

        .specialist-title {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .specialist-bio {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Expertise Levels */
        .expertise-levels {
            padding: 6rem 0;
        }

        .expertise-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .expertise-card {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .expertise-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }

        .expertise-card::after {
            content: '';
            position: absolute;
            right: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(180deg, transparent, var(--gold-accent), transparent);
        }

        .expertise-card:last-child::after {
            display: none;
        }

        .expertise-level {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
        }

        .expertise-description {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Training Section */
        .training-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .training-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .training-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .certification-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid var(--gold-accent);
            border-radius: 50px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            color: var(--gold-accent);
        }

        .certification-badge i {
            font-size: 1.5rem;
        }

        /* Team Gallery */
        .team-gallery {
            padding: 6rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 4px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
            border: 1px solid var(--border-gold);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Trust Block */
        .trust-block {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .trust-statements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .trust-statement {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 2rem;
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .trust-statement:hover {
            border-color: var(--gold-accent);
            transform: translateY(-2px);
        }

        .trust-statement i {
            color: var(--gold-accent);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .trust-text {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .subpage-hero {
                min-height: 50vh;
                padding: 6rem 0 0;
            }

            .subpage-hero h1 {
                font-size: 2.5rem;
            }

            .subpage-hero .hero-subtitle {
                font-size: 1.1rem;
            }

            .intro-block,
            .team-grid-section,
            .lead-specialists,
            .expertise-levels,
            .training-section,
            .team-gallery,
            .trust-block {
                padding: 4rem 0;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .specialists-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .expertise-cards {
                grid-template-columns: 1fr;
            }

            .expertise-card::after {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .trust-statements {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .specialist-card {
                padding: 2rem 1.5rem;
            }

            .expertise-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Booking Page Specific Styles */
        .booking-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('../Content/luxury.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            text-align: center;
        }

        .booking-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--gold-accent);
        }

        .breadcrumb .current {
            color: var(--gold-accent);
        }

        .breadcrumb-separator {
            color: var(--gold-accent);
        }

        .booking-hero h1 {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .booking-hero .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Booking Options Block */
        .booking-options {
            padding: 6rem 0;
            text-align: center;
        }

        .booking-options h2 {
            color: var(--gold-accent);
            margin-bottom: 3rem;
        }

        .booking-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .booking-card {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .booking-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(201, 164, 108, 0.2);
            border-color: var(--gold-accent);
        }

        .booking-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
            pointer-events: none;
        }

        .booking-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-black);
            position: relative;
            z-index: 1;
        }

        .booking-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .booking-card p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Live Booking Calendar */
        .booking-calendar {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .calendar-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .calendar-widget {
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem;
            margin: 3rem 0;
            position: relative;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .calendar-placeholder {
            color: var(--text-muted);
            font-size: 1.2rem;
            text-align: center;
        }

        .calendar-placeholder i {
            font-size: 3rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
            display: block;
        }

        .calendar-note {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--gold-accent);
            border-radius: 4px;
            padding: 1.5rem;
            margin-top: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: var(--gold-accent);
            font-size: 1.1rem;
        }

        .calendar-note i {
            font-size: 1.5rem;
        }

        /* Why Book With Us */
        .why-book {
            padding: 6rem 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            border-color: var(--gold-accent);
            transform: translateY(-2px);
        }

        .benefit-icon {
            color: var(--gold-accent);
            font-size: 1.5rem;
            margin-top: 0.2rem;
            min-width: 24px;
        }

        .benefit-content h4 {
            color: var(--gold-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* What to Expect */
        .what-to-expect {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .expect-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .expect-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-hover));
            color: var(--primary-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 2rem;
        }

        .expect-step h3 {
            color: var(--gold-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .expect-step p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .highlight-box {
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid var(--gold-accent);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .highlight-box p {
            color: var(--gold-accent);
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        /* Contact Information */
        .contact-info {
            padding: 6rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--gold-accent);
            transform: translateY(-2px);
        }

        .contact-icon {
            color: var(--gold-accent);
            font-size: 1.5rem;
            min-width: 24px;
        }

        .contact-details h4 {
            color: var(--gold-accent);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: var(--text-muted);
            font-size: 1rem;
            margin: 0;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--gold-accent);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(201, 164, 108, 0.05);
        }

        .faq-question h4 {
            color: var(--gold-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin: 0;
        }

        .faq-toggle {
            color: var(--gold-accent);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 1rem 2rem 1.5rem;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .booking-hero {
                min-height: 50vh;
                padding: 4rem 0;
            }

            .booking-hero h1 {
                font-size: 2.5rem;
            }

            .booking-hero .hero-subtitle {
                font-size: 1.1rem;
            }

            .booking-options,
            .booking-calendar,
            .why-book,
            .what-to-expect,
            .contact-info,
            .faq-section {
                padding: 4rem 0;
            }

            .booking-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .benefits-grid,
            .expect-steps,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .calendar-widget {
                padding: 2rem 1.5rem;
            }

            .booking-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .faq-question,
            .faq-answer {
                padding: 1rem 1.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 1rem 1.5rem 1.5rem;
            }
        }

        /* Contact Page Specific Styles */
        .contact-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('../Content/luxury.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            text-align: center;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--gold-accent);
        }

        .breadcrumb .current {
            color: var(--gold-accent);
        }

        .breadcrumb-separator {
            color: var(--gold-accent);
        }

        .contact-hero h1 {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .contact-hero .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Contact Methods Grid */
        .contact-methods {
            padding: 6rem 0;
            text-align: center;
        }

        .contact-methods h2 {
            color: var(--gold-accent);
            margin-bottom: 3rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(201, 164, 108, 0.2);
            border-color: var(--gold-accent);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
            pointer-events: none;
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border: 2px solid var(--gold-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--gold-accent);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            background: var(--gold-accent);
            color: var(--primary-black);
        }

        .contact-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .contact-value {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Location & Map Section */
        .location-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .location-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h2 {
            color: var(--gold-accent);
            margin-bottom: 2rem;
        }

        .location-info .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        .location-details {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2.5rem;
            margin-bottom: 2rem;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .location-item:last-child {
            margin-bottom: 0;
        }

        .location-item i {
            color: var(--gold-accent);
            font-size: 1.2rem;
            margin-top: 0.2rem;
            min-width: 20px;
        }

        .location-item h4 {
            color: var(--gold-accent);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .location-item p {
            color: var(--text-muted);
            font-size: 1rem;
            margin: 0;
        }

        .map-container {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            overflow: hidden;
            height: 400px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            text-align: center;
        }

        .map-placeholder i {
            font-size: 3rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 6rem 0;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .form-container h2 {
            color: var(--gold-accent);
            margin-bottom: 1rem;
        }

        .form-container .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
        }

        .contact-form {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--gold-accent);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: rgba(15, 15, 15, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            padding: 1rem;
            color: var(--text-light);
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-accent);
            box-shadow: 0 0 0 2px rgba(201, 164, 108, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        /* Quick FAQs Section */
        .quick-faqs {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(201, 164, 108, 0.05), transparent);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-container h2 {
            color: var(--gold-accent);
            margin-bottom: 3rem;
            text-align: center;
        }

        .faq-item {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 4px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--gold-accent);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(201, 164, 108, 0.05);
        }

        .faq-question h4 {
            color: var(--gold-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin: 0;
        }

        .faq-toggle {
            color: var(--gold-accent);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 1rem 2rem 1.5rem;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        /* Why Contact Us Section */
        .why-contact {
            padding: 6rem 0;
        }

        .why-contact h2 {
            color: var(--gold-accent);
            margin-bottom: 3rem;
            text-align: center;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .trust-item {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-5px);
            border-color: var(--gold-accent);
        }
        
        .trust-item h4 {
            color: var(--gold-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .trust-item p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-hero {
                min-height: 50vh;
                padding: 4rem 0;
            }

            .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-hero .hero-subtitle {
                font-size: 1.1rem;
            }

            .contact-methods,
            .location-section,
            .contact-form-section,
            .quick-faqs,
            .why-contact {
                padding: 4rem 0;
            }

            .location-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .location-details {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .contact-card {
                padding: 2rem 1.5rem;
            }

            .faq-question,
            .faq-answer {
                padding: 1rem 1.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 1rem 1.5rem 1.5rem;
            }
        }



  
  img {
    max-width: 100%;
    display: inline-block;
  }

  .text-size-regular {
    font-family: var(--font--global-font);
    color: var(--neutral--black-700);
    letter-spacing: .32px;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
  }
  
  .our-story-component {
    grid-column-gap: 2.75rem;
    grid-row-gap: 2.75rem;
    max-width: 65.25rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .our-story-left-content {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 30.25rem;
    display: flex;
  }
  
  .our-story-left-top-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    display: flex;
  }
  
  .our-story-right-image-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    display: flex;
  }
  
  .our-story-left-image-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    display: flex;
  }
  
  .our-story-image{
    border: 10px #b78341 solid;
    border-radius: 12px;
  }

  .our-story-image._01{
    border: 10px #b78341 solid;
    border-radius: 100%;
  }

  .our-story-image-wrapper._01 {
    width: 15rem;
    height: 15rem;
  }
  
  .our-story-image-wrapper._02 {
    width: 15rem;
    height: 14.75rem;
  }
  
  .our-story-image._02 {
    border-radius: 1rem;
  }
  
  .our-story-image._03 {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
  }
  
  .our-story-right-image {
    max-width: 14.75rem;
    height: 31.25rem;
  }
  
  @media screen and (max-width: 991px) {
  
    .text-size-regular {
      max-width: none;
    }
  
    .our-story-component {
      flex-flow: column;
    }
  
    .our-story-left-content {
      max-width: none;
    }
  
    .our-story-right-image-wrapper {
      flex-flow: column;
    }
  
    .our-story-image-wrapper._01 {
      display: none;
    }
  
    .our-story-image-wrapper._02 {
      width: auto;
      height: auto;
    }
  
    .our-story-right-image {
      max-width: none;
      height: auto;
      display: none;
    }
  }
  
  @media screen and (max-width: 479px) {
  
    .our-story-component {
      grid-column-gap: 2rem;
      grid-row-gap: 2rem;
    }
  
    .our-story-left-content {
      grid-column-gap: 1.5rem;
      grid-row-gap: 1.5rem;
    }
  
    .our-story-left-top-content {
      grid-column-gap: 1rem;
      grid-row-gap: 1rem;
    }
  }

