:root {
    --primary: #e70323;
    --primary-dark: #c9021e;
    --primary-light: #ff1a3a;
    --bs-primary: #e70323;
    --bs-primary-rgb: 231, 3, 35;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

::selection { background: var(--primary); color: var(--white); }

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container { max-width: 1200px; }

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,3,35,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark) !important;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 10px 26px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--gray-100);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 500;
    transition: var(--transition);
}
.btn-light:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

/* ========== SECTION STYLES ========== */
.section-padding { padding: 80px 0; }
.section-bg { background: var(--gray-50); }
.section-alt { background: var(--gray-100); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== NAVBAR ========== */
#mainNavbar {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}
#mainNavbar.navbar-scrolled {
    background: rgba(255,255,255,0.98);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px);
}
#mainNavbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}
#mainNavbar.navbar-scrolled .navbar-brand { color: var(--dark); }
#mainNavbar .navbar-brand i { color: var(--primary); margin-right: 6px; }

#mainNavbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    border-radius: 6px;
}
#mainNavbar.navbar-scrolled .nav-link { color: var(--text) !important; }
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--primary) !important;
    background: rgba(231,3,35,0.06);
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 6px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    margin-top: 10px;
}
.dropdown-item {
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

#mainNavbar .btn-book-nav {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 10px 24px !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
#mainNavbar .btn-book-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,3,35,0.3);
}

.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: none !important; width: 24px; height: 18px; position: relative; display: inline-block; }
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: ''; position: absolute; left: 0;
    width: 100%; height: 2px; background: var(--primary);
    border-radius: 2px; transition: 0.3s;
}
.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 8px; }
.navbar-toggler-icon::after { bottom: 0; }

/* ========== HERO ========== */
.hero-section {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}
.hero-section .carousel-item {
    height: 100vh;
    min-height: 650px;
    position: relative;
}
.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-slide {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Background images are set inline via database-driven sliders */

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding: 6px 20px;
    background: rgba(231,3,35,0.8);
    border-radius: 6px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-title span { color: var(--primary); }
.hero-description {
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231,3,35,0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-section .carousel-indicators {
    z-index: 3;
    bottom: 40px;
    gap: 6px;
}
.hero-section .carousel-indicators button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    opacity: 1;
    margin: 0;
    transition: var(--transition);
}
.hero-section .carousel-indicators button.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 32px;
    border-radius: 4px;
}

