/* Luxury Website Design - Full Highlight Style Applied Site-wide */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Luxury Color Palette */
:root {
    --luxury-gold: #D4A574;
    --deep-gold: #B8956A;
    --luxury-cream: #FAF7F2;
    --soft-beige: #F5F1EA;
    --charcoal: #2C2C2C;
    --warm-gray: #6B6B6B;
    --accent-teal: #54B4B1;
    --light-teal: #E6F7F6;
    --white: #FFFFFF;
    --shadow-light: rgba(212, 165, 116, 0.1);
    --shadow-medium: rgba(212, 165, 116, 0.2);
    --shadow-heavy: rgba(44, 44, 44, 0.15);
    --gradient-luxury: linear-gradient(135deg, var(--luxury-gold), var(--deep-gold));
    --gradient-teal: linear-gradient(135deg, var(--accent-teal), #7BC7C4);
    --gradient-bg: linear-gradient(135deg, var(--luxury-cream) 0%, var(--soft-beige) 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--luxury-cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--charcoal);
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
}

.logo-accent {
    color: var(--luxury-gold);
}

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

.nav-link {
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--luxury-gold);
    background: rgba(212, 165, 116, 0.1);
}

.nav-link.active {
    background: var(--gradient-luxury);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-bg);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(84, 180, 177, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-accent {
    color: var(--luxury-gold);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-luxury);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--luxury-gold);
}

.btn-secondary:hover {
    background: var(--luxury-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section - Apply Featured Style to All */
.services {
    background: var(--gradient-bg);
    padding: 6rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-luxury);
}

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

/* NEW SERVICES SECTION - SIMPLE AND RELIABLE */
.services-new {
    padding: 80px 0;
    background: var(--luxury-cream);
    min-height: 100vh;
}

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

.services-new h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.special-offer {
    text-align: center;
    background: linear-gradient(135deg, var(--luxury-gold), var(--deep-gold));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin: 30px auto;
    max-width: 600px;
    font-size: 1.1rem;
}

.service-box {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 50%, var(--luxury-cream) 100%);
    border: 3px solid var(--accent-teal);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.service-box h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.price-list {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 1.1rem;
}

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

.price-row span {
    color: var(--charcoal);
    font-weight: 500;
}

.price-row strong {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-box {
    border: 5px solid var(--accent-teal);
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--accent-teal) 50%, var(--luxury-cream) 100%);
    transform: scale(1.02);
}

.contact-box {
    background: linear-gradient(135deg, var(--accent-teal), #7BC7C4);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.contact-box h3 {
    color: white;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-block;
    background: white;
    color: var(--accent-teal);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-box p {
    color: white;
    margin: 10px 0;
}

.contact-box a {
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
}

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

.service-card::before {
    background: var(--gradient-luxury);
    opacity: 1;
    height: 6px;
}

.service-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 80px var(--shadow-medium);
}

/* Promotions Section */
.promotions {
    background: var(--charcoal);
    padding: 6rem 0;
    position: relative;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.promotions .section-title {
    color: var(--white);
}

.promotions .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.promotion-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

.promotion-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(212, 165, 116, 0.3);
}

.promotion-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
    color: var(--white);
}

.promotion-badge {
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    background: var(--gradient-bg);
    padding: 6rem 0;
}

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

.gallery-item {
    background: var(--white);
    border: 2px solid var(--accent-teal);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px var(--shadow-medium);
}

/* Reviews Section */
.reviews {
    background: var(--charcoal);
    padding: 6rem 0;
    color: var(--white);
}

.reviews .section-title {
    color: var(--white);
}

.reviews .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.review-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 24px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    color: var(--charcoal);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

/* About Section */
.about {
    background: var(--gradient-bg);
    padding: 6rem 0;
}

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

.about-features li {
    background: var(--white);
    border: 1px solid var(--luxury-gold);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--luxury-gold);
}

/* Contact Section */
.contact {
    background: var(--gradient-bg);
    padding: 6rem 0;
}

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

.info-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
    border: 2px solid var(--accent-teal);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 45px var(--shadow-light);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-luxury);
}

.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

/* Form Elements */
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

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

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--luxury-gold);
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
}

/* Chat Assistant */
.chat-toggle {
    background: var(--gradient-luxury);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.5);
}

.chat-window {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-teal) 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid, .promotions-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .service-card {
        transform: none;
        min-height: auto;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }
}

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

