/* ============================================
   JK ENTERPRISES - Main Stylesheet
   RO Water Purifier Service & Repair
   ============================================ */

/* ==================== VARIABLES ==================== */
:root {
    --primary: #0062cc;
    --primary-dark: #004999;
    --primary-light: #3d8bfd;
    --secondary: #00b4d8;
    --accent: #0096c7;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --white: #ffffff;
    --light: #f0f7ff;
    --light-blue: #e8f4fd;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --success: #28a745;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    --shadow: 0 5px 30px rgba(0, 98, 204, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 98, 204, 0.2);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Poppins', sans-serif;
}

/* ==================== GLOBAL ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: #333;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--white);
}

::selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-blue {
    background: var(--light-blue);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    text-align: center;
}

.water-drop {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 20px;
    animation: dropPulse 1.2s ease-in-out infinite;
}

@keyframes dropPulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.2); }
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left span {
    margin-right: 20px;
    opacity: 0.9;
}

.top-bar-left span i {
    margin-right: 5px;
    color: var(--secondary);
}

.top-bar-right a {
    color: var(--white);
    margin-left: 12px;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 14px;
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--secondary);
}

.top-phone {
    background: rgba(255,255,255,0.1);
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.top-phone:hover {
    background: var(--primary);
}

/* ==================== NAVBAR ==================== */
#mainNavbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNavbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

#mainNavbar.scrolled .nav-logo {
    height: 42px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-tagline {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 15px;
    position: relative;
}

.navbar-nav .nav-link i {
    margin-right: 4px;
    font-size: 13px;
    color: var(--primary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--light-blue);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient);
    border-radius: 10px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 10px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--light-blue);
    color: var(--primary);
    transform: translateX(5px);
}

.btn-cta {
    background: var(--gradient);
    color: var(--white) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 98, 204, 0.4);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 98, 204, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 98, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 98, 204, 0); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-slide-1 {
    background: linear-gradient(135deg, #0a1628 0%, #0d2247 50%, #0b3d91 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #0062cc 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #00b4d8, #48cae4, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(0, 98, 204, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 98, 204, 0.5);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    color: var(--white);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(to right, #48cae4, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: middle;
}

.stat-plus {
    font-size: 36px;
    font-weight: 700;
    color: #48cae4;
    margin-left: 2px;
    vertical-align: middle;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    display: block;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.hero-circle-bg {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.hero-water-icon {
    font-size: 150px;
    color: rgba(0, 180, 216, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.carousel-control-prev-icon,
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: none !important;
    border-radius: 50%;
    padding: 0;
    width: auto;
    height: auto;
    box-shadow: none;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--secondary);
    width: 30px;
    border-radius: 10px;
}

/* ==================== MARQUEE ==================== */
.marquee-strip {
    background: var(--gradient);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    margin-right: 40px;
}

.marquee-content span i {
    margin-right: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== SECTION HEADER ==================== */
.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-badge i {
    margin-right: 6px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.title-divider {
    text-align: center;
    margin-top: 20px;
}

.title-divider span {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 10px;
    position: relative;
}

.title-divider span::before,
.title-divider span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: -2px;
}

.title-divider span::before {
    left: -15px;
}

.title-divider span::after {
    right: -15px;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 98, 204, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -25px;
    background: var(--gradient);
    color: var(--white);
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 98, 204, 0.06);
    line-height: 1;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 14px;
    color: #555;
    padding: 4px 0;
}

.service-features li i {
    color: var(--success);
    margin-right: 8px;
    font-size: 12px;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ==================== WHY CHOOSE US ==================== */
.why-us-image {
    position: relative;
    text-align: center;
    padding: 40px;
}

.image-blob {
    background: var(--light-blue);
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: blobFloat 8s ease-in-out infinite;
}

.water-big-icon {
    color: var(--primary);
    opacity: 0.5;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.exp-number {
    font-size: 40px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.why-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-feature-item:hover {
    background: var(--light-blue);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.why-feature-item:hover .feature-icon {
    background: var(--gradient);
}

.why-feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.feature-content p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* ==================== COUNTER ==================== */
.counter-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.41l2.83 2.83-1.41 1.41L0 4.24V1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
}

.counter-box {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.counter-icon i {
    filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.5));
}

.counter-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* ==================== PROCESS / HOW IT WORKS ==================== */
.process-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 20px;
    transition: var(--transition);
}

.process-icon i {
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gradient);
}

.process-card:hover .process-icon i {
    color: var(--white);
}

.process-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-swiper {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(0, 98, 204, 0.1);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar i {
    font-size: 40px;
    color: var(--primary);
}

.author-info h6 {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    font-size: 15px;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: rgba(0, 98, 204, 0.08);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* ==================== ENQUIRY FORM ==================== */
.enquiry-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0, 98, 204, 0.08);
}

.enquiry-form-wrapper h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.enquiry-form-wrapper h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.enquiry-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enquiry-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.enquiry-feature i {
    color: var(--success);
    font-size: 18px;
}

.form-control,
.form-select {
    border: 2px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: var(--transition);
    font-family: var(--font);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 98, 204, 0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 4px);
}

.submit-btn {
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 98, 204, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 98, 204, 0.4);
    background: var(--gradient);
    color: var(--white);
}

/* ==================== BRANDS ==================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brands-swiper {
    padding: 20px 0;
}

.brands-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-swiper .swiper-pagination {
    display: none;
}

.brand-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
    width: 100%;
}

.brand-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-item span {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,144C672,117,768,75,864,69.3C960,64,1056,96,1152,106.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    background: var(--gradient);
    padding: 60px 0;
}

.newsletter-section h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-section h3 i {
    margin-right: 10px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 14px 25px;
    font-size: 15px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 30px;
    font-weight: 600;
    background: var(--dark);
    border: none;
    color: var(--white);
}

.newsletter-form .btn:hover {
    background: var(--primary-dark);
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-logo {
    width: 60px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.main-footer h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.main-footer p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 16px;
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.youtube { background: #FF0000; }
.social-icon.twitter { background: #1DA1F2; }

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 10px;
    color: var(--secondary);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
    background: var(--gradient-dark);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ==================== ABOUT PAGE ==================== */
.about-image-grid {
    position: relative;
    padding: 30px;
}

.about-icon-box {
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.about-experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 25px 30px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.about-experience-card h3 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--primary);
}

