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

:root {
    --primary-color: #ffffff;       /* Luxury Gold */
    --secondary-color: #f2f2f291;     /* Charcoal Gray */
    --dark-color: #170802;          /* Deep Black */
    --light-color: #ffffff;         /* Pure White */
    --accent-color: #E6B800;        /* Bright Gold */
    --text-color: #242424;          /* Dark Gray Text */
    --logo-color: #f65014;
    --brand-color: #0F6E56;
    --hover-color: #4d3029;
      /* Bright Red for Logo */

    /* Background Colors */
    --light-bg: #F8F6F0;           /* Cream Background */
    --dark-bg: #009dff;            /* Charcoal Background */
    --bg-dark-rgb: 0, 157, 255;      /* RGB for 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: #b8b037;         /* Changed to luxury gold */
    --highlight-color-rgb: 3, 152, 132; /* RGB for luxury gold */
    --brand-color-rgb: #0f6e65; /* RGB for luxury gold */
    --navbar-base-color: #3e84bd;       /* Charcoal for navbar */
    --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 */
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(188, 53, 53) !important;
}

html {
    height: 100%;
     font-size: 15.5px;
}

body {
    min-height: 100vh;                  /* Full viewport height */
    display: flex;
    flex-direction: column;                /* Allows sticky footer if needed */
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;               /* Smooth scrolling for anchors */
    color: #212529;                        /* Use standard readable text color */
    background-color: #ffffff;            /* Set a neutral background */
    overflow-x: clip;                     /* Prevent horizontal scroll */
    margin: 0;                             /* Remove default margin */
    line-height: 1.6;                      /* Modern readable line spacing */
}

main {
    flex: 1 0 auto;
}

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

/* Navigation styles moved to nav.css */
.logo-type {
            text-decoration: none;
            display: inline-block;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 700;
            color: #f65014;
            /* dark blue-gray */
        }

        .logo-title {
            font-size: 1.8rem;
            /* larger */
            color: #f65014;
            /* bright blue */
        }

        .logo-subtitle {
            display: block;
            font-size: 1rem;
            font-weight: 400;
            color: #7f8c8d;
            /* gray */
            letter-spacing: 1px;
            margin-top: -5px;
            /* tighten spacing */
        }

        /* Optional hover effect */
        .logo-type:hover {
            color: #2980b9;
        }


/*hero Section -----------*/
/* HERO SECTION */
/* ================================
   HERO SECTION FULLY RESPONSIVE
================================ */



/* Hero Row */
.hero-row {
    flex: 1;
    min-height: inherit;
}

/* Columns stretch full height */
.hero-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center on desktop */
}

/* ================================
   LEFT CONTENT
================================ */
.hero-left {
    gap: 0.75rem;
}

.hero-left h1 {
    line-height: 1.15;
}

.hero-left p {
    max-width: 540px;
}



/* ================================
   RIGHT IMAGE
================================ */
.hero-image-wrapper {
    position: relative;
    flex: 1; /* Fill column height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-height: 100%; /* Fill the column height */
    width: auto;
    height: auto; /* keep aspect ratio */
    transition: 0.4s ease;
}

.hero-image:hover {
    transform: translateY(-8px);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ================================
   BUTTON CUSTOM COLOR
================================ */
.btn-custom-color {
    background-color: #ff6347 !important;
    border-color: #ff6347 !important;
    color: #ffffff !important;
}

.btn-custom-color:hover,
.btn-custom-color:focus,
.btn-custom-color:active {
    background-color: #e79703 !important;
    border-color: #e79703 !important;
}

/* ================================
   GRADIENT TEXT
================================ */
.text-gradient {
    background: linear-gradient(90deg, #4f46e5, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================================
   BADGE
================================ */
.hero-badge {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 8px 18px;
    font-size: 15px;
}

/* ================================
   MOBILE / TABLET FIXES
================================ */
@media (max-width: 991.98px) {

    /* Start content from top */
    .hero-section {
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-row > [class*='col-'] {
        justify-content: flex-start;
    }

    .hero-left {
        text-align: center;
    }

    .hero-image {
        max-height: 400px; /* smaller screens */
    }
}

@media (max-width: 768px) {

    /* Hide floating card on small screens */
    .floating-card {
        display: none;
    }

    /* Scale heading */
    .display-4 {
        font-size: 2rem;
    }
}

/* Prevent excessive mobile 100vh jump */
@media (max-height: 600px) {
    .hero-section {
        min-height: unset;
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

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

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

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

.section-title .subtitle {
    color: var(--logo-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);

    padding: 8px 20px;
    border-radius: 4px;
    position: relative;
}

.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: 1.8rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(75, 49, 39, 0.582);
}
.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);
    transition: all 0.5s ease;
    background: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--light-color-rgb), 0.1);
}

.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);
}

.service-card p {
    color: rgba(var(--light-color-rgb), 0.8);
    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 */


/* 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;
    }
}

/* 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: 30px 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: #6c4137;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.5s 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(--brand-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;
    }
}

/* ----Story----*/

.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;
    animation: fadeInUp 2s 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);
    border-radius:5px;
}

.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;
}

 .scroll-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#6366f1,#9333ea);
    color:#fff;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .35s ease;
    z-index:999;
    }

    /* visible state */
    .scroll-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    }

    /* hover effect */
    .scroll-to-top:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
    }

    /* icon animation */
    .scroll-to-top i{
    transition:transform .3s ease;
    }

    .scroll-to-top:hover i{
    transform:translateY(-2px);
    }

/* Google reCAPTCHA badge */
.grecaptcha-badge {
    bottom: 20px !important;
    right: 20px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    z-index: 9999 !important;
}