/* ========== SERVICES ========== */
.service-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15) !important;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(231,3,35,0.12);
    border-color: var(--primary) !important;
}
.service-card:hover::before {
    height: 6px;
}
.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
    opacity: 0;
    transition: 0.4s;
}
.service-card:hover .service-card-img::after { opacity: 1; }
.service-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: 0.4s;
}
.service-card:hover .service-overlay { transform: translate(-50%, -50%) scale(1); }
.btn-service-overlay {
    background: var(--white);
    color: var(--dark);
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-service-overlay:hover {
    background: var(--primary);
    color: var(--white);
}
.service-card .card-body { padding: 20px; text-align: center; }
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.service-card-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.service-card-price { margin-bottom: 6px; }
.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}
.service-card-duration {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 12px;
}
.service-card-duration i { margin-right: 4px; }
.btn-service-book {
    background: var(--gray-50);
    color: var(--dark);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    width: 100%;
}
.btn-service-book:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========== ABOUT ========== */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    border: 3px solid var(--primary);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(231,3,35,0.15);
}
.about-image-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(231,3,35,0.25);
    border-color: var(--primary-dark);
}
.about-image-wrapper img {
    border-radius: var(--radius);
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-image-wrapper:hover img {
    transform: scale(1.05);
}
.about-experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--primary);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(231,3,35,0.3);
}
.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.about-experience-badge .text {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    line-height: 1.3;
}
.about-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.about-feature-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}
.about-feature-item i {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.about-feature-item span {
    font-weight: 500;
    font-size: 0.88rem;
}
.btn-about {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-about:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========== OFFERS ========== */
.offer-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15) !important;
    position: relative;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition);
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(231,3,35,0.12);
    border-color: var(--primary) !important;
}
.offer-card:hover::before {
    height: 6px;
}
.offer-badge {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 16px;
    position: relative;
}
.offer-discount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}
.offer-card .card-body { padding: 20px; text-align: center; }
.offer-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}
.offer-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.offer-card-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.6;
}
.offer-validity {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.offer-validity i { margin-right: 4px; }
.btn-offer-book {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
}
.btn-offer-book:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== WHY CHOOSE ========== */
.why-choose-section {
    position: relative;
    background: var(--gray-50);
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.why-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-icon i { color: var(--white); font-size: 1.3rem; }
.why-card h5 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.why-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }

/* ========== STATS ========== */
.stats-section {
    background: var(--dark);
    padding: 60px 0;
}
.stats-item { text-align: center; }
.stats-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}
.stats-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 5px; }

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-200) !important;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.testimonial-avatar {
    width: 70px; height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    padding: 2px;
}
.testimonial-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-rating i { font-size: 0.85rem; margin: 0 1px; color: #f59e0b; }
.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.testimonial-designation {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== GALLERY ========== */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(231,3,35,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-link {
    width: 50px; height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: scale(0);
}
.gallery-item:hover .gallery-link { transform: scale(1); }
.gallery-link:hover { background: var(--dark); }
.gallery-link i { color: var(--dark); font-size: 1.1rem; transition: var(--transition); }
.gallery-link:hover i { color: var(--white); }

/* ========== BLOG ========== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15) !important;
    position: relative;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(231,3,35,0.12);
    border-color: var(--primary) !important;
}
.blog-card:hover::before {
    height: 6px;
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-category-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.blog-card .card-body { padding: 20px; }
.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.blog-meta i { margin-right: 4px; }
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-blog-read {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
}
.btn-blog-read:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-view-all {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ========== EMPLOYEES ========== */
.employee-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15) !important;
    position: relative;
}
.employee-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 2;
    transition: var(--transition);
}
.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(231,3,35,0.12);
    border-color: var(--primary) !important;
}
.employee-card:hover::before {
    height: 6px;
    box-shadow: 0 2px 12px rgba(231,3,35,0.4);
}
.employee-card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.employee-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.employee-card:hover .employee-card-img img { transform: scale(1.08); }
.employee-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: 0.4s;
}
.employee-card:hover .employee-overlay { transform: translate(-50%, -50%) scale(1); }
.btn-employee-overlay {
    background: var(--white);
    color: var(--dark);
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.85rem;
}
.btn-employee-overlay:hover { background: var(--primary); color: var(--white); }
.employee-card .card-body { padding: 20px; }
.employee-name { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 2px; }
.employee-designation { color: var(--primary); font-weight: 600; font-size: 0.85rem; }
.employee-rating i { color: #f59e0b; font-size: 0.8rem; }
.employee-experience { color: var(--text-light); font-size: 0.82rem; }
.employee-experience i { margin-right: 4px; }
.skill-badge {
    background: var(--gray-100);
    color: var(--text);
    border-radius: 4px;
    padding: 3px 10px;
    font-weight: 500;
    font-size: 0.75rem;
}
.btn-employee-book {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
}
.btn-employee-book:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== BRANCH ========== */
.branch-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15);
    position: relative;
}
.branch-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition);
}
.branch-card:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(231,3,35,0.12); border-color: var(--primary); }
.branch-card:hover::before { height: 6px; }
.branch-card .card-img { height: 180px; overflow: hidden; }
.branch-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.branch-card:hover .card-img img { transform: scale(1.08); }
.branch-card .card-body { padding: 20px; }
.branch-card .card-body h5 { font-size: 1.1rem; margin-bottom: 12px; }
.branch-card .card-body .info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}
.branch-card .card-body .info-item i { color: var(--primary); margin-top: 4px; min-width: 14px; }