.mission-card:hover .mission-icon {
    background: var(--gradient);
}

.mission-card:hover .mission-icon i {
    color: var(--white);
}

.mission-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--gray);
    font-size: 14px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-avatar i {
    color: var(--primary);
}

.team-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient);
    color: var(--white);
}

/* ==================== SERVICES PAGE ==================== */
.service-detail-row {
    padding: 50px 0;
}

.service-detail-icon {
    text-align: center;
    padding: 40px;
    background: var(--light-blue);
    border-radius: var(--radius-lg);
}

.service-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.detail-features li {
    padding: 6px 0;
    font-size: 15px;
    color: #555;
}

.detail-features li i {
    color: var(--success);
    margin-right: 10px;
}

.service-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-blue);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 10px;
}

.price-label {
    font-size: 13px;
    color: var(--gray);
}

.price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.service-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0.2;
}

/* ==================== BOOKING PAGE ==================== */
.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0, 98, 204, 0.08);
}

.form-header h3 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.form-header p {
    color: var(--gray);
    margin-bottom: 25px;
}

.form-section-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-blue);
    margin-bottom: 10px;
}

.form-section-title i {
    margin-right: 8px;
}

.booking-sidebar .sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}

.sidebar-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.sidebar-card h5 i {
    color: var(--primary);
    margin-right: 8px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-blue);
    font-size: 14px;
}

.sidebar-features {
    list-style: none;
    padding: 0;
}

.sidebar-features li {
    padding: 6px 0;
    font-size: 14px;
}

.sidebar-features li i {
    margin-right: 8px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-info-card:hover .info-icon {
    background: var(--gradient);
}

.contact-info-card:hover .info-icon i {
    color: var(--white);
}

.info-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0, 98, 204, 0.08);
}

.contact-form-wrapper h4 {
    font-weight: 600;
    color: var(--dark);
}

.contact-form-wrapper h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.call-float {
    position: fixed;
    bottom: 170px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(0, 98, 204, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* ==================== ADMIN PANEL ==================== */
.admin-sidebar {
    background: var(--gradient-dark);
    min-height: 100vh;
    padding: 20px;
    color: var(--white);
    position: fixed;
    width: 260px;
}

.admin-sidebar .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .brand img {
    width: 40px;
    border-radius: 8px;
}

.admin-sidebar .brand h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.admin-nav {
    list-style: none;
    padding: 0;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    padding: 12px 15px;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.admin-nav a i {
    width: 20px;
    text-align: center;
}

.admin-content {
    margin-left: 260px;
    padding: 30px;
    background: var(--gray-light);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon i {
    font-size: 22px;
    color: var(--primary);
}

.admin-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.admin-table table {
    width: 100%;
    margin: 0;
}

.admin-table thead {
    background: var(--gradient);
    color: var(--white);
}

.admin-table th {
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
}

.admin-table td {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid var(--light-blue);
}

.badge-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 30px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: var(--shadow-hover);
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }

    .admin-sidebar {
        display: none;
    }

    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .counter-number {
        font-size: 30px;
    }

    .enquiry-form-wrapper,
    .booking-form-wrapper,
    .contact-form-wrapper {
        padding: 25px;
    }

    .page-banner {
        padding: 80px 0 40px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .whatsapp-float,
    .call-float {
        width: 48px;
        height: 48px;
        right: 15px;
    }

    .whatsapp-float {
        bottom: 85px;
    }

    .call-float {
        bottom: 145px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 24px;
    }

    .navbar > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-brand {
        max-width: calc(100% - 56px);
        gap: 8px;
    }

    .nav-logo {
        height: 42px;
    }

    .brand-name {
        font-size: 16px;
        letter-spacing: 0;
    }

    .brand-tagline {
        font-size: 9px;
        letter-spacing: 0.6px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .counter-section {
        padding: 50px 0;
    }
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth page transitions */
.page-enter {
    animation: pageEnter 0.5s ease;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
