/* ========================================
   Super Auto Repairs - Professional Stylesheet
   Theme: Dark with Red Accents (#eb1928)
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #eb1928;
    --primary-dark: #c01520;
    --primary-light: #ff2a3a;
    --secondary-color: #C0C0C0;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-card: #151515;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #6c6c6c;
    --border-color: #2a2a2a;
    --glow-color: rgba(235, 25, 40, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Override Bootstrap default heading sizes */
h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.5rem;
}

h4, .h4 {
    font-size: 1.2rem;
}

h5, .h5 {
    font-size: 1rem;
}

h6, .h6 {
    font-size: 0.9rem;
}

/* Animated Background with Glass Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(235, 25, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 25, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(235, 25, 40, 0.08) 0%, transparent 40%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
        opacity: 0.9;
    }
}

/* All content above animated background */
body > * {
    position: relative;
    z-index: 1;
}

/* ========== Top Bar ========== */
.top-bar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(235, 25, 40, 0.3);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ========== Navigation ========== */
.navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(235, 25, 40, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(235, 25, 40, 0.3);
    border-bottom: 2px solid rgba(235, 25, 40, 0.4);
}

/* Animated navbar background */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(235, 25, 40, 0.05) 50%, 
        transparent 100%);
    animation: navShine 8s linear infinite;
    pointer-events: none;
}

@keyframes navShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Phone button in navbar */
.navbar-phone {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 10px 25px !important;
    border-radius: 50px;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4);
    animation: phonePulse 2s ease-in-out infinite;
}

.navbar-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(235, 25, 40, 0.6);
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(235, 25, 40, 0.7); }
}

/* ========== Loading Screen ========== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    border: 4px solid rgba(235, 25, 40, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== Navigation ========== */

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px var(--glow-color);
}

.navbar-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 10px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-nav .dropdown-menu {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(235, 25, 40, 0.3);
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    display: none;
}

.navbar-nav .dropdown-menu.show {
    display: block;
}

/* Desktop - Dropdown appears to the right side of Services menu */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 0;
        margin-top: 40px;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .navbar-nav .dropdown-toggle::after {
        border-top: 0;
        border-left: 0.3em solid;
        border-right: 0;
        border-bottom: 0.3em solid transparent;
        border-top: 0.3em solid transparent;
    }
    
    .navbar-nav .dropdown-toggle:hover::after,
    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

/* Mobile - Submenu style under Services - Always visible */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        margin-top: 10px;
        margin-left: 20px;
        border-left: 3px solid var(--primary-color);
        background: rgba(20, 20, 20, 0.95);
        display: block !important;
        touch-action: pan-y;
    }
    .glass-card{
        text-align: center;
    }
    
    .navbar-nav .dropdown-toggle::after {
        display: none;
    }
    
    .navbar-nav .dropdown-toggle {
        pointer-events: none;
    }
}