.branch-detail-card {
    background: var(--white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--gray-200);
    position: relative;
}
.branch-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
}
.branch-detail-card:nth-child(even)::before {
    background: var(--dark);
}
.branch-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.branch-detail-card:nth-child(even):hover {
    border-color: var(--gray-600);
}
.branch-detail-card .branch-hero-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.branch-detail-card .branch-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.branch-detail-card:hover .branch-hero-img img {
    transform: scale(1.08);
}
.branch-detail-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}
.branch-detail-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 6px;
}
.branch-detail-card:nth-child(even) h3::after {
    background: var(--dark);
}
.branch-info-list {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.branch-info-list i {
    font-size: 1rem;
    min-width: 20px;
}
.btn-branch-book {
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    width: 100%;
}
.btn-branch-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,3,35,0.25);
}
.branch-detail-card:nth-child(even) .btn-branch-book {
    background: var(--dark);
}
.branch-detail-card:nth-child(even) .btn-branch-book:hover {
    background: #333;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ========== CTA ========== */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}
.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}
.cta-phone {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}
.cta-phone i { margin-right: 8px; }
.cta-phone a { color: var(--white); }
.cta-phone a:hover { color: rgba(255,255,255,0.8); }

.btn-cta-primary {
    background: var(--white);
    color: var(--primary) !important;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-cta-secondary {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-cta-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ========== FAQ ========== */
.faq-section .accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid var(--gray-200) !important;
    box-shadow: var(--shadow-sm);
}
.faq-section .accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 16px 20px;
    box-shadow: none !important;
    font-size: 0.9rem;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary);
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transform: none;
    width: auto;
    height: auto;
    transition: 0.3s;
}
.faq-section .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}
.faq-section .accordion-body {
    padding: 0 20px 16px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    position: relative;
}
.footer-top { padding: 60px 0 30px; }
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo i { color: var(--primary); margin-right: 6px; }
.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-widget h5 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a i { font-size: 0.5rem; color: var(--primary); }
.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact li i { color: var(--primary); margin-top: 4px; min-width: 14px; font-size: 0.9rem; }
.footer-contact li a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact li a:hover { color: var(--primary); }
.footer-contact li strong { color: rgba(255,255,255,0.7); font-weight: 600; }

.social-links { display: flex; gap: 8px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5) !important;
    transition: var(--transition);
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-newsletter {
    background: rgba(255,255,255,0.02);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 6px 0 0 6px;
    height: auto;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    box-shadow: none;
}
.btn-newsletter {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    transition: var(--transition);
}
.btn-newsletter:hover { color: var(--white); background: var(--primary-dark); }

.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); margin: 0; font-size: 0.82rem; }
.footer-bottom-link {
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
    margin-left: 16px;
    font-size: 0.82rem;
}
.footer-bottom-link:first-child { margin-left: 0; }
.footer-bottom-link:hover { color: var(--primary); }

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 25px rgba(231,3,35,0.3);
}
.btn-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--dark), #333);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}
.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}
.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb-item.active { color: var(--white); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ========== BOOKING FORM ========== */
.booking-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.booking-form .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    gap: 8px;
}
.booking-form .step {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}
.booking-form .step.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.booking-form .step.completed { background: #22c55e; color: var(--white); border-color: #22c55e; }
.booking-form .step + .step::before {
    content: '';
    position: absolute;
    top: 50%; transform: translateY(-50%);
    left: -18px;
    width: 28px;
    height: 2px;
    background: var(--gray-200);
}
.booking-form .time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
}
.booking-form .time-slot {
    padding: 10px;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}
.booking-form .time-slot:hover,
.booking-form .time-slot.selected { border-color: var(--primary); background: rgba(231,3,35,0.04); }
.booking-form .time-slot.booked { border-color: var(--gray-200); background: var(--gray-100); cursor: not-allowed; opacity: 0.5; }

/* ========== AUTH ========== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    padding: 80px 0;
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}
.auth-card .auth-logo { text-align: center; margin-bottom: 24px; }
.auth-card .auth-logo h2 { font-size: 1.6rem; }
.auth-card .auth-logo h2 span { color: var(--primary); }
.auth-card .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.auth-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231,3,35,0.08);
}

/* ========== CUSTOMER DASHBOARD ========== */
.customer-dashboard .sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    border: 1px solid var(--gray-200);
}
.customer-dashboard .sidebar .nav-link {
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}
.customer-dashboard .sidebar .nav-link:hover,
.customer-dashboard .sidebar .nav-link.active {
    background: rgba(231,3,35,0.06);
    color: var(--primary);
}
.customer-dashboard .sidebar .nav-link i { width: 18px; }

