/* ============================================
   EASY CAR DETAIL - Premium CSS
   Color Scheme: Deep Space + Electric Crimson + Neon Gold
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary:      #0A0E1A;    /* Deep Space Blue */
    --primary-light: #131929;   /* Slightly lighter navy */
    --primary-mid:  #1C2440;    /* Mid navy */
    --secondary:    #F5A800;    /* Theme Yellow */
    --secondary-dark: #d69300;  /* Darker Yellow */
    --accent:       #FFD700;    /* Neon Gold */
    --accent-light: #FFE44D;    /* Lighter gold */
    --text-dark:    #1A1A2E;    /* Text dark */
    --text-gray:    #6C7A8D;    /* Text gray */
    --text-light:   #EAEEF5;    /* Light text */
    --white:        #FFFFFF;
    --bg-light:     #F4F6FB;    /* Light background */
    --border:       rgba(245, 168, 0, 0.15);
    --shadow:       0 8px 32px rgba(10, 14, 26, 0.12);
    --shadow-hover: 0 20px 60px rgba(245, 168, 0, 0.2);
    --gradient-hero: linear-gradient(135deg, #0A0E1A 0%, #1C2440 50%, #0A0E1A 100%);
    --gradient-accent: linear-gradient(135deg, #F5A800, #FFD700);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FF9500);
    --font-main:    'Outfit', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:       12px;
    --radius-lg:    24px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--primary); width: 100%; }
html, body { min-height: 100%; min-height: 100dvh; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    margin: 0;
    padding: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* Selection */
::selection { background: var(--secondary); color: var(--white); }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.preloader-logo .logo-icon {
    width: 60px; height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--white);
    animation: pulse 1.5s infinite;
}

.preloader-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.preloader-bar {
    width: 220px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading { from { width: 0%; } to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(232,0,45,0.3);
}

.top-bar-left a, .top-bar-right a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-right: 20px;
    transition: var(--transition);
}
.top-bar-left a i, .top-bar-right a i { margin-right: 5px; color: var(--accent); }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--accent); }
.top-bar-right { display: flex; gap: 10px; }
.top-bar-right a { margin-right: 0; font-size: 14px; }

/* ============================================
   HEADER & NAVBAR
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,0,45,0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.site-header.scrolled { padding: 0; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

.navbar { padding: 14px 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-car-icon {
    width: 48px; height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 15px rgba(232,0,45,0.4);
}

.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: 1px; }
.logo-sub { font-size: 10px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }
.logo-main .accent, .logo-text .accent { color: var(--secondary); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--secondary);
    border-radius: 1px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 14%; right: 14%; }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }

/* Dropdown */
.dropdown-menu {
    background: var(--primary-light);
    border: 1px solid rgba(232,0,45,0.2);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    min-width: 220px;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

.dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}
.dropdown-item i { color: var(--secondary); margin-right: 8px; font-size: 10px; }
.dropdown-item:hover { background: rgba(232,0,45,0.15); color: var(--white); }
.dropdown-divider { border-color: rgba(255,255,255,0.1); }
.dropdown-item strong { color: var(--accent); }

/* Book Now Button */
.btn-book-now {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-accent);
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,0,45,0.4);
    text-decoration: none;
}
.btn-book-now:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,0,45,0.5); color: white; }

/* Mobile Toggler */
.navbar-toggler {
    background: transparent;
    border: 2px solid rgba(232,0,45,0.4);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex; flex-direction: column; gap: 5px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { width: 22px; height: 2px; background: var(--white); border-radius: 1px; transition: var(--transition); display: block; }

/* ============================================
   FLASH MESSAGE
   ============================================ */
.flash-message {
    position: fixed;
    top: 90px; right: 20px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    z-index: 9999;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
    max-width: 380px;
}
.flash-success { background: #0f5132; color: #d1e7dd; border: 1px solid #0a3622; }
.flash-error { background: #58151c; color: #f8d7da; border: 1px solid #842029; }
.flash-message button { background: none; border: none; color: inherit; cursor: pointer; margin-left: auto; }
@keyframes slideIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { position: relative; height: 100vh; min-height: 600px; max-height: 900px; overflow: hidden; }

.hero-slide {
    position: relative;
    height: 100vh; min-height: 600px; max-height: 900px;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,14,26,0.9) 0%,
        rgba(10,14,26,0.6) 50%,
        rgba(232,0,45,0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,0,45,0.15);
    border: 1px solid rgba(232,0,45,0.4);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.2s both;
}
.hero-badge i { color: var(--secondary); }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 35px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex; flex-wrap: wrap; gap: 15px;
    animation: fadeUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(232,0,45,0.4);
    text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(232,0,45,0.5); color: white; }

.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-hero-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
    display: flex; gap: 30px; flex-wrap: wrap;
    margin-top: 50px;
    animation: fadeUp 0.8s ease 1s both;
}

