/* Hero Main Section */
.hero-main {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(30px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-gold,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-hero-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-gold:hover::before {
    left: 100%;
}

.btn-hero-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-hero-outline:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
    cursor: pointer;
}

.hero-scroll-down span {
    width: 3px;
    height: 20px;
    background: #d4af37;
    border-radius: 3px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

.hero-scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: scaleY(0); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Services Home Section */
.services-home {
    padding: 7rem 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card-home {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-home:hover::before {
    opacity: 1;
}

.service-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.service-icon-home {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.5s ease;
}

.service-card-home:hover .service-icon-home {
    transform: rotateY(360deg) scale(1.1);
}

.service-card-home h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-home p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.section-cta {
    text-align: center;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: white;
    transform: translateX(10px);
}

/* Features Home Section */
.features-home {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: 
        repeating-linear-gradient(90deg, #d4af37 0px, transparent 1px, transparent 50px),
        repeating-linear-gradient(0deg, #d4af37 0px, transparent 1px, transparent 50px);
}

.section-header.light {
    color: white;
}

.section-header.light .section-title {
    color: white;
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-box:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-10px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    transition: all 0.5s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotate(360deg);
}

.feature-box h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-box p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Services Grid with Book Buttons */
.service-card-home {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.btn-service-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.btn-service-book:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* New Parallax CTA Section */
.cta-parallax-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #0a0a0a;
}

.parallax-layers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%);
    animation: float 15s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 30%, rgba(244, 208, 63, 0.1) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    animation: float 25s ease-in-out infinite;
}

.cta-overlay-dark {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,26,26,0.8) 100%);
    z-index: 1;
}

.cta-split-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-text-side {
    color: white;
}

.cta-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.cta-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.cta-benefits i {
    color: #d4af37;
    font-size: 1.5rem;
}

.cta-action-side {
    position: relative;
}

.cta-card-floating {
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.booking-preview {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}

.preview-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.booking-preview h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
}

.booking-preview p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.time-slots-preview {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-badge {
    padding: 0.75rem 1.25rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.time-badge:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quick-item i {
    font-size: 2rem;
    color: #d4af37;
}

.quick-item .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.25rem;
}

.quick-item a,
.quick-item span:last-child {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Remove old CTA sections */
.cta-wave-section,
.cta-home {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-split-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-title-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-title-large {
        font-size: 2.5rem;
    }
    
    .contact-quick {
        grid-template-columns: 1fr;
    }
}