.service-card, .promotion-card, .gallery-item, .info-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 165, 116, 0.2);
    border-left: 4px solid var(--luxury-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* NEW SERVICES SECTION - ENHANCED GRID LAYOUT */
.services-new {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #f9f6f1 50%, var(--luxury-cream) 100%);
    min-height: 100vh;
    position: relative;
}

.services-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(84, 180, 177, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.services-new h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-new .special-offer {
    text-align: center;
    background: var(--accent-teal);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px auto 50px;
    max-width: fit-content;
    box-shadow: 0 8px 24px rgba(84, 180, 177, 0.3);
}

.service-box {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #c8956a 30%, #d4a574 70%, var(--luxury-cream) 100%);
    border: 3px solid var(--accent-teal);
    border-radius: 25px;
    padding: 35px;
    margin: 0;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-teal), var(--luxury-gold), var(--accent-teal));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 165, 116, 0.4),
                0 10px 20px rgba(84, 180, 177, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--luxury-gold);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover::after {
    left: 100%;
}

.service-box:active {
    transform: translateY(-8px) scale(0.98);
}

.service-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-teal);
}

.price-list {
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    position: relative;
}

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

.price-row:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
    border-radius: 10px;
    margin: 0 -15px;
    padding: 15px 15px;
}

.price-row span {
    flex: 1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.price-row:hover span {
    color: var(--charcoal);
    font-weight: 600;
}

.price-row strong {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    padding: 8px 18px;
    border-radius: 25px;
    border: 2px solid var(--accent-teal);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.price-row strong::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 180, 177, 0.2), transparent);
    transition: left 0.5s ease;
}

.price-row:hover strong {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-teal) 0%, #47a6a3 100%);
    color: var(--white);
    border-color: var(--luxury-gold);
    box-shadow: 0 4px 12px rgba(84, 180, 177, 0.3);
}

.price-row:hover strong::before {
    left: 100%;
}

.price-row.special strong {
    background: var(--accent-teal);
    color: var(--white);
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #47a6a3 50%, var(--luxury-cream) 100%);
    border: 3px solid var(--luxury-gold);
}

.highlight-box h3 {
    color: var(--white);
    border-bottom-color: var(--luxury-gold);
}

.highlight-box .price-row {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.highlight-box .price-row strong {
    background: var(--luxury-gold);
    color: var(--charcoal);
    border-color: var(--white);
}

.contact-box {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2c3e50 50%, var(--charcoal) 100%);
    border: 3px solid var(--luxury-gold);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.phone-link {
    display: inline-block;
    background: var(--gradient-luxury);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.phone-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--white);
}

/* Animation delays for staggered effect */
.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }
.service-box:nth-child(6) { animation-delay: 0.6s; }

.service-box {
    animation: slideInUp 0.8s ease-out both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse effect for price highlights */
@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.price-row.special strong {
    animation: pricePulse 2s ease-in-out infinite;
}

/* Responsive adjustments for new services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .services-new h2 {
        font-size: 2.2rem;
    }

    .service-box {
        padding: 25px;
        margin: 0;
    }

    .service-box:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .price-row strong {
        align-self: flex-end;
        font-size: 1.1rem;
        padding: 6px 15px;
    }

    .price-row:hover {
        transform: none;
        margin: 0;
        padding: 12px 0;
    }
}

/* NEW REVIEWS SECTION - ENHANCED DESIGN */
.reviews-new {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2c3e50 50%, var(--charcoal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(84, 180, 177, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-new h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rating-summary-box {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #c8956a 50%, var(--luxury-cream) 100%);
    border: 3px solid var(--accent-teal);
    border-radius: 25px;
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rating-summary-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(212, 165, 116, 0.4);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.google-text {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
}

.stars {
    font-size: 1.5rem;
    line-height: 1;
}

.review-count {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    border: 2px solid var(--accent-teal);
    border-radius: 20px;
    padding: 25px;
    color: var(--charcoal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-teal), var(--luxury-gold), var(--accent-teal));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--luxury-gold);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--accent-teal);
}

.reviewer-info h4 {
    margin: 0 0 5px 0;
    color: var(--charcoal);
    font-weight: 600;
}

.review-stars {
    font-size: 0.9rem;
    color: #ffa500;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(44, 62, 80, 0.7);
    font-weight: 500;
}

.reviews-actions {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.btn-review-primary, .btn-review-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-review-primary {
    background: var(--gradient-luxury);
    color: var(--white);
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.btn-review-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--white);
}

.btn-review-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-teal);
    box-shadow: 0 8px 24px rgba(84, 180, 177, 0.2);
}

.btn-review-secondary:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(84, 180, 177, 0.3);
    text-decoration: none;
}

