/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Optimus';
    src: url('../fonts/Optimus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hero';
    src: url('../fonts/Hero.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Hero', 'Georgia', serif;
    color: #f5f5f5;
    background-color: #1a1a1a;
    line-height: 2.0;
    overflow-x: hidden;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b59567);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #d4af37;
}

.phone {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #d4af37;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.phone:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.phone-mobile {
    display: none;
}

.phone-desktop {
    display: inline-block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

/* Particles Container */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

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

.hero-bg-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.1s ease-out;
    will-change: transform;
    position: absolute;
    top: -10%;
    left: 0;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    transition: all 0.3s ease-out;
    opacity: 0.8;
}

.hero-decoration-right {
    right: -200px;
}

.hero-decoration-left {
    left: -200px;
    top: 60%; /* Немного ниже правого */
}

.flower-decoration {
    height: 600px;
    width: auto;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Hero Animations */
.hero-ring {
    position: relative;
    margin-bottom: 30px;
    margin-left: 0px;
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    display: inline-block;
}

.hero-ring.animate-ring {
    animation: ringAppear 1s ease-out forwards;
}

@keyframes ringAppear {
    to {
        opacity: 0.9;
        transform: scale(1) rotate(0deg);
    }
}

.ring-decoration {
    height: 460px;
    width: auto;
    display: block;
    margin-left: 40px
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Optimus', 'Georgia', serif;
    font-size: 64px;
    font-weight: 300;
    color: #b59567;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    white-space: nowrap;
    text-align: center;
}

.hero-title.animate-title {
    animation: fadeInTitle 1s ease-out 0.5s forwards;
}

@keyframes fadeInTitle {
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.subtitle-glass {
    display: inline-block;
    padding: 20px 40px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-subtitle.animate-subtitle {
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons.animate-buttons {
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

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

/* Buttons */
.btn {
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Hero', 'Georgia', serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background: rgba(26, 26, 26, 0.95);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card.glow-active {
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.15);
}

.benefit-card.glow-active .benefit-icon {
    animation: pulse 1.5s infinite;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.benefit-icon img {
    height: 80px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(77%) sepia(48%) saturate(458%) hue-rotate(3deg) brightness(92%) contrast(87%);
}

.benefit-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #1a1a1a;
}

.section-title {
    font-size: 48px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d4af37, #b59567);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: rgba(26, 26, 26, 0.95);
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.price-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3),
                0 0 30px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
}

.price-card-popular {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.price-card-popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.price-header {
    margin-bottom: 30px;
}

.price-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value {
    font-size: 48px;
    color: #f5f5f5;
    font-weight: bold;
}

.price-currency {
    font-size: 24px;
    color: #d4af37;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    color: #e0e0e0;
    font-size: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    padding-left: 25px;
}

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

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
}

.pricing-note p {
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-note .btn {
    margin-top: 10px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-box {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

.about-text {
    font-size: 20px;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.8;
    min-height: 120px;
}

.typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: #d4af37;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Booking Form Section */
.booking {
    padding: 60px 0;
    background: rgba(26, 26, 26, 0.95);
}

.booking-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: formGlow 3s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1),
                    0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1),
                    0 0 50px rgba(212, 175, 55, 0.4);
    }
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        transparent);
    animation: borderShine 2s ease-in-out infinite;
}

@keyframes borderShine {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.booking-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        transparent);
    animation: borderShine 2s ease-in-out infinite;
}

.booking-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: rgba(212, 175, 55, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
    z-index: 1;
}

.form-group label.floating {
    top: -10px !important;
    left: 10px;
    font-size: 12px !important;
    color: #d4af37 !important;
    background: linear-gradient(to bottom, 
                rgba(26, 26, 26, 0.95) 0%, 
                rgba(26, 26, 26, 0.95) 50%, 
                transparent 100%);
    padding: 0 8px;
}