.navbar-nav .dropdown-item {
    color: var(--text-light);
    padding: 12px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(235, 25, 40, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

.navbar-nav .dropdown-item i {
    width: 20px;
    color: var(--primary-color);
}

.navbar-nav .dropdown-divider {
    border-color: rgba(235, 25, 40, 0.3);
    margin: 10px 20px;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(235, 25, 40, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Hero Slider */
.hero-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(235, 25, 40, 0.15) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

/* Hero BG and Content for Other Pages */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(235, 25, 40, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    gap: 15px;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(235, 25, 40, 0.7);
    color: var(--text-light);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-indicator.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* SEO Stripe Section */
.seo-stripe {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(235, 25, 40, 0.4);
}

.seo-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.seo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.4;
    white-space: nowrap;
    display: block;
}

.seo-title marquee {
    display: block;
}

.seo-text-item {
    display: inline-flex;
    align-items: center;
}

.seo-title i {
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0px;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(235, 25, 40, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    animation: fadeInUp 1.2s ease;
}

.hero-title .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--glow-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ========== Mobile Info Bar ========== */
.mobile-info-bar {
    display: none;
    background: linear-gradient(135deg, rgba(235, 25, 40, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid rgba(235, 25, 40, 0.3);
    padding: 10px 0;
}

.mobile-info-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.mobile-info-item:hover {
    color: var(--primary-color);
}

.mobile-info-item i {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* ========== Buttons ========== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 25, 40, 0.6);
    color: var(--text-light);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-light);
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: rergba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 25, 40, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover::after {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(235, 25, 40, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(235, 25, 40, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Override Bootstrap py-5 */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Glass Cards ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 25, 40, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.service-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-body {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 25, 40, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(235, 25, 40, 0.1) 50%, 
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(235, 25, 40, 0.4);
    box-shadow: 
        0 20px 60px rgba(235, 25, 40, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-card-image {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 20px 0 15px;
}

.service-card-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== Services Section ========== */
.service-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(235, 25, 40, 0.3);
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

/* ========== Service Detail Sections ========== */
.service-detail-section {
    scroll-margin-top: 100px;
}

.service-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--primary-color) 80%, 
        transparent 100%);
    margin: 0;
    opacity: 0.5;
}

.service-features-list {
    color: var(--text-light);
}

.service-features-list li {
    font-size: 1rem;
    line-height: 2;
}

/* ========== Counter Section ========== */
.counter-section {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.counter-box {
    text-align: center;
    padding: 30px;
}

.counter-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Gallery ========== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 25, 40, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

/* ========== Gallery Preview Section ========== */
.gallery-preview-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    position: relative;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 33.333%;
    cursor: pointer;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-slide-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-slide-img {
    transform: scale(1.05);
}

.gallery-slider-prev,
.gallery-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(235, 25, 40, 0.8);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-slider-prev {
    left: 20px;
}

.gallery-slider-next {
    right: 20px;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* ========== Gallery Lightbox ========== */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 10px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text-light);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
}

.gallery-lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(235, 25, 40, 0.8);
    color: var(--text-light);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
}

.gallery-lightbox-prev i,
.gallery-lightbox-next i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== Contact Form ========== */
.contact-form {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-control {
    background: var(--dark-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control:focus {
    background: var(--dark-secondary);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(235, 25, 40, 0.3);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========== Contact Info Cards ========== */
.contact-info-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(235, 25, 40, 0.3);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-info-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

/* ========== Map Section ========== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    border: 2px solid var(--border-color);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

/* ========== Footer ========== */
footer {
    background: var(--dark-secondary);
    padding: 60px 0 30px;
    border-top: 3px solid var(--primary-color);
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.footer-logo-img {
    height: 180px;
    width: auto;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-text i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-text a {
    color: #eb1928;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--primary-color);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.3rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px var(--glow-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ========== Scroll to Top Button ========== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(235, 25, 40, 0.4);
}

#scrollTopBtn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 12px 35px rgba(235, 25, 40, 0.6);
}

#scrollTopBtn.show {
    display: flex;
}

/* ========== Mobile Bottom Navbar ========== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    border-top: 2px solid rgba(235, 25, 40, 0.3);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 10px 0;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    gap: 5px;
    max-width: 100%;
    flex-wrap: nowrap;
}

.mobile-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 6px 4px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    min-width: 0;
    max-width: 33.333%;
}

.mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: var(--primary-color);
}

.mobile-nav-item:hover i,
.mobile-nav-item:active i {
    transform: scale(1.15);
}

.mobile-nav-item.book-now {
    color: var(--primary-color);
}

.mobile-nav-item.book-now i {
    color: var(--primary-color);
}

.mobile-nav-item.whatsapp {
    color: #25D366;
}

.mobile-nav-item.whatsapp i {
    color: #25D366;
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== Book Now Float Button ========== */
.book-now-float {
    position: fixed;
    bottom: 25px;
    left: 30px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    border-radius: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(235, 25, 40, 0.4);
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(235, 25, 40, 0.6);
    color: var(--text-light);
}

.book-now-float i {
    font-size: 1.2rem;
}

/* ========== Booking Modal ========== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.booking-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.booking-modal-content {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(235, 25, 40, 0.3);
    border: 1px solid rgba(235, 25, 40, 0.2);
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.booking-modal-close:hover {
    color: var(--primary-color);
    background: rgba(235, 25, 40, 0.1);
    transform: rotate(90deg);
}

.booking-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    text-align: center;
}

.booking-modal-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.booking-hours {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.booking-hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-hours-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.booking-day {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-day-name {
    font-weight: 500;
}

.booking-day-hours {
    color: var(--text-gray);
}

.booking-day.closed .booking-day-hours {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.booking-form-label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
    background: var(--dark-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Date and Time Picker Icons - White Color */
.booking-form-input[type="date"],
.booking-form-input[type="time"] {
    color-scheme: light;
}

.booking-form-input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form-input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--dark-bg);
    box-shadow: 0 0 20px rgba(235, 25, 40, 0.2);
}

.booking-form-input::placeholder,
.booking-form-textarea::placeholder {
    color: var(--text-muted);
}

.booking-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(235, 25, 40, 0.4);
    margin-top: 10px;
}

.booking-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 25, 40, 0.6);
}

.booking-form-submit i {
    margin-right: 10px;
}

.booking-success-message {
    display: none;
    text-align: center;
    padding: 30px;
}

.booking-success-message.show {
    display: block;
}

.booking-success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.booking-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.booking-success-text {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ========== About Section ========== */
.about-content {
    padding: 40px;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(235, 25, 40, 0.3);
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-features li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* ========== Why Choose Us ========== */
.why-choose-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

/* Glass Cut Shine Effect for Why Choose Section */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 25%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(235, 25, 40, 0.02) 20%,
        rgba(192, 192, 192, 0.05) 35%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(192, 192, 192, 0.05) 65%,
        rgba(235, 25, 40, 0.02) 80%,
        transparent 100%
    );
    transform: skewX(-30deg);
    animation: glassShine2 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(192, 192, 192, 0.03) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(192, 192, 192, 0.03) 75%,
        transparent 100%
    );
    transform: skewX(25deg);
    animation: glassShine3 12s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glassShine2 {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes glassShine3 {
    0% {
        right: -50%;
    }
    100% {
        right: 150%;
    }
}

.why-choose-section > .container {
    position: relative;
    z-index: 2;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 25, 40, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(235, 25, 40, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(235, 25, 40, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--dark-card);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px var(--glow-color);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== Media Queries ========== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    /* Mobile center alignment for Welcome section */
    .welcome-title-mobile-center {
        text-align: center !important;
    }
    
    .welcome-text-mobile-center {
        text-align: center !important;
    }
    
    /* Override Bootstrap headings for mobile */
    h1, .h1 {
        font-size: 1.5rem !important;
    }
    
    h2, .h2 {
        font-size: 1.3rem !important;
    }
    
    h3, .h3 {
        font-size: 1.1rem !important;
    }
    
    h4, .h4 {
        font-size: 1rem !important;
    }
    
    h5, .h5 {
        font-size: 0.9rem !important;
    }
    
    h6, .h6 {
        font-size: 0.85rem !important;
    }
    
    .top-bar {
        display: none;
    }
    
    .mobile-info-bar {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: auto;
        max-width: 300px;
        margin: 0 !important;
    }
    
    .hero-section {
        height: 50vh;
        padding: 0 !important;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-indicator {
        width: 8px;
        height: 8px;
    }
    
    .hero-indicator.active {
        width: 25px;
    }
    
    .seo-stripe {
        padding: 15px 0 !important;
    }
    
    .seo-title {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .seo-title i {
        font-size: 0.8rem;
    }
    
    .top-bar-left, .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .top-bar-right {
        align-items: flex-start;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
        backdrop-filter: blur(20px);
        padding: 15px 15px 90px 15px;
        border-radius: 10px;
        margin-top: 10px;
        border: 1px solid rgba(235, 25, 40, 0.3);
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 1000;
        touch-action: pan-y;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        margin: 6px 0;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .navbar-phone {
        margin-left: 0;
        margin-top: 8px;
        padding: 8px 20px !important;
        font-size: 0.85rem;
    }
    
    section {
        padding: 25px 0 !important;
    }
    
    .py-5 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
    
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    /* Override Bootstrap spacing utilities for mobile */
    .mb-1 {
        margin-bottom: 0.25rem !important;
    }
    
    .mb-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .mb-3 {
        margin-bottom: 0.75rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mt-1 {
        margin-top: 0.25rem !important;
    }
    
    .mt-2 {
        margin-top: 0.5rem !important;
    }
    
    .mt-3 {
        margin-top: 0.75rem !important;
    }
    
    .mt-4 {
        margin-top: 1rem !important;
    }
    
    .mt-5 {
        margin-top: 1.5rem !important;
    }
    
    /* Override Bootstrap gap utilities for mobile */
    .g-1,
    .gx-1 {
        --bs-gutter-x: 0.25rem;
    }
    
    .g-1,
    .gy-1 {
        --bs-gutter-y: 0.25rem;
    }
    
    .g-2,
    .gx-2 {
        --bs-gutter-x: 0.5rem;
    }
    
    .g-2,
    .gy-2 {
        --bs-gutter-y: 0.5rem;
    }
    
    .g-3,
    .gx-3 {
        --bs-gutter-x: 0.75rem;
    }
    
    .g-3,
    .gy-3 {
        --bs-gutter-y: 0.75rem;
    }
    
    .g-4,
    .gx-4 {
        --bs-gutter-x: 1rem;
    }
    
    .g-4,
    .gy-4 {
        --bs-gutter-y: 1rem;
    }
    
    .g-5,
    .gx-5 {
        --bs-gutter-x: 1.5rem;
    }
    
    .g-5,
    .gy-5 {
        --bs-gutter-y: 1.5rem;
    }
    
    /* Override Bootstrap padding utilities for mobile */
    .p-1 {
        padding: 0.25rem !important;
    }
    
    .p-2 {
        padding: 0.5rem !important;
    }
    
    .p-3 {
        padding: 0.75rem !important;
    }
    
    .p-4 {
        padding: 1rem !important;
    }
    
    .p-5 {
        padding: 1.5rem !important;
    }
    
    .px-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .px-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    .py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 24px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        margin-top: 0px;
    }
    
    .glass-card {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .service-card {
        padding: 6px;
        margin-bottom: 15px;
    }
    
    .service-card-body {
        padding: 15px;
    }
    
    .service-card-title {
        font-size: 1rem;
        margin: 10px 0 8px;
    }
    
    .service-card-text {
        font-size: 0.8rem;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .counter-box {
        padding: 15px 10px;
    }
    
    .counter-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .counter-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    .feature-box {
        padding: 20px 12px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-control {
        font-size: 0.85rem;
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .contact-info-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-info-icon {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .contact-info-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .contact-info-text {
        font-size: 0.8rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-slide {
        min-width: 100%;
        padding: 0;
    }
    
    .gallery-slide-img {
        border-radius: 0;
    }
    
    .gallery-slider-prev,
    .gallery-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-slider-prev {
        left: 10px;
    }
    
    .gallery-slider-next {
        right: 10px;
    }
    
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-lightbox-prev i,
    .gallery-lightbox-next i {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox-next {
        right: 10px;
    }
    
    .gallery-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .gallery-lightbox-caption {
        font-size: 0.85rem;
        padding: 10px 15px;
        bottom: 15px;
    }
    
    .about-features li {
        font-size: 0.9rem;
        padding: 12px 0;
    }
    
    .about-features li i {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 15px;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        height: 75px;
        margin-bottom: 12px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-text {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .cta-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .cta-section {
        padding: 40px 10px !important;
    }
    
    .cta-section::before {
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
        animation: rotate 12s linear infinite;
    }
    
    /* Hide floating buttons on mobile */
    .whatsapp-float,
    .book-now-float,
    #scrollTopBtn {
        display: none !important;
    }
    
    /* Show mobile bottom navbar */
    .mobile-bottom-nav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-bottom-nav-container {
        max-width: 100%;
    }
    
    .mobile-nav-item {
        flex-shrink: 1;
    }
    
    /* Add padding to body to prevent content hidden behind bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    .booking-modal {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .booking-modal-content {
        padding: 15px;
        margin: 10px;
        max-height: none;
        overflow-y: visible;
        border-radius: 15px;
    }
    
    .booking-modal.show {
        padding: 0;
        align-items: flex-start;
    }
    
    .booking-modal-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .booking-modal-subtitle {
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .booking-hours {
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .booking-hours-title {
        font-size: 1rem;
        margin-bottom: 10px;
        gap: 8px;
    }
    
    .booking-form {
        gap: 12px;
    }
    
    .booking-form-group {
        gap: 6px;
    }
    
    .booking-form-label {
        font-size: 0.9rem;
    }
    
    .booking-form-input,
    .booking-form-select,
    .booking-form-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .booking-form-textarea {
        min-height: 80px;
    }
    
    .booking-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .booking-hours-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .booking-day {
        padding: 6px 0;
    }
    
    .booking-form-submit {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .booking-form-submit i {
        margin-right: 8px;
        font-size: 0.85rem;
    }
    
    .booking-modal-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    #scrollTopBtn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .footer-map {
        height: 200px;
    }
}

/* ========== Process Step Styling ========== */
.process-step-badge {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(235, 25, 40, 0.4);
    transition: all 0.4s ease;
}

.process-step-badge:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(235, 25, 40, 0.6);
}

.process-step-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), transparent, var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-step-badge:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.process-icon-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.process-icon-number i {
    font-size: 2.5rem;
    color: var(--text-light);
    display: block;
}

.process-icon-number .process-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 20px 20px 90px 20px;
        border-radius: 10px;
        margin-top: 15px;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .btn-primary-custom {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
}

/* ========== Utility Classes ========== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

/* ========== Light/White Section ========== */
.bg-light-section {
    background: #ffffff !important;
    background-image: url(/assets/images/bg-3.jpg) !important;
    background-position: center !important;
    background-size:cover !important;
    position: relative;
    overflow: hidden;
}

.bg-light-section .section-title,
.bg-light-section h1,
.bg-light-section h2,
.bg-light-section h3,
.bg-light-section h4,
.bg-light-section h5,
.bg-light-section h6 {
    color: #000000 !important;
}

.bg-light-section .section-subtitle,
.bg-light-section p,
.bg-light-section li,
.bg-light-section .card-text,
.bg-light-section .service-card-text,
.bg-light-section .feature-text,
.bg-light-section .contact-info-text {
    color: #333333 !important;
}

.bg-light-section .text-light {
    color: #333333 !important;
}

.bg-light-section .about-features li,
.bg-light-section .card-text,
.bg-light-section .feature-text {
    color: #444444 !important;
    border-color: #e0e0e0 !important;
}

.bg-light-section .glass-card,
.bg-light-section .feature-box,
.bg-light-section .service-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.bg-light-section .glass-card:hover,
.bg-light-section .feature-box:hover,
.bg-light-section .service-card:hover {
    background: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 25px rgba(235, 25, 40, 0.2) !important;
}

.bg-light-section .feature-icon {
    background: #f5f5f5 !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.bg-light-section .card-icon {
    color: var(--primary-color) !important;
    font-size: 3rem;
}

.bg-light-section .contact-info-card {
    background: #f9f9f9 !important;
    border-color: #e0e0e0 !important;
}

.bg-light-section .contact-info-card:hover {
    background: #ffffff !important;
    border-color: var(--primary-color) !important;
}

.bg-light-section .about-img {
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.bg-dark-custom {
    background-color: var(--dark-secondary) !important;
    position: relative;
    overflow: hidden;
}

/* Simple Radial Gradient Background */
.bg-dark-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(235, 25, 40, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.bg-dark-custom > .container {
    position: relative;
    z-index: 2;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-glow {
    box-shadow: 0 0 30px var(--glow-color);
}

/* ========== Selection Style ========== */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ========== Mobile Overflow Prevention ========== */
@media (max-width: 992px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    .mobile-bottom-nav {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        transform: translate3d(0, 0, 0);
    }
    
    .mobile-bottom-nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .mobile-nav-item {
        max-width: calc(33.333% - 5px) !important;
        flex: 1 1 0 !important;
    }
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
.nav-link.navbar-phone:hover{
    color: white !important;
}