/* Animation delays for review cards */
.review-card:nth-child(1) { animation: slideInUp 0.8s ease-out 0.1s both; }
.review-card:nth-child(2) { animation: slideInUp 0.8s ease-out 0.2s both; }
.review-card:nth-child(3) { animation: slideInUp 0.8s ease-out 0.3s both; }
.review-card:nth-child(4) { animation: slideInUp 0.8s ease-out 0.4s both; }
.review-card:nth-child(5) { animation: slideInUp 0.8s ease-out 0.5s both; }
.review-card:nth-child(6) { animation: slideInUp 0.8s ease-out 0.6s both; }

/* Responsive design for reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-new h2 {
        font-size: 2.2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .rating-summary-box {
        margin: 30px 20px;
        padding: 25px;
    }

    .rating-number {
        font-size: 2rem;
    }

    .btn-review-primary, .btn-review-secondary {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
}

/* NEW PROMOTIONS SECTION - ENHANCED DESIGN */
.promotions-new {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #f9f6f1 25%, var(--luxury-cream) 75%, #f4f0e8 100%);
    position: relative;
    overflow: hidden;
}

.promotions-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(84, 180, 177, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promotions-new h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.promotions-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(44, 62, 80, 0.8);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(249, 246, 241, 0.95) 100%);
    border: 2px solid var(--accent-teal);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(84, 180, 177, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-teal), var(--luxury-gold), var(--accent-teal));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.promo-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(84, 180, 177, 0.3);
    border-color: var(--luxury-gold);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card:hover::after {
    left: 100%;
}

.featured-promo {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #c8956a 50%, var(--luxury-cream) 100%);
    border: 3px solid var(--accent-teal);
    transform: scale(1.05);
    z-index: 2;
}

.featured-promo:hover {
    transform: translateY(-15px) scale(1.08);
}

.holiday-special {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 30%, #ef5350 70%, var(--luxury-cream) 100%);
    color: var(--white);
    border-color: var(--luxury-gold);
}

.holiday-special h3,
.holiday-special .promo-description,
.holiday-special .original-price,
.holiday-special .sale-price,
.holiday-special .benefit-text {
    color: var(--white);
}

.promo-badge {
    display: inline-block;
    background: var(--accent-teal);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.featured-promo .promo-badge {
    background: var(--charcoal);
    animation: badgePulse 2s ease-in-out infinite;
}

.holiday-special .promo-badge {
    background: var(--luxury-gold);
    color: var(--charcoal);
}

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

.promo-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.promo-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-discount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(84, 180, 177, 0.2);
}

.featured-promo .promo-discount {
    color: var(--charcoal);
    font-size: 2.5rem;
}

.holiday-special .promo-discount {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-description {
    color: rgba(44, 62, 80, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.promo-pricing {
    background: rgba(84, 180, 177, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(84, 180, 177, 0.2);
}

.featured-promo .promo-pricing {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(44, 62, 80, 0.2);
}

.holiday-special .promo-pricing {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 0.9rem;
    color: rgba(44, 62, 80, 0.6);
    text-decoration: line-through;
}

.sale-price, .benefit-text {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.savings-highlight {
    background: var(--accent-teal);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(84, 180, 177, 0.3);
}

.featured-promo .savings-highlight {
    background: var(--charcoal);
}

.holiday-special .savings-highlight {
    background: var(--luxury-gold);
    color: var(--charcoal);
}

.promo-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 15px 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 140px;
}

.promo-btn.primary {
    background: var(--gradient-luxury);
    color: var(--white);
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.promo-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--white);
}

.promo-btn.secondary {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
    box-shadow: 0 6px 20px rgba(84, 180, 177, 0.2);
}

.promo-btn.secondary:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(84, 180, 177, 0.3);
    text-decoration: none;
}

.promo-terms {
    font-size: 0.8rem;
    color: rgba(44, 62, 80, 0.6);
    line-height: 1.3;
    margin-top: 10px;
    font-style: italic;
}

.holiday-special .promo-terms {
    color: rgba(255, 255, 255, 0.8);
}

.promotions-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2c3e50 50%, var(--charcoal) 100%);
    border: 3px solid var(--luxury-gold);
    border-radius: 25px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.promotions-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

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

.cta-phone-btn {
    display: inline-block;
    background: var(--gradient-luxury);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-phone-btn::before {
    content: '📞';
    margin-right: 10px;
}

.cta-phone-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--white);
}

