/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #D4AF37;
    /* Luxury Gold */
    --secondary-color: #2C2C2C;
    /* Charcoal Gray */
    --dark-color: #1A1A1A;
    /* Deep Black */
    --light-color: #FFFFFF;
    /* Pure White */
    --accent-color: #E6B800;
    /* Bright Gold */
    --text-color: #333333;
    /* Dark Gray Text */

    /* Background Colors */
    --light-bg: #F8F6F0;
    /* Cream Background */
    --dark-bg: #2C2C2C;
    /* Charcoal Background */

    /* Status Colors */
    --success-color: #28A745;
    /* Success Green */
    --warning-color: #FFC107;
    /* Warning Amber */
    --error-color: #DC3545;
    /* Error Red */

    /* Updated Highlight & Special Colors */
    --highlight-color: #D4AF37;
    /* Changed to luxury gold */
    --highlight-color-rgb: 212, 175, 55;
    /* RGB for luxury gold */
    --navbar-base-color: #2C2C2C;
    /* Charcoal for navbar */
    --navbar-base-color-rgb: 44, 44, 44;
    /* RGB for charcoal */
    --text-muted-color: #666666;
    /* Keep existing muted gray */
    --scrollbar-track-color: #F8F6F0;
    /* Match light background */
    --vibrant-pink-rgb: 212, 175, 55;
    /* Changed to gold accent */
    --black-rgb: 26, 26, 26;
    /* Pure Black for rgba */
}

.text-gold {
    color: var(--primary-color) !important;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: var(--text-color);
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

.footer-section {
    flex-shrink: 0;
}

/* Navigation styles moved to nav.css */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: url('/public/assets/banners/home.JPG') center/cover no-repeat;
    color: var(--light-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 76px;
    /* Height of fixed navbar */
}

/* .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(var(--black-rgb), 0.8) 0%,
        rgba(var(--highlight-color-rgb), 0.2) 100%
    );
    z-index: 1;
} */

.hero-section .container {
    position: relative;
    z-index: 2;
    height: calc(100vh - 76px);
    /* Subtract navbar height */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    letter-spacing: 0.5px;
}

.hero-features {
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    width: 100%;
}

.hero-features span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(var(--highlight-color-rgb), 0.1);
    backdrop-filter: blur(5px);
}

.hero-features i {
    color: var(--primary-color);
}

.hero-features span {
    color: var(--light-color);
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta a {
    min-width: 250px;
    text-align: center;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-section .book-now-btn {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: none;
    display: inline-block;
}

.hero-section .book-now-btn:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: none;
}

.services-btn {
    background: transparent;
    color: var(--light-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.services-btn:hover {
    background: var(--light-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-badges {
    animation: fadeInUp 1s ease 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-width: 200px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.45);
    transition: all 0.9s ease;
    cursor: pointer;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
}

.badge-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.badge-item p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .badge-item {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
}

.hero-btn:hover {
    background: var(--light-color);
    /* Changed from white */
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--vibrant-pink-rgb), 0.3);
    /* Using new variable */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Services Section */
#services {
    background-color: var(--secondary-color);
    /* Changed to darker background */
    padding: 6rem 0;
}

.services-section {
    background-color: var(--secondary-color);
    /* Changed to darker background */
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 8px 20px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.section-title .subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    /* Changed to light color for contrast */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* Added text shadow */
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.service-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.15);
    /* Using var for opacity */
    transition: all 0.4s ease;
    background: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--light-color-rgb), 0.1);
    /* Using var for opacity */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: all 0.4s ease;
    opacity: 0;
}

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

.service-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.service-card i {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-color);
    /* Ensuring it's var(--light-color) */
}

.service-card p {
    color: rgba(var(--light-color-rgb), 0.8);
    /* Using var for opacity */
    line-height: 1.6;
}

.service-card .service-price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    border-top: 1px solid rgba(var(--light-color-rgb), 0.1);
    padding-top: 1rem;
}

