/* ============================================================
   KAJAL BEAUTY PARLOUR - Main Stylesheet
   Colours: Pink #c94b8a | Dark #2d2d2d | Light #f9f9f9
   ============================================================ */

/* RESET & BASE */
*, *:before, *:after { box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; margin: 0; }
a { color: #c94b8a; }
a:hover { color: #a0366d; text-decoration: none; }

/* TOP BAR */
.top-bar {
    background: #2d2d2d;
    color: #ccc;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar a { color: #f0a0c8; }
.top-bar a:hover { color: #fff; }
.top-bar span { margin-right: 5px; }
.top-bar i { margin-right: 5px; color: #c94b8a; }

/* NAVBAR */
.navbar-default {
    background: #fff;
    border-bottom: 3px solid #c94b8a;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0;
}
.navbar-brand { padding: 12px 15px; font-size: 22px; font-weight: 700; }
.brand-kajal   { color: #c94b8a; }
.brand-beauty  { color: #2d2d2d; }
.navbar-default .navbar-nav > li > a {
    color: #444 !important;
    font-weight: 600;
    padding: 20px 14px;
    font-size: 14px;
}
.navbar-default .navbar-nav > li > a:hover { color: #c94b8a !important; }
.navbar-default .navbar-nav > .active > a { color: #c94b8a !important; border-bottom: 2px solid #c94b8a; }

/* HERO CAROUSEL */
.hero-carousel { margin-top: 0; }
.hero-slide {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-1 { background: linear-gradient(135deg, #f8e8f0 0%, #edd5e8 100%); }
.slide-2 { background: linear-gradient(135deg, #e8d5f0 0%, #d5e8f0 100%); }
.slide-3 { background: linear-gradient(135deg, #d5f0e8 0%, #f0f0d5 100%); }
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex; align-items: center;
}
.hero-text { color: #fff; max-width: 600px; }
.hero-text h1 { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 15px; }
.hero-text h1 span { color: #f0a0c8; }
.hero-text p  { font-size: 18px; margin-bottom: 25px; opacity: .9; }

/* BUTTONS */
.btn-pink { background: #c94b8a; color: #fff; border: none; border-radius: 5px; }
.btn-pink:hover, .btn-pink:focus { background: #a0366d; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; border-radius: 5px; }
.btn-outline-white:hover { background: #fff; color: #c94b8a; }
.btn-white { background: #fff; color: #c94b8a; border: none; border-radius: 5px; }
.btn-white:hover { background: #f0e0e8; color: #a0366d; }

/* STATS BAR */
.stats-bar { background: #c94b8a; padding: 30px 0; color: #fff; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 10px; }
.stat-item:last-child { border-right: none; }
.stat-item i   { font-size: 32px; opacity: .7; }
.stat-item h3  { font-size: 36px; font-weight: 700; margin: 8px 0 4px; }
.stat-item p   { margin: 0; font-size: 14px; opacity: .9; }

/* SECTION COMMON */
.section-heading { margin-bottom: 40px; }
.sub-heading { color: #c94b8a; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.section-heading h2 { font-size: 32px; font-weight: 700; margin: 8px 0 15px; }
.heading-line { width: 60px; height: 3px; background: #c94b8a; border-radius: 2px; }
.heading-line.center { margin: 0 auto; }

/* SECTIONS */
.section-about, .section-services, .section-testimonials { padding: 70px 0; }
.section-centres { padding: 70px 0; background: #f9f0f5; }
.section-padding { padding: 60px 0; }

/* ABOUT */
.about-image-placeholder {
    height: 380px;
    background: linear-gradient(135deg, #f8e8f0, #edd5e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c94b8a;
    text-align: center;
}
.placeholder-box { opacity: .5; }
.about-list { list-style: none; padding: 0; margin: 20px 0; }
.about-list li { padding: 6px 0; }
.about-list li i { color: #c94b8a; margin-right: 8px; }

/* SERVICE CARDS */
.service-card {
    background: #fff;
    border: 1px solid #f0e0e8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    transition: box-shadow .3s, transform .3s;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(201,75,138,0.15); transform: translateY(-4px); }
.service-icon {
    width: 65px; height: 65px;
    border-radius: 50%;
    background: #f8e8f0;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px; color: #c94b8a;
}
.service-card h4 { font-weight: 700; margin-bottom: 8px; }
.service-card p  { color: #666; font-size: 13px; }
.service-price { margin: 12px 0; }
.price    { font-size: 20px; font-weight: 700; color: #c94b8a; }
.duration { font-size: 12px; color: #888; margin-left: 10px; }
.service-cat-badge {
    display: inline-block;
    background: #f8e8f0;
    color: #c94b8a;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-meta { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; }
.service-price { color: #c94b8a; font-weight: 700; font-size: 18px; }
.service-duration { color: #888; font-size: 12px; }
.service-filter-tabs { margin-bottom: 30px; flex-wrap: wrap; }
.service-filter-tabs li.active > a { background: #c94b8a; }
.service-filter-tabs > li > a { color: #c94b8a; border: 1px solid #c94b8a; margin: 3px; }

/* CENTRE CARDS */
.centre-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #c94b8a;
    position: relative;
}
.centre-badge {
    position: absolute;
    top: -12px; right: 20px;
    background: #c94b8a;
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.centre-card h3 { color: #c94b8a; font-weight: 700; }
.centre-details { margin: 15px 0; }
.centre-details p { margin-bottom: 6px; }
.centre-details i { color: #c94b8a; margin-right: 6px; }

/* TESTIMONIALS */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.stars { color: #f0a000; margin-bottom: 12px; }
.testimonial-card p { color: #555; font-style: italic; line-height: 1.7; }
.client-name { color: #c94b8a; font-weight: 600; margin-top: 10px; font-size: 13px; }

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, #c94b8a, #7b1fa2);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.cta-banner p  { font-size: 16px; margin-bottom: 25px; opacity: .9; }

/* FOOTER */
.site-footer { background: #1a1a1a; color: #aaa; padding: 50px 0 0; }
.site-footer h4 { color: #fff; margin-bottom: 18px; font-size: 16px; }
.site-footer p  { font-size: 13px; line-height: 1.8; }
.site-footer a  { color: #f0a0c8; }
.site-footer a:hover { color: #fff; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hours-table td { padding: 4px 8px 4px 0; }
.social-btn {
    display: inline-block;
    width: 36px; height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    color: #fff !important;
    margin-right: 8px;
    font-size: 16px;
    transition: opacity .2s;
}
.social-btn:hover { opacity: .85; }
.social-btn.facebook  { background: #3b5998; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.whatsapp  { background: #25d366; }
.footer-bottom { background: #111; margin-top: 30px; padding: 15px 0; }
.footer-bottom p { color: #666; font-size: 12px; margin: 0; }

/* PAGE HEADER BANNER */
.page-header-banner {
    background: linear-gradient(135deg, #c94b8a, #7b1fa2);
    color: #fff;
    padding: 35px 0 25px;
}
.page-header-banner h1 { font-size: 30px; font-weight: 700; margin: 0 0 10px; }
.page-header-banner .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-header-banner .breadcrumb > li { color: rgba(255,255,255,0.7); }
.page-header-banner .breadcrumb > li a { color: #f0a0c8; }
.page-header-banner .breadcrumb > li + li::before { color: rgba(255,255,255,0.5); }

/* BOOKING FORM */
.booking-form-box, .contact-form-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.booking-form-box h3 { color: #c94b8a; font-weight: 700; }
.required { color: #e53935; }
.booking-info-box, .contact-info-box {
    background: #f9f0f5;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #f0e0e8;
}
.booking-info-box h4, .contact-info-box h3 { color: #c94b8a; }
.booking-tips { list-style: none; padding: 0; }
.booking-tips li { padding: 6px 0; }
.booking-tips li i { color: #c94b8a; margin-right: 8px; }
.centre-mini { font-size: 13px; color: #555; }
.booking-success { text-align: center; padding: 30px; }
.booking-success .success-icon { font-size: 64px; color: #4caf50; margin-bottom: 15px; }
.booking-success h3 { color: #388e3c; }

/* CONTACT */
.contact-centre h5 { color: #c94b8a; }
.text-pink { color: #c94b8a; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 28px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stats-bar { padding: 20px 0; }
}