/* Animation delays for promo cards */
.promo-card:nth-child(1) { animation: slideInUp 0.8s ease-out 0.1s both; }
.promo-card:nth-child(2) { animation: slideInUp 0.8s ease-out 0.2s both; }
.promo-card:nth-child(3) { animation: slideInUp 0.8s ease-out 0.3s both; }
.promo-card:nth-child(4) { animation: slideInUp 0.8s ease-out 0.4s both; }
.promo-card:nth-child(5) { animation: slideInUp 0.8s ease-out 0.5s both; }
.promo-card:nth-child(6) { animation: slideInUp 0.8s ease-out 0.6s both; }

/* Responsive design for promotions */
@media (max-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }

    .featured-promo {
        transform: scale(1.02);
    }

    .featured-promo:hover {
        transform: translateY(-12px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .promotions-new h2 {
        font-size: 2.2rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .promo-card {
        padding: 25px;
    }

    .promo-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .featured-promo {
        transform: scale(1);
    }

    .featured-promo:hover {
        transform: translateY(-8px) scale(1.03);
    }

    .promo-discount {
        font-size: 1.8rem;
    }

    .featured-promo .promo-discount {
        font-size: 2rem;
    }

    .promotions-cta {
        padding: 30px 20px;
        margin: 40px 20px 0;
    }

    .promotions-cta h3 {
        font-size: 1.6rem;
    }

    .cta-phone-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

/* NEW HERO SECTION - ENHANCED DESIGN */
.hero-new {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #f9f6f1 25%, var(--luxury-cream) 50%, #f4f0e8 75%, var(--luxury-cream) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(84, 180, 177, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(249, 246, 241, 0.2) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    top: 80%;
    right: 30%;
    animation-delay: 6s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 45%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 11s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-text-section {
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-luxury);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
        transform: scale(1.02);
    }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
    animation: titleSlideIn 1s ease-out;
}

.hero-accent {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(44, 62, 80, 0.8);
    margin-bottom: 30px;
    animation: descriptionFadeIn 1s ease-out 0.3s both;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: statsSlideIn 1s ease-out 0.6s both;
}

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

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(84, 180, 177, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(84, 180, 177, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(44, 62, 80, 0.7);
    font-weight: 500;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    animation: buttonsSlideIn 1s ease-out 0.9s both;
}

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

.hero-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

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

.hero-btn.primary {
    background: var(--gradient-luxury);
    color: var(--white);
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--white);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
    box-shadow: 0 8px 25px rgba(84, 180, 177, 0.2);
}

.hero-btn.secondary:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(84, 180, 177, 0.3);
    text-decoration: none;
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
}

.hero-trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    animation: trustFadeIn 1s ease-out 1.2s both;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

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

.trust-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.hero-visual-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid var(--accent-teal);
    box-shadow: 0 20px 60px rgba(84, 180, 177, 0.3);
    animation: imageSlideIn 1s ease-out 0.5s both;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-frame:hover .hero-main-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-luxury);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-frame:hover .image-glow {
    opacity: 0.7;
}

.floating-element {
    position: absolute;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-element.price-bubble {
    top: 60px;
    left: -40px;
    animation-delay: 0s;
}

.floating-element.review-bubble {
    bottom: 80px;
    right: -50px;
    animation-delay: 1.5s;
}

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

.bubble-content {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 20px;
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.price-bubble .bubble-content {
    background: var(--gradient-luxury);
    color: var(--white);
}

.bubble-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.bubble-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.bubble-text {
    display: block;
    font-size: 0.9rem;
    font-style: italic;
    margin: 5px 0;
    color: var(--charcoal);
}

.bubble-author {
    display: block;
    font-size: 0.8rem;
    color: rgba(44, 62, 80, 0.7);
    font-weight: 500;
}

.stars {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.hero-services-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: servicesSlideIn 1s ease-out 1.5s both;
}

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

.service-preview-item {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--accent-teal);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.service-preview-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(84, 180, 177, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--luxury-gold);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.service-name {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.service-price {
    display: block;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 1rem;
}

.scroll-indicator {
    text-align: center;
    animation: scrollIndicatorFadeIn 1s ease-out 2s both;
}

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

.scroll-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(44, 62, 80, 0.6);
    margin-bottom: 10px;
    font-weight: 500;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-teal);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(10px);
    }
    60% {
        transform: rotate(45deg) translateY(5px);
    }
}