.service-card .service-price .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
}

.service-card .service-price .duration {
    color: rgba(var(--light-color-rgb), 0.7);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.service-card .service-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card .service-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--highlight-color-rgb), 0.2);
}

.service-card.featured {
    position: relative;
    border: 2px solid var(--primary-color);
}

.service-card.featured::before {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.service-card .featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
#about {
    position: relative;
    /* background: linear-gradient(rgba(var(--black-rgb), 0.95), rgba(var(--black-rgb), 0.95)),
        url('../img/about/background.jpg') center/cover fixed; */
    background:  rgba(var(--black-rgb), 0.95),
        url('/public/assets/banners/about.JPG') center/cover fixed;
    padding: 6rem 0;
}

.text-gold {
    color: var(--primary-color);
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.achievement-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(var(--highlight-color-rgb), 0.1);
    border-radius: 15px;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.2);
    transition: all 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-5px);
    background: rgba(var(--highlight-color-rgb), 0.15);
}

.achievement-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.achievement-box p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(var(--light-color-rgb), 0.8);
}

.about-image {
    position: relative;
}

.about-image .main-image {
    width: 100%;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.3);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-grid img {
    box-shadow: 0 5px 15px rgba(var(--black-rgb), 0.2);
}

/* Team Section Styles */
.team-member {
    background: rgba(var(--light-color-rgb), 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    position: relative;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.member-img .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(var(--primary-color-rgb), 0.9);
    padding: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover .social-links {
    bottom: 0;
}

.member-img .social-links a {
    color: var(--light-color);
    margin: 0 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.member-img .social-links a:hover {
    color: var(--dark-color);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
}

/* Testimonials Styles */
.testimonial-card {
    background: rgba(var(--light-color-rgb), 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(var(--light-color-rgb), 0.08);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content .rating {
    color: var(--primary-color);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--light-color-rgb), 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .achievement-box {
        margin-bottom: 1rem;
    }

    .testimonial-card {
        margin-bottom: 2rem;
    }
}

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

    .team-member {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .achievement-box {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact-info i {
    color: var(--primary-color);
    /* Changed from #007bff */
    margin-right: 10px;
}

#contact-form .form-control {
    margin-bottom: 1rem;
}

/* Contact Form Styles */
#contact .form-control {
    background-color: rgba(var(--light-color-rgb), 0.1);
    /* Using var for opacity */
    border: 1px solid rgba(var(--light-color-rgb), 0.2);
    /* Using var for opacity */
    color: var(--light-color);
    /* Ensuring it's var(--light-color) */
}

#contact .form-control::placeholder {
    color: rgba(var(--light-color-rgb), 0.6);
    /* Using var for opacity */
}

#contact .form-control:focus {
    background-color: rgba(var(--light-color-rgb), 0.15);
    /* Using var for opacity */
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--highlight-color-rgb), 0.25);
    /* Using var for opacity */
    color: var(--light-color);
    /* Ensuring it's var(--light-color) */
}

#contact .contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

#contact .contact-info p {
    color: rgba(var(--light-color-rgb), 0.8);
    /* Using var for opacity */
}

/* Contact Section Styles */
#contact {
    position: relative;
    background: linear-gradient(rgba(var(--black-rgb), 0.95), rgba(var(--black-rgb), 0.95)),
        url('../img/about/background.jpg') center/cover fixed;
}

.contact-info-card {
    background: rgba(var(--light-color-rgb), 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(var(--light-color-rgb), 0.08);
}

.contact-info-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
    transform: rotateY(360deg);
}

.contact-info-card .icon-box i {
    font-size: 2rem;
    color: var(--dark-color);
}

.contact-info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.contact-info-card p {
    color: rgba(var(--light-color-rgb), 0.8);
    margin-bottom: 0.5rem;
}