.stats-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.stats-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stats-card .stats-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.stats-card .stats-number {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.stats-card .stats-label { color: var(--text-light); font-size: 0.85rem; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 1.8rem; }
    .about-title { font-size: 1.8rem; }
    .about-experience-badge { width: 90px; height: 90px; }
    .about-experience-badge .years { font-size: 1.4rem; }
    .cta-title { font-size: 1.6rem; }
    #mainNavbar .navbar-collapse {
        background: rgba(255,255,255,0.98);
        padding: 16px;
        border-radius: var(--radius);
        margin-top: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    #mainNavbar .navbar-collapse .nav-link { color: var(--text) !important; }
    .section-padding { padding: 50px 0; }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 0.95rem; }
    .section-title { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero { padding: 110px 0 40px; }
    .booking-form { padding: 20px; }
    .btn-hero-primary,
    .btn-hero-secondary { padding: 10px 20px; font-size: 0.85rem; }
    .hero-subtitle { font-size: 0.8rem; padding: 4px 14px; }
    .footer-top { padding: 40px 0 20px; }
    .footer-bottom-link { display: inline-block; margin: 4px 8px 4px 0; }
    .btn-back-to-top { width: 38px; height: 38px; font-size: 0.9rem; bottom: 20px; right: 20px; }
    .stats-item .number { font-size: 1.8rem; }
    .about-experience-badge { width: 80px; height: 80px; bottom: -10px; right: -10px; }
    .about-experience-badge .years { font-size: 1.2rem; }
}

/* ========== STATUS BADGES ========== */
.badge-pending { background: #f59e0b; color: var(--white); }
.badge-confirmed { background: var(--primary); color: var(--white); }
.badge-completed { background: #22c55e; color: var(--white); }
.badge-cancelled { background: #ef4444; color: var(--white); }
.badge-rejected { background: var(--gray-500); color: var(--white); }
.badge-paid { background: #22c55e; color: var(--white); }
.badge-partial { background: #f59e0b; color: var(--white); }
.badge-failed { background: #ef4444; color: var(--white); }
.badge-refunded { background: var(--gray-500); color: var(--white); }

/* ========== PAGINATION ========== */
.pagination-wrapper {
    margin-top: 1rem;
    text-align: center;
}
.pagination {
    gap: 4px;
    justify-content: center;
    margin-bottom: 0;
}
.page-item { margin: 0; }
.page-link {
    border: 1px solid var(--gray-200);
    color: var(--text);
    background: var(--white);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 6px !important;
    transition: var(--transition);
    margin: 0;
}
.page-link:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-color: var(--gray-300);
}
.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(231,3,35,0.2);
}
.page-item.disabled .page-link {
    background: var(--gray-50);
    color: var(--text-muted);
    border-color: var(--gray-200);
    opacity: 0.6;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-weight: 600;
}

/* ========== SERVICES PAGE SPECIFIC ========== */
.services-section.section-padding {
    padding: 60px 0 50px;
}

/* ========== PRODUCTS ========== */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 2px solid rgba(231,3,35,0.15);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(231,3,35,0.12); border-color: var(--primary); }
.product-card:hover::before { height: 6px; }
.product-card .card-img { height: 200px; overflow: hidden; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .card-img img { transform: scale(1.08); }
.product-card .card-body { padding: 16px; }
.product-card .card-body h5 { font-size: 1.05rem; margin-bottom: 6px; }
.product-card .card-body .product-price { color: var(--primary); font-weight: 600; font-size: 1rem; }

/* ========== BRANCH FILTER ========== */
.nav-pills.branch-filter .nav-link {
    border-radius: 6px;
    background: var(--gray-100);
    color: var(--text);
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 6px;
    transition: var(--transition);
}
.nav-pills.branch-filter .nav-link:hover {
    background: var(--gray-200);
}
.nav-pills.branch-filter .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

/* ========== FORM CONTROLS ========== */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231,3,35,0.08);
}
.form-label { font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; }