/* Responsive design for hero */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-section {
        padding-right: 0;
        order: 2;
    }

    .hero-visual-section {
        order: 1;
    }

    .hero-image-container {
        width: 300px;
        height: 400px;
    }

    .hero-services-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-trust-indicators {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-services-preview {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-image-container {
        width: 250px;
        height: 320px;
    }

    .floating-element.price-bubble {
        left: -20px;
    }

    .floating-element.review-bubble {
        right: -25px;
    }

    .hero-container {
        padding: 0 15px;
    }
}

/* ==============================================
   ENHANCED ABOUT SECTION STYLES
   ============================================== */

.about-new {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #f9f6f1 25%, var(--luxury-cream) 50%, #f4f0e8 75%, var(--luxury-cream) 100%);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.05) 0%, rgba(84, 180, 177, 0.05) 50%, rgba(212, 165, 116, 0.05) 100%);
    z-index: 1;
}

.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.about-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-particles .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.about-particles .particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.about-particles .particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.about-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 10;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    animation: slideInUp 1.2s ease-out;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInUp 1.2s ease-out 0.2s both;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideInUp 1.2s ease-out 0.4s both;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content-section {
    animation: slideInLeft 1.2s ease-out 0.6s both;
}

.about-visual-section {
    animation: slideInRight 1.2s ease-out 0.8s both;
}

.story-intro {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.lead-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--luxury-gold);
    font-family: var(--font-serif);
    line-height: 1;
}

.about-expertise {
    margin-bottom: 60px;
}

.expertise-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 2px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-teal);
    box-shadow: 0 20px 40px rgba(84, 180, 177, 0.2);
}

.expertise-card:hover::before {
    left: 100%;
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.credentials-showcase {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.credentials-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
}

.credentials-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(84, 180, 177, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-badge:hover {
    transform: translateX(5px);
    border-color: var(--accent-teal);
    box-shadow: 0 5px 20px rgba(84, 180, 177, 0.2);
}

.credential-badge .badge-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.credential-badge span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.credential-badge small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2px;
}

.main-image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    height: 500px;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

.main-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image-frame:hover img {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    animation: floatBadge 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-element.experience-badge {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
}

.floating-element.clients-badge {
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

.badge-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.studio-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.studio-image-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.studio-image-card:hover {
    transform: scale(1.05);
}

.studio-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 15px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-image-card:hover .studio-overlay {
    opacity: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-stats .stat-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    box-shadow: 0 15px 30px rgba(84, 180, 177, 0.2);
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-main {
        gap: 60px;
    }

    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-image-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-new {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 60px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-main {
        gap: 60px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .credentials-badges {
        grid-template-columns: 1fr;
    }

    .studio-gallery {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .floating-element {
        position: static;
        margin: 10px auto;
        display: block;
        width: fit-content;
    }

    .main-image-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .expertise-card {
        padding: 25px 20px;
    }

    .main-image-frame {
        height: 250px;
    }
}

/* Animation Keyframes */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.02);
    }
}

/* ==============================================
   ENHANCED CONTACT SECTION STYLES
   ============================================== */

.contact-new {
    position: relative;
    min-height: auto;
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, #f9f6f1 25%, var(--luxury-cream) 50%, #f4f0e8 75%, var(--luxury-cream) 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.05) 0%, rgba(84, 180, 177, 0.05) 50%, rgba(212, 165, 116, 0.05) 100%);
    z-index: 1;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contact-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite;
    opacity: 0.6;
}

.contact-particles .particle:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.contact-particles .particle:nth-child(2) {
    top: 70%;
    left: 25%;
    animation-delay: 3s;
}

.contact-particles .particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 6s;
}

.contact-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 10;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    animation: slideInUp 1.2s ease-out;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInUp 1.2s ease-out 0.2s both;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: slideInUp 1.2s ease-out 0.4s both;
}

.contact-main {
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInLeft 1.2s ease-out 0.6s both;
}

.contact-map-section {
    animation: slideInUp 1.2s ease-out 0.8s both;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 1.2s ease-out 1s both;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    box-shadow: 0 15px 40px rgba(84, 180, 177, 0.2);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 1.8rem;
    padding: 10px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.address-text {
    font-weight: 500;
    margin-bottom: 8px;
}

.address-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(84, 180, 177, 0.1);
}

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

.day {
    font-weight: 500;
    color: var(--text-primary);
}

.time {
    font-weight: 500;
    color: var(--accent-teal);
}

.time.closed {
    color: #e74c3c;
}

.contact-methods-grid {
    display: grid;
    gap: 15px;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(84, 180, 177, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 180, 177, 0.1), transparent);
    transition: left 0.4s ease;
}

.contact-method-btn:hover {
    transform: translateX(5px);
    border-color: var(--accent-teal);
    box-shadow: 0 5px 20px rgba(84, 180, 177, 0.2);
    background: rgba(84, 180, 177, 0.05);
}

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

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(84, 180, 177, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.method-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.map-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.map-header {
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.map-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

.map-container {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.2) brightness(1.05);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: saturate(1.3) brightness(1.1);
}

.map-actions {
    padding: 20px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e5c78a 0%, var(--luxury-gold) 100%);
}