.contact-info-card .direction-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.contact-info-card .direction-link:hover {
    transform: translateX(5px);
}

.contact-info-card .business-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--light-color-rgb), 0.1);
}

.contact-info-card .social-links a {
    color: var(--light-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info-card .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-card {
    background: rgba(var(--light-color-rgb), 0.05);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.contact-form-card .form-control {
    background: rgba(var(--light-color-rgb), 0.05);
    border: 2px solid rgba(var(--primary-color-rgb), 0.3);
    color: var(--light-color);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    background: rgba(var(--light-color-rgb), 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--highlight-color-rgb), 0.15);
}

.contact-form-card .form-control:hover {
    border-color: rgba(var(--primary-color-rgb), 0.6);
}

.contact-form-card select.form-control {
    border: 2px solid rgba(var(--primary-color-rgb), 0.3);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(212, 175, 55)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-form-card .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Services Page Styles */
.service-header {
    background: linear-gradient(rgba(var(--black-rgb), 0.8), rgba(var(--black-rgb), 0.8)),
        url('../img/about/salon-interior.jpg') center/cover no-repeat fixed;
    padding: 150px 0 100px;
    color: var(--light-color);
    text-align: center;
}

.service-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-section {
    padding: 80px 0;
}

.service-section.bg-light {
    background-color: rgba(var(--light-color-rgb), 0.02) !important;
}

.service-package-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.service-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.package-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-header .price {
    display: block;
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-header .duration {
    display: block;
    color: rgba(var(--light-color-rgb), 0.7);
    font-size: 0.9rem;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-content ul li {
    color: var(--light-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-content ul li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.service-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--highlight-color-rgb), 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.service-card h4 {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(var(--light-color-rgb), 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.service-price span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.service-price small {
    color: rgba(var(--light-color-rgb), 0.7);
    font-size: 0.85rem;
}

.btn-book {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-book:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.consultation-cta {
    background: linear-gradient(rgba(var(--black-rgb), 0.9), rgba(var(--black-rgb), 0.9)),
        url('../img/about/salon-interior.jpg') center/cover no-repeat fixed;
    padding: 80px 0;
    color: var(--light-color);
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.consultation-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-consultation {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

@media (max-width: 991.98px) {
    .service-header {
        padding: 120px 0 80px;
    }

    .service-header h1 {
        font-size: 2.8rem;
    }

    .service-package-card,
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .service-header h1 {
        font-size: 2.2rem;
    }

    .service-header .lead {
        font-size: 1rem;
    }

    .consultation-cta h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/public/assets/banners/salon.JPG');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    /* margin-top: 76px; */
}

/* .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
} */

.our-story h2,
.our-team h2,
.our-values h2,
.facilities h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
}

.our-story h3 {
    color: #555;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
}

.team-member .designation {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.value-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    color: #c5a491;
}

.value-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1rem 0;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.facility-list i {
    color: #c5a491;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .badge-item {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
}




/* services */

.service-hero {
    height: 55vh;
    background: url('/public/assets/banners/salon.JPG') center/cover no-repeat;
    position: relative;
}

.service-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 600;
}

/* SECTION */
.pricing-section {
    background: #f8f8f8;
    padding: 80px 0;
}

/* TABS */
.tabs {
    text-align: center;
}

.tab-btn {
    border: 1px solid #c9a96e;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    background: transparent;
    color: #c9a96e;
    transition: 0.3s;
}

.tab-btn.active {
    background: #c9a96e;
    color: #fff;
}

/* SERVICE ROW (MAIN DESIGN) */
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
}

/* LEFT */
.service-row .left h5 {
    margin: 0;
    /* font-weight: 600; */
}

.service-row .left p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #777;
}

/* RIGHT PRICE */
.service-row .right {
    font-size: 18px;
    /* font-weight: 600; */
    color: #c9a96e;
}

/* HOVER */
.service-row:hover {
    transform: translateX(5px);
    transition: 0.2s;
} 