/* Beauty Tred - Modern SPA Website Styles */

:root {
    --primary-color: #8B5A8C;
    --secondary-color: #E6B8A2;
    --accent-color: #D4A574;
    --light-color: #F8F6F3;
    --dark-color: #2C1810;
    --text-muted: #6C5F5F;
    --gradient-1: linear-gradient(135deg, #8B5A8C 0%, #D4A574 100%);
    --gradient-2: linear-gradient(45deg, #E6B8A2 0%, #F8F6F3 100%);
    --gradient-3: radial-gradient(circle, rgba(139,90,140,0));
}

.cookie-banner.show {
    transform: translateY(0);
}
/* Custom Navigation */
.custom-navbar {
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 90, 140, 0.1);
}

section .container{
    position: relative;
    z-index: 6;
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
.custom-navbar.scrolled {
    background: rgba(248, 246, 243, 0.98);
    box-shadow: var(--shadow-soft);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-3);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-cta {
    z-index: 2;
    position: relative;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 2s infinite;
}

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

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-1);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--dark-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Relax Meter Section */
.relax-meter-section {
    background: linear-gradient(135deg, rgba(139,90,140,0.05) 0%, rgba(248,246,243,1) 100%);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.relax-meter-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.meter-track {
    width: 100%;
    height: 10px;
    background: #E0E0E0;
    border-radius: 10px;
    position: relative;
    margin: 2rem 0;
}

.meter-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    width: 30%;
    transition: all 0.3s ease;
}

.relax-slider {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: transparent;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.relax-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139,90,140,0.3);
    transition: all 0.3s ease;
    top: 80px;
    position: relative;
}

.relax-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(139,90,140,0.4);
}

.relax-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(139,90,140,0.3);
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.relax-recommendation {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.relax-recommendation h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Featured Service */
.featured-service {
    padding: 6rem 0;
    background: white;
}

.service-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.price-badge .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-badge .duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-content {
    padding-left: 2rem;
}

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

.service-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Quotes Section */
.quotes-section {
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.quotes-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-card {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.quote-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.quote-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-author {
    font-weight: 600;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 6rem 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

/* Countdown Section */
.countdown-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.countdown-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.countdown-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Offers Section */
.offers-section {
    background: var(--light-color);
    padding: 6rem 0;
}

.offer-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.offer-card.featured {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.05);
}

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

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-card.featured .offer-badge {
    background: white;
    color: var(--primary-color);
}

.offer-card h4 {
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.offer-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.offer-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.offer-price {
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.offer-card.featured .new-price {
    color: white;
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 6rem 0;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer strong {
    display: block;
    margin-bottom: 0.2rem;
}

.reviewer span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-2);
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 0;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139,90,140,0.4);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    width: 20px;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .relax-meter-container {
        padding: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 15px!important;
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 1rem;
    }
}

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

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

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-control {
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 140, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--light-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}


.policy-hero{
    padding-top: 120px!important;
}

.policy-hero .hero-subtitle{
    margin: 20px auto;
}