.form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 25px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group.half {
    flex: 0.5;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px 18px;
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(84, 180, 177, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

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

.checkbox-group {
    margin: 10px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    display: none;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(84, 180, 177, 0.3);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.checkbox-mark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--luxury-cream);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.form-checkbox:checked + .checkbox-mark {
    background: linear-gradient(135deg, var(--accent-teal), #4a9b98);
    border-color: var(--accent-teal);
}

.form-checkbox:checked + .checkbox-mark::after {
    transform: translate(-50%, -50%) scale(1);
}

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

.form-actions {
    margin-top: 20px;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

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

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e5c78a 0%, var(--luxury-gold) 100%);
}

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

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    opacity: 0.9;
}

.booking-info-card {
    background: linear-gradient(135deg, rgba(84, 180, 177, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    border: 2px solid rgba(84, 180, 177, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.booking-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(84, 180, 177, 0.15);
}

.booking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-icon {
    font-size: 1.8rem;
    padding: 10px;
    background: rgba(84, 180, 177, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-title h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 4px 0;
}

.booking-title p {
    font-size: 0.9rem;
    color: rgba(44, 62, 80, 0.7);
    margin: 0;
}

.booking-contact {
    margin-bottom: 15px;
}

.booking-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    cursor: pointer;
}

.booking-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

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

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.phone-text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.perk-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.perk-text {
    font-size: 0.85rem;
    color: #2c3e50;
    font-weight: 500;
}

.info-content h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.consultation-note {
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--luxury-gold);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.consultation-note strong {
    color: var(--luxury-gold);
}

/* Clean Contact Card Design */
.contact-card-clean {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(84, 180, 177, 0.15);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-card-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Contact Options */
.contact-options {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(84, 180, 177, 0.1);
    max-width: 100%;
    overflow: hidden;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.method-icon {
    font-size: 1.5rem;
    padding: 8px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(84, 180, 177, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.phone-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--luxury-gold);
}

.method-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

.contact-divider {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

/* Clean Form */
.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
}

.form-field {
    padding: 12px 14px;
    border: 1px solid rgba(84, 180, 177, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 0;
    box-sizing: border-box;
}

.form-field:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px rgba(84, 180, 177, 0.1);
}

.form-field::placeholder {
    color: rgba(44, 62, 80, 0.5);
}

.form-textarea-clean {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

/* New Client Checkbox */
.new-client-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
}

.new-client-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(84, 180, 177, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.new-client-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent-teal));
    border-color: var(--accent-teal);
}

.new-client-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Submit Button */
.submit-btn-clean {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent-teal));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.submit-btn-clean:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, #e5c78a, var(--luxury-gold));
}

/* Quick Info */
.quick-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(84, 180, 177, 0.1);
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-main {
        grid-template-columns: 280px 1fr 350px;
        gap: 40px;
    }

    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-new {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-main {
        gap: 40px;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group.half {
        flex: 1;
    }

    .map-container {
        height: 300px;
    }

    .form-card {
        padding: 30px 25px;
    }

    /* Clean Contact Responsive */
    .contact-options {
        flex-direction: column;
        gap: 12px;
    }

    .contact-method {
        justify-content: center;
        text-align: center;
    }

    .contact-divider {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .quick-info {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-card {
        padding: 20px;
    }

    .form-card {
        padding: 25px 20px;
    }

    .map-container {
        height: 250px;
    }

    /* Clean Contact Mobile */
    .contact-card-clean {
        padding: 20px;
    }

    .method-icon {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .phone-link {
        font-size: 1rem;
    }

    .form-field {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .quick-info {
        gap: 8px;
    }

    .info-item {
        font-size: 0.8rem;
    }
}

/* Animation Keyframes for Contact */
@keyframes contactSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   ENHANCED FOOTER SECTION STYLES
   ============================================== */

.footer-new {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #2c3e50 50%, #1a252f 75%, #2c3e50 100%);
    color: var(--luxury-cream);
    overflow: hidden;
    margin-top: 0;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.05) 0%, rgba(84, 180, 177, 0.08) 50%, rgba(212, 165, 116, 0.05) 100%);
    z-index: 1;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.footer-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
    opacity: 0.4;
}

.footer-particles .particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.footer-particles .particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.footer-particles .particle:nth-child(3) {
    top: 80%;
    left: 70%;
    animation-delay: 8s;
}

.footer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px 0;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-brand-section {
    animation: slideInLeft 1.2s ease-out 0.2s both;
}

.footer-logo-container {
    margin-bottom: 25px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--luxury-cream);
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-logo .logo-accent {
    color: var(--luxury-gold);
}

.logo-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--accent-teal));
    border-radius: 2px;
    margin-top: 10px;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.credential-icon {
    font-size: 1.2rem;
    padding: 8px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    animation: slideInUp 1.2s ease-out 0.4s both;
}

.footer-column-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--luxury-gold);
    margin-bottom: 25px;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-teal);
    border-radius: 1px;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%) scaleX(0);
    width: 8px;
    height: 2px;
    background: var(--luxury-gold);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--luxury-gold);
    transform: translateX(10px);
}