.form-group label.always-floating {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #d4af37;
    background: rgba(26, 26, 26, 0.95);
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #f5f5f5;
    font-size: 16px;
    font-family: 'Hero', 'Georgia', serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide ALL placeholders including browser-generated ones */
.form-input::placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

.form-input::-webkit-input-placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

.form-input::-moz-placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

.form-input:-ms-input-placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

.form-input::-ms-input-placeholder {
    opacity: 0 !important;
    color: transparent !important;
}

/* Prevent browser autofill styling */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(212, 175, 55, 0.05) inset !important;
    -webkit-text-fill-color: #f5f5f5 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Date and Time inputs specific styles */
.form-input[type="date"],
.form-input[type="time"] {
    color-scheme: dark;
    padding-top: 25px;
    padding-bottom: 10px;
    position: relative;
}

/* Hide default placeholder text for date/time inputs when empty */
.form-input[type="date"]:not(:focus):not(:valid),
.form-input[type="time"]:not(:focus):not(:valid) {
    color: transparent !important;
}

.form-input[type="date"]::-webkit-datetime-edit,
.form-input[type="time"]::-webkit-datetime-edit {
    color: transparent;
}

.form-input[type="date"]:focus::-webkit-datetime-edit,
.form-input[type="time"]:focus::-webkit-datetime-edit,
.form-input[type="date"]:valid::-webkit-datetime-edit,
.form-input[type="time"]:valid::-webkit-datetime-edit {
    color: #f5f5f5 !important;
}

.form-input[type="date"]::-webkit-datetime-edit-text,
.form-input[type="date"]::-webkit-datetime-edit-month-field,
.form-input[type="date"]::-webkit-datetime-edit-day-field,
.form-input[type="date"]::-webkit-datetime-edit-year-field,
.form-input[type="time"]::-webkit-datetime-edit-text,
.form-input[type="time"]::-webkit-datetime-edit-hour-field,
.form-input[type="time"]::-webkit-datetime-edit-minute-field,
.form-input[type="time"]::-webkit-datetime-edit-ampm-field {
    color: inherit;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(5deg);
    cursor: pointer;
    opacity: 1;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.btn-submit:active {
    transform: scale(0.98);
}

.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    bottom: 30px;
}

.toast-content {
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5),
                0 0 20px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 350px;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.toast-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.2);
    border-radius: 50%;
}

.toast-icon svg {
    color: #1a1a1a;
}

.toast-message {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.toast-close:hover {
    transform: scale(1.2);
}

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

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 18px;
    font-family: 'Hero', 'Georgia', serif;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #d4af37;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: rgba(26, 26, 26, 0.95);
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b59567);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 22px;
    color: #d4af37;
    margin: 0 0 8px 0;
    font-weight: normal;
}

.review-rating {
    color: #d4af37;
    font-size: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.review-date {
    font-size: 14px;
    color: #888;
    text-align: right;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b59567);
    border-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

/* Contacts Section */
.contacts {
    padding: 60px 0;
    background: #1a1a1a;
}

.contacts-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3),
                0 0 30px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.contact-title {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-link {
    font-size: 18px;
    color: #f5f5f5;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-link {
    color: #d4af37;
}

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

.contact-description {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.7);
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 50px 0 30px;
    text-align: center;
    color: #888;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-title {
    font-size: 20px;
    color: #d4af37;
    margin: 0;
    font-weight: normal;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #d4af37, #b59567);
    border-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: rotate(360deg);
}

.footer-copyright {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Mobile Header */
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        position: relative;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease-out;
        padding: 20px;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    .phone-desktop {
        display: none;
    }
    
    .phone-mobile {
        display: inline-block;
        color: #d4af37;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        border: 2px solid #d4af37;
        padding: 10px 20px;
        border-radius: 25px;
    }
    
    /* Mobile Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-ring {
        margin-top: -100px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .subtitle-glass {
        padding: 15px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .hero-decoration {
        right: -150px;
    }
    
    .hero-decoration-right {
        right: -150px;
    }
    
    .hero-decoration-left {
        left: -150px;
    }
    
    .flower-decoration {
        height: 300px;
    }
    
    .ring-decoration {
        height: 340px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    /* Mobile Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Contacts */
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Reviews */
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .review-card {
        padding: 30px 20px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .review-name {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Sections */
    .section-title {
        font-size: 36px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .about-box {
        padding: 30px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card-popular {
        transform: scale(1);
    }
    
    .price-card-popular:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .price-value {
        font-size: 40px;
    }
    
    .pricing-note {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-ring {
        margin-top: -60px;
    }
    
    .ring-decoration {
        height: 220px;
    }
    
    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .subtitle-glass {
        padding: 10px 18px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .benefit-title {
        font-size: 22px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .price-title {
        font-size: 22px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    /* Mobile Reviews */
    .reviews-carousel {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .contact-link {
        font-size: 16px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .toast-content {
        min-width: 280px;
        max-width: calc(100vw - 40px);
        padding: 15px 20px;
    }
    
    .toast-message {
        font-size: 14px;
    }
    
    .toast-notification.show {
        bottom: 20px;
    }
}

/* Price List Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 28px;
    color: #d4af37;
    margin: 0;
    font-weight: normal;
}

.modal-close {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.modal-loading p {
    color: #e0e0e0;
    font-size: 16px;
}

.modal-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 18px;
    color: #f5f5f5;
    margin: 0;
    font-weight: normal;
}

.service-price {
    font-size: 24px;
    color: #d4af37;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 20px;
}

.no-services {
    text-align: center;
    color: #888;
    padding: 40px 20px;
    font-size: 16px;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-price {
        margin-left: 0;
        font-size: 20px;
    }
}