.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Slider Navigation */
.hero-slider .swiper-pagination-bullet { background: rgba(255,255,255,0.5); width: 8px; height: 8px; }
.hero-slider .swiper-pagination-bullet-active { background: var(--secondary); width: 24px; border-radius: 4px; }

.swiper-button-prev, .swiper-button-next {
    width: 48px; height: 48px;
    background: rgba(232,0,45,0.2);
    border: 1px solid rgba(232,0,45,0.4);
    border-radius: 50%;
    color: white !important;
    transition: var(--transition);
}
.swiper-button-prev:after, .swiper-button-next:after { font-size: 14px !important; }
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--secondary); border-color: var(--secondary); }

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--primary); }
.section-light { background: var(--bg-light); }

.section-header { margin-bottom: 50px; text-align: center; }

.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
    content: '';
    width: 30px; height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}
.section-dark .section-title { color: var(--white); }
.section-title span { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-desc { font-size: 16px; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* ============================================
   SERVICES / CATEGORIES SECTION
   ============================================ */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.category-card:hover::before { opacity: 0.06; }

.category-img-wrap {
    position: relative;
    overflow: hidden;
    height: 180px;
}
.category-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-img-wrap img { transform: scale(1.08); }

.category-icon-overlay {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 16px;
}

.category-body {
    padding: 16px;
    position: relative; z-index: 1;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.category-price {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
}

.category-arrow {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 10px;
}

.arrow-btn {
    width: 32px; height: 32px;
    background: rgba(232,0,45,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    font-size: 12px;
    transition: var(--transition);
}
.category-card:hover .arrow-btn { background: var(--secondary); color: white; }

/* ============================================
   POPULAR SERVICES
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }

.service-popular-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gradient-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-body { padding: 20px; }

.service-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.service-name a { color: inherit; }
.service-name a:hover { color: var(--secondary); }

.service-desc { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.6; }

.service-meta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
}

.service-duration {
    font-size: 12px;
    color: var(--text-gray);
    display: flex; align-items: center; gap: 4px;
}
.service-duration i { color: var(--accent); }

.btn-service {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gradient-accent);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 14px;
    text-decoration: none;
}
.btn-service:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,0,45,0.35); color: white; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section { background: var(--primary); position: relative; overflow: hidden; }

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,0,45,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-6px); border-color: rgba(232,0,45,0.3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
    width: 72px; height: 72px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(232,0,45,0.3);
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotate(10deg) scale(1.1); }

.why-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats-section { background: var(--primary-light); padding: 60px 0; }

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-card:last-child::after { display: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.review-card:hover::before { transform: scaleX(1); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.review-quote { font-size: 36px; color: rgba(232,0,45,0.15); line-height: 1; margin-bottom: 12px; }

.review-text { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.review-stars { color: var(--accent); font-size: 13px; margin-bottom: 16px; }
.review-stars .far { color: rgba(255,215,0,0.3); }

.reviewer-info { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
    width: 44px; height: 44px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.reviewer-location { font-size: 12px; color: var(--text-gray); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 22px; }

.blog-date {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.blog-date i { color: var(--secondary); }

.blog-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--secondary); }

.blog-excerpt { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin-bottom: 16px; }

.btn-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.btn-read-more:hover { gap: 10px; color: var(--secondary); border-bottom-color: var(--secondary); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-accent);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-title { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 0; }

.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: white;
    color: var(--secondary) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.booking-header {
    background: var(--gradient-accent);
    padding: 30px 40px;
    text-align: center;
}
.booking-header h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: white; margin-bottom: 5px; }
.booking-header p { color: rgba(255,255,255,0.8); font-size: 14px; }

.booking-body { padding: 40px; }

.form-label { font-weight: 600; font-size: 13px; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
    border: 2px solid #E9ECF0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    background: #FAFBFC;
}
.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(232,0,45,0.08);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,0,45,0.4); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    height: 100%;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(232,0,45,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; flex-shrink: 0; }
.contact-info-title { font-weight: 700; color: white; margin-bottom: 4px; }
.contact-info-text { font-size: 14px; color: rgba(255,255,255,0.6); }
.contact-info-text a { color: rgba(255,255,255,0.6); }
.contact-info-text a:hover { color: var(--accent); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
}
.page-hero-title { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 54px); font-weight: 800; color: white; margin-bottom: 12px; }
.breadcrumb-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-item { font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); }
.about-badge-float {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--gradient-accent);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,0,45,0.4);
}
.about-badge-num { font-family: var(--font-heading); font-size: 32px; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-feature-list { list-style: none; }
.about-feature-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 15px; color: var(--text-dark); }
.about-feature-list li i { color: var(--secondary); font-size: 16px; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer-wave { overflow: hidden; line-height: 0; background: var(--bg-light); }
.footer-wave svg { display: block; }

.site-footer { background: var(--primary); }

.footer-main { padding: 60px 0 30px; }

.footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo i { font-size: 28px; color: var(--secondary); }
.footer-logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: white; display: block; line-height: 1; }
.footer-logo-sub { font-size: 10px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; }

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; transition: var(--transition); }
.social-btn.fb { background: rgba(24,119,242,0.2); }
.social-btn.ig { background: rgba(225,48,108,0.2); }
.social-btn.wa { background: rgba(37,211,102,0.2); }
.social-btn.yt { background: rgba(255,0,0,0.2); }
.social-btn:hover { transform: translateY(-3px); }
.social-btn.fb:hover { background: #1877f2; }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.wa:hover { background: #25d366; }
.social-btn.yt:hover { background: #ff0000; }

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 10px; color: var(--secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-links a:hover i { color: var(--accent); }

.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
.fc-icon { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list span { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 9000;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: wobble 3s infinite 2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 12px 35px rgba(37,211,102,0.6); }
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes wobble { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-8deg)} 40%{transform:rotate(8deg)} 60%{transform:rotate(-4deg)} 80%{transform:rotate(4deg)} }

/* ============================================
   BACK TO TOP
   ============================================ */
#backToTop {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 44px; height: 44px;
    background: var(--gradient-accent);
    color: white;
    border: none; border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    z-index: 8000;
    box-shadow: 0 6px 20px rgba(232,0,45,0.35);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-3px); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-main { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.service-detail-img { width: 100%; height: 380px; object-fit: cover; }

.service-detail-body { padding: 35px; }
.service-detail-title { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
.service-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; }
.svc-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.svc-meta-item i { color: var(--secondary); }
.svc-meta-item.price-item { font-size: 22px; color: var(--secondary); font-family: var(--font-heading); }

.service-detail-desc { font-size: 15px; color: var(--text-gray); line-height: 1.8; }
.service-detail-desc ul { list-style: none; }
.service-detail-desc ul li::before { content: '✅ '; }

/* Sidebar booking */
.sidebar-booking { background: var(--primary); border-radius: var(--radius-lg); padding: 30px; color: white; position: sticky; top: 100px; }
.sidebar-booking h4 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: white; margin-bottom: 20px; }
.sidebar-booking .form-control, .sidebar-booking .form-select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: white; }
.sidebar-booking .form-control::placeholder { color: rgba(255,255,255,0.4); }
.sidebar-booking .form-label { color: rgba(255,255,255,0.7); }
.sidebar-booking .form-control:focus, .sidebar-booking .form-select:focus { background: rgba(255,255,255,0.12); border-color: var(--secondary); color: white; }
.sidebar-booking .form-select option { background: var(--primary); }

/* ============================================
   ADMIN PANEL BASIC
   ============================================ */
.admin-body { background: #F0F2F5; font-family: var(--font-main); }
.admin-sidebar { background: var(--primary); height: 100vh; width: 260px; position: fixed; left: 0; top: 0; z-index: 100; transition: var(--transition); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.admin-content { margin-left: 260px; min-height: 100vh; padding: 20px; }
.admin-topbar { background: white; padding: 12px 24px; border-radius: var(--radius); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow); }
.admin-brand { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-brand h4 { font-family: var(--font-heading); color: white; font-size: 20px; margin: 0; font-weight: 700; }
.admin-brand p { color: rgba(255,255,255,0.5); font-size: 12px; margin: 0; }

.admin-nav-item { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(232,0,45,0.1); color: white; border-left-color: var(--secondary); }
.admin-nav-item i { width: 20px; text-align: center; color: var(--secondary); font-size: 16px; }
.admin-nav-section { padding: 12px 24px 4px; font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2px; margin-top: 10px; }

.admin-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 20px; }
.admin-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; border-bottom: 2px solid var(--bg-light); padding-bottom: 12px; }

.stat-widget { background: white; border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; border-left: 4px solid; }
.stat-widget.red { border-color: var(--secondary); }
.stat-widget.gold { border-color: var(--accent); }
.stat-widget.blue { border-color: #4361ee; }
.stat-widget.green { border-color: #2ecc71; }
.stat-widget-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-widget.red .stat-widget-icon { background: rgba(232,0,45,0.1); color: var(--secondary); }
.stat-widget.gold .stat-widget-icon { background: rgba(255,215,0,0.15); color: #B8860B; }
.stat-widget.blue .stat-widget-icon { background: rgba(67,97,238,0.1); color: #4361ee; }
.stat-widget.green .stat-widget-icon { background: rgba(46,204,113,0.1); color: #2ecc71; }
.stat-widget-num { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.stat-widget-label { font-size: 13px; color: var(--text-gray); }

.badge-status { padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; text-transform: capitalize; }
.badge-pending { background: rgba(255,193,7,0.15); color: #856404; }
.badge-confirmed { background: rgba(67,97,238,0.12); color: #4361ee; }
.badge-completed { background: rgba(46,204,113,0.12); color: #1a7a49; }
.badge-cancelled { background: rgba(232,0,45,0.12); color: var(--secondary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-slider, .hero-slide { min-height: 500px; max-height: 600px; }
    .hero-stats { gap: 20px; }
    .stat-card::after { display: none; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-content { margin-left: 0; }
    .about-badge-float { right: 10px; bottom: 10px; }
}

@media (max-width: 767px) {
    .hero-slider, .hero-slide { min-height: 450px; max-height: 550px; }
    .hero-stats { gap: 15px; }
    .section { padding: 55px 0; }
    .booking-body { padding: 24px; }
    .top-bar { display: none !important; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 90px; right: 20px; }
    #backToTop { bottom: 160px; right: 20px; }
}

@media (max-width: 991px) {
    html, body {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding-top: env(safe-area-inset-top, 0px);
    }
    .navbar { padding: 6px 0; }
    .navbar-brand img { height: 40px !important; }
    .page-hero {
        padding: 12px 0 16px !important;
        width: 100%;
    }
    .page-hero::before { height: 20px; }
    .page-hero > .container > div { padding-top: 0 !important; }
    .page-hero-title { margin-bottom: 6px; }
    .container, .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }
    .hero-slider, .hero-slide {
        width: 100%;
        height: var(--app-height, 100svh);
        min-height: var(--app-height, 100svh);
        max-height: none;
    }
    .section.sd-layout { padding: 16px 0 24px !important; }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-stats { display: none; }
}



/* Mobile Filter Chips */
.mobile-filter-bar { display: none; }
@media (max-width: 768px) { .mobile-filter-bar { display: block; margin-bottom: 20px; } }
.mobile-cat-chips { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
.mobile-cat-chips::-webkit-scrollbar { height: 4px; }
.mobile-cat-chips::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.cat-chip { padding: 8px 16px; background: #f1f5f9; color: #334155; border-radius: 20px; font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; transition: all 0.3s; border: 1px solid #e2e8f0; }
.cat-chip:hover, .cat-chip.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }
/* Sidebar Categories */
.filter-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.filter-card h3 { font-size: 18px; margin-bottom: 15px; font-weight: 700; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 10px; }
.category-list li a { display: flex; align-items: center; color: #475569; text-decoration: none; font-weight: 500; transition: all 0.2s; padding: 8px 12px; border-radius: 8px; }
.category-list li a:hover, .category-list li a.active { background: #f8fafc; color: var(--secondary); }

/* Services Layout */
.services-page-wrap { display: flex; gap: 30px; align-items: flex-start; }
.filters-sidebar { width: 280px; flex-shrink: 0; }
.services-main { flex-grow: 1; min-width: 0; }
@media (max-width: 991px) { .services-page-wrap { flex-direction: column; } .filters-sidebar { width: 100%; margin-bottom: 30px; } }
@media (max-width: 768px) { .filters-sidebar .filter-card:first-child { display: none; } }


/* Mobile Offcanvas Sidebar Menu */
@media (max-width: 991px) { 
    .navbar-collapse { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: var(--primary); z-index: 1050; transition: left 0.3s ease; padding: 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.5); display: block !important; } 
    .navbar-collapse.show { left: 0; } 
    .navbar-toggler { z-index: 1060; } 
    .navbar-collapse .navbar-nav { align-items: flex-start !important; width: 100%; padding-top: 30px; }
    .navbar-collapse .nav-item { width: 100%; text-align: left; margin-bottom: 5px; }
    .navbar-collapse .nav-link { width: 100%; padding: 12px 15px; border-radius: 8px; display: block; }
    .navbar-collapse .nav-link::after { display: none; }
    .navbar-collapse .nav-link:hover, .navbar-collapse .nav-link.active { background: rgba(255,255,255,0.1); }
}

/* Category Icon Animation */
@keyframes iconFloat { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-4px); } 
}
.cat-icon-animate { animation: iconFloat 2.5s infinite ease-in-out; display: inline-flex !important; }