.footer-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    padding: 8px;
    background: rgba(84, 180, 177, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--luxury-gold);
}

.footer-social-section {
    animation: slideInRight 1.2s ease-out 0.6s both;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(84, 180, 177, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 180, 177, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    transform: translateX(5px);
    border-color: var(--accent-teal);
    background: rgba(84, 180, 177, 0.1);
}

.social-link:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 1.5rem;
    padding: 8px;
    background: rgba(84, 180, 177, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-platform {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-handle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-cta {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(84, 180, 177, 0.1) 100%);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #e5c78a 100%);
    color: var(--luxury-cream);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e5c78a 0%, var(--luxury-gold) 100%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
}

.made-with {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 60px;
    }

    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-social-section {
        max-width: 400px;
        margin: 0 auto;
    }

    .logo-underline {
        margin: 10px auto 0;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px 0;
    }

    .footer-main {
        gap: 40px;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-links-container {
        gap: 12px;
    }

    .social-link {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 50px 15px 0;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-column-title {
        font-size: 1.1rem;
    }

    .footer-cta {
        padding: 20px 15px;
    }
}

/* Animation Keyframes for Footer */
@keyframes footerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   CHAT ASSISTANT - NEW LUXURY DESIGN
   ================================== */

/* Chat Assistant Container */
.chat-assistant-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Chat Toggle Button */
.chat-toggle-new {
    position: relative;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: chatPulse 3s infinite;
}

.chat-toggle-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    border-radius: 50%;
    opacity: 0.9;
}

.chat-toggle-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
}

.chat-toggle-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.chat-toggle-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: chatParticleFloat 4s infinite linear;
}

.chat-toggle-particles .particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.chat-toggle-particles .particle:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.chat-toggle-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.chat-toggle-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.chat-toggle-new svg {
    width: 32px;
    height: 32px;
    color: white;
    transition: all 0.3s ease;
}

.chat-toggle-new .close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.chat-toggle-new.active .chat-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.chat-toggle-new.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.chat-toggle-new:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.chat-toggle-new:active {
    transform: scale(0.95);
}

/* Chat Window */
.chat-window-new {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 420px;
    height: 600px;
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.chat-window-new.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(244, 248, 251, 0.9) 50%,
        rgba(230, 242, 241, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 25px;
}

.chat-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
}

.chat-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(84, 180, 177, 0.8) 0%, rgba(84, 180, 177, 0.2) 100%);
    border-radius: 50%;
    animation: chatWindowParticleFloat 6s infinite linear;
}

.chat-particles .particle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.chat-particles .particle:nth-child(2) {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.chat-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.chat-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 25px;
}

/* Chat Header */
.chat-header-new {
    text-align: center;
    margin-bottom: 25px;
    animation: chatHeaderSlideDown 0.6s ease-out;
}

.chat-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: badgePulse 2s infinite;
}

.badge-icon {
    font-size: 1rem;
    animation: badgeIconSpin 3s infinite linear;
}

.chat-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #54B4B1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-subtitle {
    font-size: 1rem;
    color: rgba(44, 62, 80, 0.7);
    margin: 0;
}

/* Chat Messages */
.chat-messages-new {
    flex: 1;
    overflow-y: auto;
    padding: 0 5px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(84, 180, 177, 0.3) transparent;
}

.chat-messages-new::-webkit-scrollbar {
    width: 6px;
}

.chat-messages-new::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-new::-webkit-scrollbar-thumb {
    background: rgba(84, 180, 177, 0.3);
    border-radius: 3px;
}

.chat-messages-new::-webkit-scrollbar-thumb:hover {
    background: rgba(84, 180, 177, 0.5);
}

/* Message Styles */
.assistant-message-new {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: messageSlideIn 0.4s ease-out;
}

