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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #0a1a3a;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #c9a96a, #e6c17c);
    margin: 20px auto 30px;
    border-radius: 2px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #0a1a3a;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 1.2rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    background-color: rgba(10, 26, 58, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    transform: none !important;
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: rgba(10, 26, 58, 0.98);
}

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

.logo h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: #c9a96a;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #c9a96a;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a96a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 106, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.9)), 
                url('back3.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.2rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 16px 30px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #c9a96a;
    transform: translateY(-3px);
}

.secondary-cta i {
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 700px;
        background-attachment: scroll;
        padding-top: 70px;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 600px;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* =========================================
   QUICK STATS
   ========================================= */
.quick-stats {
    background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
    padding: 60px 0;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

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

.stat {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #c9a96a;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.about-text strong {
    color: #0a1a3a;
    font-weight: 600;
}

.artist-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
}

.credentials {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #c9a96a;
}

.credentials h4 {
    margin-bottom: 20px;
    color: #0a1a3a;
    font-size: 1.4rem;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.credentials li i {
    color: #c9a96a;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #c9a96a, #e6c17c);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    color: #c9a96a;
    margin-bottom: 25px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0a1a3a;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-content {
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .artist-image {
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
    background-color: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.4rem;
    color: #0a1a3a;
}

.video-card p {
    padding: 0 25px 25px;
    color: #666;
    font-size: 1rem;
}

.video-cta {
    text-align: center;
    margin-top: 40px;
}

.youtube-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ff0000;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 35px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.youtube-cta:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.youtube-cta i {
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #c9a96a, #e6c17c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-icon {
    font-size: 3rem;
    color: #c9a96a;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0a1a3a;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-details {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.service-details li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.service-details li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c9a96a;
}

.service-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    border-left: 5px solid #c9a96a;
}

.service-note i {
    font-size: 2rem;
    color: #c9a96a;
    flex-shrink: 0;
}

.service-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #444;
}

.service-note strong {
    color: #0a1a3a;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* =========================================
   REPERTOIRE SECTION
   ========================================= */
.repertoire-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    color: #c9a96a;
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #0a1a3a;
}

.category-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.category-card li {
    padding: 12px 0;
    border-bottom: 1px dashed #eaeaea;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.category-card li::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c9a96a;
    font-size: 0.9rem;
}

.category-card li:last-child {
    border-bottom: none;
}

.custom-arrangement {
    background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
    border-radius: 10px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.custom-arrangement::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 106, 0.1) 0%, transparent 70%);
}

.arrangement-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex: 1;
}

.arrangement-content i {
    font-size: 3.5rem;
    color: #c9a96a;
    flex-shrink: 0;
}

.arrangement-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.arrangement-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.arrangement-cta {
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 35px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    white-space: normal;
    text-align: center;
    word-break: break-word;
}