.user-message-new {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-end;
    animation: messageSlideIn 0.4s ease-out;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.avatar-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.avatar-icon svg {
    width: 100%;
    height: 100%;
}

.message-content-new {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 18px;
    border-radius: 20px 20px 20px 5px;
    border: 1px solid rgba(84, 180, 177, 0.2);
    backdrop-filter: blur(10px);
    max-width: calc(100% - 60px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.user-message-new .message-content-new {
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    color: white;
    border-radius: 20px 5px 20px 20px;
    border-color: rgba(255, 255, 255, 0.3);
}

.message-content-new p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Quick Replies */
.chat-quick-replies-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    animation: quickRepliesSlideUp 0.6s ease-out 0.3s both;
}

.quick-reply-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(84, 180, 177, 0.3);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-reply-new:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.reply-icon {
    font-size: 1rem;
}

/* Chat Input */
.chat-input-new {
    position: relative;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(84, 180, 177, 0.3);
    border-radius: 25px;
    padding: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chat-input-wrapper:focus-within {
    border-color: #54B4B1;
    box-shadow: 0 0 0 4px rgba(84, 180, 177, 0.1);
}

#chat-message-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    background: transparent;
    color: #2c3e50;
    resize: none;
}

#chat-message-input::placeholder {
    color: rgba(44, 62, 80, 0.5);
}

.chat-send-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.send-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D4A574 0%, #54B4B1 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chat-send-btn svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: white;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.chat-send-btn:hover .send-btn-bg {
    transform: scale(1.2);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

/* Typing Indicator */
.typing-indicator-new {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: messageSlideIn 0.4s ease-out;
}

.typing-dots-new {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(84, 180, 177, 0.2);
    border-radius: 20px 20px 20px 5px;
    backdrop-filter: blur(10px);
}

.typing-dots-new span {
    width: 8px;
    height: 8px;
    background: rgba(84, 180, 177, 0.8);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots-new span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots-new span:nth-child(2) { animation-delay: -0.16s; }
.typing-dots-new span:nth-child(3) { animation-delay: 0s; }

/* Animations */
@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 165, 116, 0);
    }
}

@keyframes chatParticleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-80px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes chatWindowParticleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

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

@keyframes badgeIconSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

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

@keyframes typingDots {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-assistant-new {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle-new {
        width: 60px;
        height: 60px;
    }

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

    .chat-window-new {
        width: calc(100vw - 40px);
        max-width: 380px;
        height: 500px;
        bottom: 80px;
        right: -10px;
    }

    .chat-container {
        padding: 20px 15px;
    }

    .chat-title {
        font-size: 1.5rem;
    }

    .quick-reply-new {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .chat-toggle-new {
        width: 55px;
        height: 55px;
    }

    .chat-toggle-new svg {
        width: 20px;
        height: 20px;
    }

    .chat-window-new {
        width: calc(100vw - 20px);
        height: 450px;
        bottom: 75px;
        right: -10px;
    }

    .chat-container {
        padding: 15px 12px;
    }

    .chat-title {
        font-size: 1.3rem;
    }

    .chat-subtitle {
        font-size: 0.9rem;
    }

    .message-content-new {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .quick-reply-new {
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 6px;
    }

    #chat-message-input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .chat-send-btn {
        width: 40px;
        height: 40px;
    }

    .chat-send-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   HERO SECTION ENHANCED RESPONSIVENESS
   ================================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-container {
        padding: 80px 30px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-container {
        padding: 60px 20px;
    }
    .hero-main {
        gap: 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-services-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-main {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-trust-indicators {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-container {
        padding: 40px 15px;
    }
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-width: 250px;
    }
    .stat-item {
        padding: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .hero-buttons {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-trust-indicators {
        grid-template-columns: 1fr !important;
        gap: 10px;
        max-width: 200px;
        margin: 0 auto;
    }
    .trust-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .hero-services-preview {
        grid-template-columns: 1fr !important;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }
    .service-preview-card {
        padding: 12px;
    }
    .service-preview-title {
        font-size: 0.8rem;
    }
    .floating-element {
        display: none; /* Hide on mobile for performance */
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-container {
        padding: 30px 10px;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 15px;
    }
    .hero-accent {
        display: block;
        margin-top: 5px;
    }
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .hero-stats {
        max-width: 200px;
        gap: 12px;
    }
    .stat-item {
        padding: 10px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .hero-buttons {
        max-width: 250px;
    }
    .hero-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .hero-services-preview {
        max-width: 220px;
    }
    .service-preview-card {
        padding: 10px;
    }
    .service-preview-title {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-container {
        padding: 25px 8px;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
    .hero-description {
        font-size: 0.85rem;
    }
    .hero-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}