.arrangement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .repertoire-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-arrangement {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .repertoire-categories {
        grid-template-columns: 1fr;
    }
    
    .custom-arrangement {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .arrangement-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .arrangement-cta {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .arrangement-content h3 {
        font-size: 1.5rem;
    }
    
    .arrangement-content p {
        font-size: 1rem;
    }
}

/* =========================================
   BOOKING PROCESS
   ========================================= */
.booking-process {
    background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.booking-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a96a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.booking-process .section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.booking-process .section-title::after {
    background: linear-gradient(to right, #c9a96a, #e6c17c);
}

.booking-process .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a96a, #e6c17c);
    color: #0a1a3a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-connector {
    color: #c9a96a;
    font-size: 1.5rem;
    opacity: 0.5;
}

.booking-note {
    background: rgba(201, 169, 106, 0.1);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    border: 1px solid rgba(201, 169, 106, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-note i {
    font-size: 2rem;
    color: #c9a96a;
    flex-shrink: 0;
}

.booking-note p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.booking-note strong {
    color: #c9a96a;
}

@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        gap: 60px;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .step-content {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .booking-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: #c9a96a;
    margin-bottom: 25px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar i {
    font-size: 3.5rem;
    color: #0a1a3a;
    opacity: 0.7;
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: #0a1a3a;
}

.client-info p {
    margin: 0;
    font-size: 1rem;
    color: #777;
    font-style: normal;
}

.stars {
    color: #ffc107;
    margin-top: 5px;
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0a1a3a;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover, .slider-next:hover {
    background-color: #c9a96a;
    color: #fff;
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #c9a96a;
}

.dot:hover {
    background-color: #b8975a;
}

.review-platforms {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.review-platforms p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform i {
    font-size: 1.5rem;
}

.platform span {
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .platform-icons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .platform {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* =========================================
   FAQ SECTION - ИСПРАВЛЕННАЯ ВЕРСИЯ
   ========================================= */
.faq-section {
    background-color: #fff;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    background-color: #fff;
}

.faq-question {
    padding: 25px 30px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #0a1a3a;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-question i {
    color: #c9a96a;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, 
.faq-answer ol {
    margin: 10px 0 10px 20px;
    color: #555;
}

.faq-answer li {
    margin-bottom: 5px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-question i {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.quote-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-intro h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #0a1a3a;
    margin-bottom: 10px;
}

.form-intro h3 i {
    color: #c9a96a;
}

.form-intro p {
    color: #666;
    margin: 0;
    font-size: 1.05rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #0a1a3a;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96a;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 106, 0.1);
}

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

@media (max-width: 768px) {
    input[type="date"] {
        min-height: 48px;
        font-size: 16px !important;
        padding: 12px 15px !important;
        width: 100% !important;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
        background-color: #f8f9fa;
    }
    
    @supports (-webkit-touch-callout: none) {
        input[type="date"] {
            font-size: 16px;
        }
    }
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-privacy input {
    margin-top: 5px;
    min-width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-privacy label {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    cursor: pointer;
}

.privacy-link {
    color: #c9a96a;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    border: none;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    font-size: 1.3rem;
}

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

.info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: #0a1a3a;
    margin-bottom: 30px;
}

.info-card h3 i {
    color: #c9a96a;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.whatsapp-contact, .email-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.whatsapp-contact:hover, .email-contact:hover {
    background-color: #fff;
    border-color: #c9a96a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-contact i {
    font-size: 2.5rem;
    color: #25D366;
}

.email-contact i {
    font-size: 2.5rem;
    color: #c9a96a;
}

.phone-number, .email-address {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1a3a;
    margin-top: 5px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(201, 169, 106, 0.1);
    border-radius: 6px;
    border-left: 4px solid #c9a96a;
}

.response-time i {
    color: #c9a96a;
    font-size: 1.3rem;
}

.response-time p {
    margin: 0;
    color: #555;
}

.response-time strong {
    color: #0a1a3a;
}

.next-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

.next-steps li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-left: 35px;
}

.next-steps li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 25px;
    background-color: #c9a96a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.next-steps li:last-child {
    border-bottom: none;
}

.service-area {
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-area i {
    font-size: 2.5rem;
    color: #c9a96a;
    flex-shrink: 0;
}

.area-note {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .quote-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-privacy {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .whatsapp-contact, .email-contact {
        padding: 15px;
    }
    
    .phone-number, .email-address {
        font-size: 1.1rem;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-logo .tagline {
    color: #c9a96a;
    font-size: 1rem;
    margin-bottom: 10px;
}

.artist-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #c9a96a, #e6c17c);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #c9a96a;
    padding-left: 8px;
}

.footer-contact ul {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #c9a96a;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c9a96a;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icons a:hover {
    background-color: rgba(201, 169, 106, 0.1);
    color: #c9a96a;
    border-color: rgba(201, 169, 106, 0.3);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.3rem;
    width: 24px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    border: none;
    width: 45px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: linear-gradient(to right, #d8b97a, #e6c17c);
    transform: scale(1.05);
}

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

.certifications {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-badge i {
    color: #c9a96a;
}

.footer-legal {
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #c9a96a;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 60px;
    }
    
    .certifications {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #c9a96a, #d8b97a);
    color: #0a1a3a;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background-color: #0a1a3a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #0a1a3a transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* =========================================
   MOBILE MENU STYLES
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a1a3a;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .nav-links .cta-button {
        margin: 15px 20px;
        padding: 15px;
        width: calc(100% - 40px);
    }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 5px 10px;
    background-color: #fdf2f2;
    border-radius: 4px;
    border-left: 3px solid #e74c3c;
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =========================================
   MODAL STYLES
   ========================================= */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.privacy-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #c9a96a;
}

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

@media (max-width: 768px) {
    button, 
    a, 
    .faq-question, 
    .cta-button, 
    .hero-cta, 
    .secondary-cta,
    .arrangement-cta,
    .youtube-cta,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

:focus {
    outline: 2px solid #c9a96a;
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #c9a96a;
    outline-offset: 2px;
}

body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus,
body:not(.user-is-tabbing) a:focus {
    outline: none;
}