        /* ==========================================
   MOBILE RESPONSIVENESS FIXES
   Complete Mobile-First Responsive Styles
   ========================================== */

/* ==========================================
   BASE MOBILE FIXES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.chatbot-open {
    overflow: hidden;
}

/* Fix for iOS bounce scroll */
body.menu-open,
body.chatbot-open {
    -webkit-overflow-scrolling: auto;
}

/* Container fixes */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Image responsive fix */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   TOP BAR - MOBILE FIX
   ========================================== */
.top-bar {
    display: none;
}

@media (min-width: 992px) {
    .top-bar {
        display: block;
        background: var(--secondary-dark);
        padding: 10px 0;
        position: relative;
        z-index: 1001;
    }
}

/* ==========================================
   HEADER - COMPLETE MOBILE FIX
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .navbar {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Logo - Mobile Fix */
.navbar-brand {
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.2rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    /* color: var(--text-primary); */
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Navigation - Hide on Mobile */
.navbar-collapse {
    display: none !important;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        flex: 1;
        justify-content: center;
    }
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* Header CTA Button - Mobile */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-call-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 91, 234, 0.3);
    transition: all 0.3s ease;
}

.btn-call-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 91, 234, 0.4);
    color: white;
}

.btn-call-header i {
    font-size: 0.9rem;
}

.btn-call-header span {
    display: none;
}

.btn-call-header .btn-ripple {
    display: none;
}

/* Mobile Toggle Button */
.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.toggler-icon {
    width: 22px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hide toggler on desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    
    .btn-call-header span {
        display: inline;
    }
    
    .btn-call-header {
        padding: 12px 24px;
    }
}

/* ==========================================
   MOBILE MENU OFFCANVAS - COMPLETE FIX
   ========================================== */
.mobile-menu.offcanvas {
    width: 300px;
    max-width: 85vw;
    background: white;
    border: none;
    z-index: 1055;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.offcanvas.show,
.mobile-menu.offcanvas.showing {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.mobile-logo .logo-name {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.mobile-menu .btn-close {
    width: 36px;
    height: 36px;
    background-color: #f1f5f9;
    border-radius: 10px;
    opacity: 1;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.mobile-menu .btn-close:focus {
    outline: none;
    box-shadow: none;
}

.mobile-menu .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav li a i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
    background: #f1f5f9;
    color: var(--primary-color);
}

.mobile-nav li a:hover i,
.mobile-nav li a.active i {
    background: var(--primary-gradient);
    color: white;
}

.mobile-contact {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin: 20px 0;
}

.mobile-contact h5 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.mobile-phone i,
.mobile-email i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--text-primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--primary-gradient);
    color: white;
}

/* Offcanvas Backdrop */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/* ==========================================
   HERO SECTION - MOBILE FIX
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--secondary-light) 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-content {
    text-align: center;
    padding: 30px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    width: 26px;
    height: 26px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    color: white;
    font-size: 0.7rem;
}

.badge-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.title-gradient {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    padding: 0 10px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #00d68f;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.btn-hero-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--primary-gradient);
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 91, 234, 0.4);
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.btn-hero-primary .btn-icon {
    display: none;
}

.btn-hero-primary .btn-text {
    margin-left: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-hero-primary .btn-number {
    margin-left: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-decoration: none;
    width: 100%;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-divider {
    display: none;
}

.hero-image-wrapper {
    display: none;
}

.scroll-indicator {
    display: none;
}

/* ==========================================
   SECTIONS - MOBILE FIX
   ========================================== */
.section-padding {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 30px;
    padding: 0 10px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-subtitle i {
    font-size: 0.6rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION - MOBILE FIX
   ========================================== */
.about-images {
    margin-bottom: 40px;
    padding: 10px;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
    display: none;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3px;
}

.about-content {
    padding: 0 10px;
}

.about-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-box {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Trust Badges - Mobile */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info .stars {
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================
   SERVICES SECTION - MOBILE FIX
   ========================================== */
.service-card {
    margin-bottom: 0;
}

.service-card-inner {
    padding: 25px 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    height: 100%;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.service-number {
    font-size: 3rem;
    top: 15px;
    right: 20px;
}

.featured-badge {
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    font-size: 0.7rem;
}

/* Service CTA Box - Mobile */
.service-cta-box {
    padding: 30px 25px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.service-cta-box .cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-cta-box .cta-content p {
    font-size: 0.95rem;
}

.service-cta-box .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.service-cta-box .cta-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   EQUIPMENT SECTION - MOBILE FIX
   ========================================== */
.equipment-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    margin-bottom: 25px;
}

.filter-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    border-radius: 25px;
}

.equipment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.equipment-image {
    position: relative;
    background: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    height: 200px;
    overflow: hidden;
}
.equipment-image {
    height: 180px;
}

.equipment-info {
    padding: 20px;
}

.equipment-category {
    font-size: 0.75rem;
}

.equipment-name {
    font-size: 1rem;
    margin: 8px 0;
}

.equipment-features {
    gap: 8px;
    margin-bottom: 12px;
}

.equipment-features span {
    font-size: 0.75rem;
    padding: 4px 8px;
}

.equipment-price .price {
    font-size: 1.3rem;
}

.equipment-price .period {
    font-size: 0.85rem;
}

.btn-equipment {
    padding: 12px 18px;
    font-size: 0.9rem;
}

/* ==========================================
   OFFER SECTION - MOBILE FIX
   ========================================== */
.offer-section {
    padding: 60px 0;
}

.offer-content {
    text-align: center;
    margin-bottom: 40px;
}

.offer-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.offer-title {
    font-size: 1.75rem;
}

.offer-text {
    font-size: 0.95rem;
    padding: 0 10px;
}

.offer-features {
    justify-content: center;
    gap: 15px;
}

.offer-feature {
    font-size: 0.9rem;
}

.offer-timer-box {
    padding: 30px 20px;
    border-radius: 20px;
}

.offer-timer-box h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    line-height: 60px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.75rem;
}

.countdown-separator {
    font-size: 1.5rem;
    line-height: 60px;
}

.offer-code {
    flex-direction: column;
    gap: 12px;
    padding: 15px 20px;
}

.offer-code strong {
    font-size: 1.2rem;
}

/* ==========================================
   GALLERY SECTION - MOBILE FIX
   ========================================== */
.gallery-item {
    border-radius: 15px;
}

.gallery-image {
    height: 200px;
}

.gallery-item-large .gallery-image {
    height: 220px;
}

.gallery-content h4 {
    font-size: 1.1rem;
}

.gallery-content p {
    font-size: 0.85rem;
}

.video-item .play-button {
    width: 60px;
    height: 60px;
}

.video-item .play-button i {
    font-size: 1.3rem;
}

/* ==========================================
   WHY CHOOSE US - MOBILE FIX
   ========================================== */
.advantage-list {
    margin-top: 25px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    margin-bottom: 15px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
}

.advantage-content h4 {
    font-size: 1.1rem;
}

.advantage-content p {
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    padding: 25px 15px;
    border-radius: 15px;
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
}

.stat-card .stat-icon i {
    font-size: 1.3rem;
}

.stat-card .stat-number {
    font-size: 1.8rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
}

.why-choose-stats .cta-box {
    padding: 25px;
    border-radius: 20px;
    margin-top: 20px;
}

.why-choose-stats .cta-box h4 {
    font-size: 1.2rem;
}

/* ==========================================
   TESTIMONIALS - MOBILE FIX
   ========================================== */
.testimonials-swiper {
    padding: 30px 5px 50px;
}

.testimonial-card {
    padding: 25px;
    border-radius: 20px;
}

.testimonial-rating i {
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 0.95rem;
}

.testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.author-image {
    width: 55px;
    height: 55px;
}

.author-info h5 {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
}

.testimonial-quote {
    top: 20px;
    right: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
}

/* Swiper Navigation - Mobile */
.swiper-button-prev,
.swiper-button-next {
    display: none;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    width: 25px;
}

/* Google Reviews Badge - Mobile */
.google-reviews-badge {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
}

.google-reviews-badge img {
    width: 50px;
    height: 50px;
}

.badge-content {
    text-align: center;
}

.rating-number {
    font-size: 1.75rem;
}

/* ==========================================
   FAQ SECTION - MOBILE FIX
   ========================================== */
.faq-content {
    margin-bottom: 40px;
}

.faq-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    gap: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-content h4 {
    font-size: 1.1rem;
}

.contact-content p {
    font-size: 0.9rem;
}

.faq-image {
    display: none;
}

.accordion-item {
    margin-bottom: 12px;
}

.accordion-button {
    padding: 18px 20px;
    font-size: 0.95rem;
    gap: 12px;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
    margin-right: 10px;
    font-size: 0.8rem;
}

.accordion-body {
    padding: 0 20px 20px;
    font-size: 0.9rem;
}

.accordion-body ul {
    padding-left: 18px;
}

.accordion-body li {
    margin-bottom: 6px;
}

/* ==========================================
   CONTACT SECTION - MOBILE FIX
   ========================================== */
.contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 15px;
}

.info-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
}

.info-content h4 {
    font-size: 1.05rem;
}

.info-content p {
    font-size: 0.9rem;
}

.business-hours {
    padding: 25px 20px;
}

.business-hours h4 {
    font-size: 1rem;
}

.business-hours ul li {
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    padding: 25px 20px;
    margin-top: 30px;
}

.form-header h3 {
    font-size: 1.3rem;
}

.form-header p {
    font-size: 0.9rem;
}

.form-group label {
    font-size: 0.85rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    padding: 14px 18px 14px 45px;
    font-size: 0.9rem;
}

.input-wrapper i {
    left: 15px;
    font-size: 0.9rem;
}

.form-check label {
    font-size: 0.85rem;
}

.btn-submit {
    padding: 16px;
    font-size: 1rem;
}

/* Map - Mobile */
.map-wrapper {
    border-radius: 15px;
    margin-top: 30px;
}

.map-wrapper iframe {
    height: 300px;
}

.map-overlay-info {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -30px 15px 0;
}

.map-card {
    padding: 20px;
}

.map-card h4 {
    font-size: 1rem;
}

/* ==========================================
   CLIENTS SECTION - MOBILE FIX
   ========================================== */
.clients-section {
    padding: 40px 0;
}

.clients-title {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.client-logo {
    padding: 15px;
}

.client-logo img {
    width: 45px;
    height: 45px;
}

/* ==========================================
   FOOTER - MOBILE FIX
   ========================================== */
.footer-top {
    padding: 50px 0 30px;
}

.footer-widget {
    text-align: center;
    margin-bottom: 35px;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    padding: 0 10px;
}

.footer-social {
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.widget-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    justify-content: center;
    font-size: 0.9rem;
}

.footer-contact li {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    margin-bottom: 15px;
}

.footer-contact li i {
    margin: 0 auto 5px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom-right {
    text-align: center;
}

.developer-credit {
    font-size: 0.85rem;
}

/* ==========================================
   FLOATING BUTTONS - MOBILE FIX
   ========================================== */
.floating-buttons-left {
    position: fixed;
    bottom: 20px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.floating-buttons-right {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 9998;
}

.floating-btn {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}

.floating-btn .btn-tooltip {
    display: none !important;
}

.call-btn.vibrate {
    animation: vibratePhone 3s infinite;
}

/* ==========================================
   CHATBOT - MOBILE FIX
   ========================================== */
.chatbot-btn {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}

.chatbot-btn .notification-badge {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
}

.chatbot-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    z-index: 99999;
     position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chatbot-container.active .chatbot-window {
    transform: translateY(0);
}

.chatbot-header {
    padding: 15px 18px;
    padding-top: calc(15px + env(safe-area-inset-top, 0px));
    min-height: auto;
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.2rem;
}

.chatbot-info h5 {
    font-size: 1rem;
}

.chatbot-info .status {
    font-size: 0.75rem;
}

.chatbot-close {
    width: 34px;
    height: 34px;
    min-width: 34px;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
}

.message-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.75rem;
}

.message-content {
    max-width: 82%;
    padding: 10px 14px;
    font-size: 0.88rem;
}

.chatbot-suggestions {
    padding: 10px 15px;
    max-height: 80px;
    -webkit-overflow-scrolling: touch;
}

.suggestion-btn {
    padding: 7px 12px;
    font-size: 0.75rem;
}

.chatbot-input-area {
    padding: 12px 15px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.chatbot-input-area input {
    padding: 11px 15px;
    font-size: 0.9rem;
}

.chatbot-input-area button {
    width: 42px;
    height: 42px;
    min-width: 42px;
}

.chatbot-ended {
    padding: 25px 20px;
    padding-bottom: calc(25px + env(safe-area-inset-bottom, 0px));
}

.chatbot-ended p {
    font-size: 0.88rem;
}

/* ==========================================
   SCROLL TO TOP - MOBILE FIX
   ========================================== */
.scroll-to-top {
    bottom: 85px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    z-index: 9997;
}

/* ==========================================
   MARQUEE - MOBILE FIX
   ========================================== */
.marquee-section {
    padding: 15px 0;
}

.marquee-item {
    gap: 10px;
    font-size: 0.95rem;
}

.marquee-item i {
    font-size: 1.1rem;
}

/* ==========================================
   BUTTONS - MOBILE FIX
   ========================================== */
.btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* ==========================================
   DESKTOP STYLES (992px and up)
   ========================================== */
@media (min-width: 992px) {
    .hero-section {
        padding-top: 140px;
    }
    
    .hero-content {
        text-align: left;
        padding: 60px 0;
    }
    
    .hero-badge {
        justify-content: flex-start;
    }
    
    .title-line {
        font-size: 3rem;
    }
    
    .title-gradient {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
        padding: 0;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-cta {
        flex-direction: row;
        padding: 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
    }
    
    .btn-hero-primary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero-primary .btn-icon {
        display: flex;
    }
    
    .btn-hero-primary .btn-text,
    .btn-hero-primary .btn-number {
        margin-left: 55px;
    }
    
    .hero-stats {
        flex-direction: row;
        margin: 0;
    }
    
    .stat-divider {
        display: block;
    }
    
    .hero-image-wrapper {
        display: block;
    }
    
    .scroll-indicator {
        display: block;
    }
    
    .section-padding {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-img-secondary {
        display: block;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta {
        flex-direction: row;
    }
    
    .about-cta .btn {
        width: auto;
    }
    
    .trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .trust-badge {
        flex-direction: row;
    }
    
    .advantage-item {
        flex-direction: row;
        text-align: left;
    }
    
    .faq-image {
        display: block;
    }
    
    .contact-info-card {
        flex-direction: row;
        text-align: left;
    }
    
    .info-icon {
        margin: 0;
    }
    
    .footer-widget {
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .widget-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-links li a {
        justify-content: flex-start;
    }
    
    .footer-contact li {
        flex-direction: row;
        text-align: left;
    }
    
    .footer-contact li i {
        margin: 0;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-bottom-right {
        text-align: right;
    }
    
    .copyright p {
        margin-bottom: 0;
    }
}
        /* ============================================
   RAWDHA RENTAL - PREMIUM CSS STYLESHEET
   Building Equipment & Rental Services Dubai
   Designed & Developed by Dilawar Pro
   ============================================ */

/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. CSS Variables & Root
   2. Reset & Base Styles
   3. Typography
   4. Preloader
   5. Cursor Effect
   6. Top Bar
   7. Header & Navigation
   8. Hero Section
   9. Marquee Section
   10. About Section
   11. Services Section
   12. Equipment Section
   13. Offer Section
   14. Portfolio/Gallery Section
   15. Why Choose Us Section
   16. Testimonials Section
   17. FAQ Section
   18. Contact Section
   19. Clients Section
   20. Footer
   21. Floating Buttons
   22. Chatbot
   23. Scroll to Top
   24. Animations
   25. Responsive Styles
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & ROOT
   ========================================== */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    --primary-color: #005bea;
    --primary-light: #00c6fb;
    --primary-dark: #0046b8;
    
    /* Secondary Colors */
    --secondary-color: #1a1a2e;
    --secondary-light: #16213e;
    --secondary-dark: #0f0f23;
    
    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-orange: #ff6b35;
    --accent-green: #00d68f;
    --accent-red: #ff4757;
    --accent-purple: #a855f7;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --text-muted: #adb5bd;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 40px rgba(0, 91, 234, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 198, 251, 0.4);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 15px;
    
    /* Z-Index Layers */
    --z-preloader: 9999;
    --z-cursor: 9998;
    --z-header: 1000;
    --z-floating: 999;
    --z-modal: 1050;
    --z-tooltip: 1060;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* ==========================================
   3. TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Section Styling */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle i {
    font-size: 0.7rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   4. PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    text-align: center;
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 30px;
}

.loader::before {
    content: '';
    position: absolute;
    width: 100%;
    border-top-color: #00c6fb;
    /* height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-light);
    animation: spin 1s linear infinite; */
}

.loader::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite reverse;
}

.loader-inner {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-bottom: 20px;
}

.loader-text span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
}

.loader-text span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 0;
    overflow: hidden;
    animation: loading-text 2s linear infinite;
}

@keyframes loading-text {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* ==========================================
   5. CURSOR EFFECT
   ========================================== */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    display: none;
}

@media (min-width: 992px) {
    .cursor,
    .cursor-follower {
        display: block;
    }
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(0, 91, 234, 0.1);
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
}

/* ==========================================
   6. TOP BAR
   ========================================== */
.top-bar {
    background: var(--secondary-dark);
    padding: 10px 0;
    position: relative;
    z-index: var(--z-header);
    transition: var(--transition-normal);
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.top-info li i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.top-info li a {
    color: var(--gray-400);
}

.top-info li a:hover {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    border: none;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
}

/* ==========================================
   7. HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    transition: var(--transition-normal);
    padding: 50px 0 0;
}

.header.scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.header.scrolled .navbar {
    padding: 10px 0;
}

.header .navbar {
    padding: 15px 0;
    transition: var(--transition-normal);
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-left: -75px; */
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    transition: var(--transition-normal);
}

.header:not(.scrolled) .logo-name {
    color: var(--white);
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

/* Navigation Links */
.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

.header:not(.scrolled) .nav-link {
    color: var(--white);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: var(--primary-light);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 30px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 15px;
    min-width: 250px;
    animation: fadeInUp 0.3s ease;
}

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

.dropdown-item {
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.dropdown-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: var(--primary-gradient);
    color: var(--white);
}

.dropdown-divider {
    margin: 10px 0;
    border-color: var(--gray-200);
}

/* Header CTA Button */
.header-cta .btn-call-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    border-radius: 50%;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Offcanvas */
.mobile-menu {
    background: var(--white);
    max-width: 320px;
    border: none;
}

.mobile-menu .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.mobile-logo .logo-icon i {
    font-size: 1.2rem;
}

.mobile-logo .logo-name {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.mobile-menu .btn-close {
    width: 35px;
    height: 35px;
    background-color: var(--gray-100);
    border-radius: var(--radius-sm);
    opacity: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    flex: 1;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.mobile-nav li a i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
    background: var(--gray-100);
    color: var(--primary-color);
}

.mobile-nav li a:hover i,
.mobile-nav li a.active i {
    background: var(--primary-gradient);
    color: var(--white);
}

.mobile-contact {
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.mobile-contact h5 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.mobile-phone i,
.mobile-email i {
    color: var(--primary-color);
}

.mobile-social {
    display: flex;
    gap: 10px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.mobile-social a:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

/* ==========================================
   8. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--secondary-light) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 50%, rgba(26, 26, 46, 0.95) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.hero-particles::before {
    background: var(--primary-color);
    top: 20%;
    left: 10%;
}

.hero-particles::after {
    background: var(--primary-light);
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    color: var(--white);
    font-size: 0.8rem;
}

.badge-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.title-gradient {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-description strong {
    color: var(--white);
}

.hero-description .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 18px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.btn-hero-primary .btn-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.btn-hero-primary .btn-text {
    margin-left: 55px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-hero-primary .btn-number {
    margin-left: 55px;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 91, 234, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    padding: 18px 35px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-hero-secondary i {
    transition: var(--transition-normal);
}

.btn-hero-secondary:hover i {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 91, 234, 0.3), transparent);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: 1s;
}

.hero-floating-card.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.floating-icon.green {
    background: linear-gradient(135deg, #00d68f 0%, #00b377 100%);
}

.floating-content {
    display: flex;
    flex-direction: column;
}

.floating-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    opacity: 0.3;
    top: 5%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    opacity: 0.5;
    bottom: 20%;
    right: 5%;
    animation: float 5s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    opacity: 0.3;
    top: 40%;
    left: -5%;
    animation: spin 20s linear infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-icon {
    width: 35px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-icon i {
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(15px);
        opacity: 1;
    }
}

/* ==========================================
   9. MARQUEE SECTION
   ========================================== */
.marquee-section {
    background: var(--primary-gradient);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.marquee-item i {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* ==========================================
   10. ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--bg-secondary);
    position: relative;
}

/* About Images */
.about-images {
    position: relative;
    padding: 20px;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    transition: var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
}

/* About Content */
.about-content {
    padding-left: 30px;
}

.about-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* About CTA */
.about-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.trust-badge img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info .stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.badge-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================
   11. SERVICES SECTION
   ========================================== */
.services-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.services-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.services-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
}

.services-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: 10%;
    left: -150px;
}

.services-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    bottom: -100px;
    right: 20%;
}

/* Service Cards */
.service-card {
    position: relative;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
}

.service-card.featured {
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.service-card-inner {
    height: 100%;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-normal);
}

.service-card:hover .service-card-inner {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.service-card.featured .service-card-inner {
    background: var(--primary-gradient);
    border: none;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.service-card:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.1) rotate(-5deg);
}

.service-card.featured .icon-bg {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card.featured .service-title {
    color: var(--white);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features li i {
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 12px;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    z-index: 0;
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

/* Service CTA Box */
.service-cta-box {
    background: var(--primary-gradient);
    padding: 50px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-cta-box .cta-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.service-cta-box .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.service-cta-box .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   12. EQUIPMENT SECTION
   ========================================== */
.equipment-section {
    background: var(--bg-secondary);
    position: relative;
}

/* Equipment Filter */
.equipment-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Equipment Cards */
.equipment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.equipment-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.equipment-badge.sale {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b81 100%);
}

.equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.equipment-card:hover .equipment-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    transform: translateY(20px);
}

.equipment-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.equipment-info {
    padding: 25px;
}

.equipment-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-name {
    font-size: 1.1rem;
    margin: 10px 0;
    color: var(--text-primary);
}

.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.equipment-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--gray-100);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.equipment-features span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.equipment-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.equipment-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.equipment-price .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-equipment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    background: var(--gray-100);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-equipment:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 91, 234, 0.4);
    color: var(--white);
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-gradient:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-left: 5px;
}

/* ==========================================
   13. OFFER SECTION
   ========================================== */
.offer-section {
    position: relative;
    padding: 100px 0;
    background: var(--secondary-dark);
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.offer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.offer-title .highlight {
    color: var(--accent-gold);
}

.offer-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 30px;
    max-width: 500px;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.offer-feature i {
    color: var(--accent-green);
}

/* Countdown Timer */
.offer-timer-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.offer-timer-box h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    line-height: 80px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    line-height: 80px;
}

.offer-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.offer-code span {
    color: var(--gray-400);
}

.offer-code strong {
    font-size: 1.3rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.copy-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.copy-btn:hover {
    transform: scale(1.1);
}

/* ==========================================
   14. PORTFOLIO/GALLERY SECTION
   ========================================== */
.portfolio-section {
    background: var(--white);
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.gallery-image {
    height: 280px;
    overflow: hidden;
}

.gallery-item-large .gallery-image {
    height: 350px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 91, 234, 0.9), rgba(0, 198, 251, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.gallery-content h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Video Item */
.video-item .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-normal);
}

.video-item .play-button i {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 5px;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ==========================================
   15. WHY CHOOSE US SECTION
   ========================================== */
.why-choose-section {
    background: var(--bg-secondary);
}

.why-choose-content .section-subtitle {
    justify-content: flex-start;
}

.why-choose-content .section-title {
    text-align: left;
}

.why-choose-content .section-description {
    text-align: left;
    margin: 0 0 30px 0;
}

.advantage-list {
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.advantage-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.advantage-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-card .stat-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.why-choose-stats .cta-box {
    background: var(--primary-gradient);
    padding: 35px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.why-choose-stats .cta-box h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-choose-stats .cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* ==========================================
   16. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.testimonials-bg .testimonials-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.testimonials-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: -150px;
    left: -150px;
}

.testimonials-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -200px;
    right: -200px;
}

.testimonials-section .section-subtitle,
.testimonials-section .section-title,
.testimonials-section .section-description {
    color: var(--white);
}

.testimonials-section .section-description {
    color: var(--gray-400);
}

/* Testimonials Swiper */
.testimonials-swiper {
    padding: 40px 10px 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.author-flag {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--gray-200);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 30px;
    border-radius: 10px;
}

/* Google Reviews Badge */
.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: var(--white);
    padding: 30px 50px;
    border-radius: var(--radius-xl);
    flex-wrap: wrap;
}

.google-reviews-badge img {
    width: 60px;
    height: 60px;
}

.badge-content {
    text-align: left;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.rating-stars i {
    color: var(--accent-gold);
}

.badge-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================
   17. FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--white);
}

.faq-content .section-subtitle {
    justify-content: flex-start;
}

.faq-content .section-title,
.faq-content .section-description {
    text-align: left;
}

.faq-content .section-description {
    margin: 0 0 30px 0;
}

.faq-contact-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--white);
    font-size: 2rem;
}

.contact-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.faq-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    background: var(--white);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    padding: 25px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.accordion-button::after {
    display: none;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
    margin-right: 15px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.accordion-button .fa-minus {
    display: none;
}

.accordion-button:not(.collapsed) .fa-plus {
    display: none;
}

.accordion-button:not(.collapsed) .fa-minus {
    display: inline-block;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: var(--white);
}

.accordion-button:not(.collapsed) .fa-minus {
    color: var(--white);
}

.accordion-body {
    padding: 0 30px 25px;
}

.accordion-body p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body ul li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.accordion-body strong {
    color: var(--text-primary);
}

/* ==========================================
   18. CONTACT SECTION
   ========================================== */
.contact-section {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.contact-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.contact-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
}

.contact-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: -150px;
    right: -150px;
}

/* Contact Info Cards */
.contact-info-wrapper {
    height: 100%;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.info-icon.whatsapp {
    background: #25d366;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.info-content a {
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.info-content a:hover {
    color: var(--primary-color);
}

.info-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.info-link:hover {
    gap: 10px;
}

/* Business Hours */
.business-hours {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.business-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.business-hours h4 i {
    color: var(--primary-color);
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span:first-child {
    color: var(--text-secondary);
}

.business-hours ul li span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.business-hours ul li.highlight {
    background: var(--primary-gradient);
    margin: 10px -25px -25px;
    padding: 15px 25px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: none;
}

.business-hours ul li.highlight span {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.input-wrapper.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 91, 234, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--primary-color);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--gray-500);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-top: 2px;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-check label a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-check label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.map-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.map-card h4 i {
    color: var(--primary-color);
}

.map-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ==========================================
   19. CLIENTS SECTION
   ========================================== */
.clients-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.clients-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.clients-swiper {
    padding: 20px 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.client-logo:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.client-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   20. FOOTER
   ========================================== */
.footer {
    background: var(--secondary-dark);
    color: var(--gray-400);
}

.footer-top {
    padding: 80px 0 50px;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 3px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

/* Widget Title */
.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--primary-light);
    transition: var(--transition-normal);
}

.footer-links li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    width: 20px;
    color: var(--primary-light);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact li span,
.footer-contact li a {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-bottom-right {
    text-align: right;
}

.developer-credit {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.developer-credit i {
    color: var(--accent-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.developer-credit a {
    color: var(--primary-light);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ==========================================
   21. FLOATING BUTTONS
   ========================================== */
.floating-buttons-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-floating);
}

.floating-buttons-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-floating);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn .btn-tooltip {
    position: absolute;
    left: 75px;
    background: var(--secondary-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Call Button */
.call-btn {
    background: var(--primary-gradient);
}

.call-btn.vibrate {
    animation: vibrate 2s infinite;
}

@keyframes vibrate {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(5deg);
    }
}

.call-btn:hover {
    animation: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25d366;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   22. CHATBOT
   ========================================== */
/* ==========================================
   7. HEADER & NAVIGATION - FIXED VERSION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding-top: 0;
}

.header.has-topbar {
    padding-top: 44px;
}

.header.scrolled {
    padding-top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .navbar {
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled .navbar {
    padding: 10px 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    transition: var(--transition-normal);
}

.header.scrolled .logo-name {
    color: var(--text-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

/* Navigation Container - FIXED */
.navbar-collapse {
    flex-grow: 1;
    justify-content: center;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    padding: 10px 15px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    white-space: nowrap;
}

.header.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 30px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 15px;
    min-width: 250px;
    margin-top: 10px;
    animation: fadeInUp 0.3s ease;
}

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

.dropdown-item {
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.dropdown-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: var(--primary-gradient);
    color: var(--white);
}

.dropdown-divider {
    margin: 10px 0;
    border-color: var(--gray-200);
}

/* Header CTA Button - FIXED */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 91, 234, 0.3);
    transition: var(--transition-normal);
}

.btn-call-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 91, 234, 0.4);
    color: var(--white);
}

.btn-call-header i {
    font-size: 0.95rem;
}

.btn-call-header span {
    display: inline-block;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 1.5s infinite;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================
   NAVBAR RESPONSIVE STYLES - FIXED
   ========================================== */

/* Large Desktop */
@media (min-width: 1200px) {
    .nav-link {
        padding: 10px 18px !important;
    }
    
    .btn-call-header {
        padding: 12px 25px;
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav {
        gap: 0;
    }
    
    .nav-link {
        padding: 10px 12px !important;
        font-size: 0.88rem;
    }
    
    .btn-call-header {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .btn-call-header span {
        display: none;
    }
    
    .btn-call-header i {
        margin: 0;
    }
    
    .header-cta {
        margin-left: 15px;
    }
}

/* Tablet and Below */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    
    .header {
        padding-top: 0 !important;
        background: var(--white);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .header .navbar {
        padding: 12px 0;
    }
    
    .logo-name {
        color: white !important;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .header-cta {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .btn-call-header {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .btn-call-header span {
        display: inline;
    }
    
    .navbar-toggler {
        display: flex;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .logo-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .logo-icon i {
        font-size: 1.2rem;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .btn-call-header {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .btn-call-header span {
        display: none;
    }
    
    .navbar-toggler {
        width: 40px;
        height: 40px;
    }
    
    .toggler-icon {
        width: 20px;
        height: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .logo-wrapper {
        gap: 8px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    
    .logo-icon i {
        font-size: 1rem;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .btn-call-header {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-call-header i {
        margin: 0;
        font-size: 1rem;
    }
    
    .navbar-toggler {
        width: 38px;
        height: 38px;
        margin-left: 10px;
    }
}

/* ==========================================
   22. CHATBOT - COMPLETELY FIXED VERSION
   ========================================== */

/* Floating Buttons Container - Right Side */
.floating-buttons-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Chatbot Container */
.chatbot-container {
    position: relative;
    z-index: 9999;
}

/* Chatbot Toggle Button */
.chatbot-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 91, 234, 0.4);
    transition: var(--transition-normal);
    position: relative;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(0, 91, 234, 0.5);
}

.chatbot-btn .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff4757;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid white;
    animation: badgeBounce 1s infinite;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.chatbot-btn .btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a2e;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    pointer-events: none;
}

.chatbot-btn .btn-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a2e;
}

.chatbot-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Chatbot Window - COMPLETELY FIXED */
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    max-height: calc(100vh - 150px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 99999;
}

.chatbot-container.active .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header - FIXED */
.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    flex-shrink: 0;
    min-height: 80px;
    box-sizing: border-box;
}

.chatbot-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.chatbot-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.chatbot-info h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.chatbot-info .status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.chatbot-info .status i {
    font-size: 8px;
    color: #00d68f;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chatbot-close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1rem;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f5f7fa;
    min-height: 0;
}

.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Chat Messages */
.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: messageIn 0.3s ease;
}

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

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.chat-message.bot .message-avatar {
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    color: white;
}

.chat-message.user .message-avatar {
    background: #e2e8f0;
    color: #4a5568;
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.bot .message-content {
    background: white;
    color: #2d3748;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-top: 6px;
}

.chat-message.user .message-time {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 18px;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #a0aec0;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        background: #a0aec0;
    }
    30% {
        transform: translateY(-6px);
        background: #005bea;
    }
}

/* Chatbot Suggestions */
.chatbot-suggestions {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    max-height: 90px;
    overflow-y: auto;
}

.suggestion-btn {
    padding: 8px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Chatbot Input Area */
.chatbot-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: white;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.chatbot-input-area input {
    flex: 1;
    padding: 12px 16px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #2d3748;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input-area input:focus {
    background: white;
    border-color: #005bea;
    box-shadow: 0 0 0 3px rgba(0, 91, 234, 0.1);
}

.chatbot-input-area input::placeholder {
    color: #a0aec0;
}

.chatbot-input-area button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.chatbot-input-area button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 91, 234, 0.4);
}

/* Chatbot Ended State */
.chatbot-ended {
    padding: 30px 20px;
    text-align: center;
    background: #f8fafc;
    flex-shrink: 0;
}

.chatbot-ended p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.chatbot-ended .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chatbot-ended .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 91, 234, 0.4);
}

/* ==========================================
   CHATBOT RESPONSIVE - FIXED
   ========================================== */

/* Tablet */
@media (max-width: 991.98px) {
    .floating-buttons-right {
        bottom: 25px;
        right: 25px;
    }
    
    .chatbot-btn {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .chatbot-window {
        width: 350px;
        height: 500px;
        bottom: 95px;
        right: 25px;
    }
    
    .chatbot-header {
        padding: 15px 18px;
        min-height: 72px;
    }
    
    .chatbot-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }
    
    .chatbot-info h5 {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .floating-buttons-right {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-btn {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }
    
    .chatbot-btn .btn-tooltip {
        display: none;
    }
    
    .chatbot-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(100%);
    }
    
    .chatbot-container.active .chatbot-window {
        transform: translateY(0);
    }
    
    .chatbot-header {
        padding: 16px 20px;
        min-height: 75px;
        padding-top: calc(16px + env(safe-area-inset-top, 0px));
    }
    
    .chatbot-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
    
    .chatbot-messages {
        flex: 1;
        padding: 16px;
    }
    
    .message-content {
        max-width: 82%;
    }
    
    .chatbot-suggestions {
        padding: 10px 16px;
        max-height: 85px;
    }
    
    .suggestion-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
    
    .chatbot-input-area {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }
    
    .chatbot-input-area input {
        padding: 11px 16px;
    }
    
    .chatbot-input-area button {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .chatbot-header {
        gap: 10px;
        padding: 14px 16px;
        padding-top: calc(14px + env(safe-area-inset-top, 0px));
    }
    
    .chatbot-avatar {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.1rem;
    }
    
    .chatbot-info h5 {
        font-size: 0.95rem;
    }
    
    .chatbot-info .status {
        font-size: 0.75rem;
    }
    
    .chatbot-close {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }
    
    .chat-message {
        gap: 8px;
        margin-bottom: 14px;
    }
    
    .message-avatar {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }
    
    .message-content {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .chatbot-suggestions {
        gap: 6px;
    }
    
    .suggestion-btn {
        padding: 6px 10px;
        font-size: 0.72rem;
    }
}

/* ==========================================
   21. FLOATING BUTTONS - LEFT SIDE FIXED
   ========================================== */
.floating-buttons-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-btn .btn-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a2e;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn .btn-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1a1a2e;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
}

.call-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 91, 234, 0.5);
}

.call-btn.vibrate {
    animation: vibratePhone 2s infinite;
}

@keyframes vibratePhone {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(-10deg); }
    10% { transform: rotate(10deg); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    25% { transform: rotate(0deg); }
}

.call-btn:hover {
    animation: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25d366;
    animation: pulseRing 1.5s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive Floating Buttons */
@media (max-width: 767.98px) {
    .floating-buttons-left {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    
    .floating-btn .btn-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-buttons-left {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ==========================================
   23. SCROLL TO TOP - FIXED
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 91, 234, 0.3);
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 91, 234, 0.5);
}

@media (max-width: 767.98px) {
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
/* ==========================================
   23. SCROLL TO TOP
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: var(--z-floating);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

/* ==========================================
   24. ANIMATIONS
   ========================================== */
/* Fade Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide Animations */
.slide-in-bottom {
    transform: translateY(100%);
    animation: slideInBottom 0.5s ease forwards;
}

@keyframes slideInBottom {
    to {
        transform: translateY(0);
    }
}

/* Rotate Animation */
.rotate-in {
    opacity: 0;
    transform: rotate(-180deg);
    animation: rotateIn 0.5s ease forwards;
}

@keyframes rotateIn {
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Glow Animation */
.glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 91, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 91, 234, 0.8), 0 0 40px rgba(0, 91, 234, 0.4);
    }
}

/* Float Animation */
.float-animation {
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   25. RESPONSIVE STYLES
   ========================================== */

/* Extra Large Devices (1400px and up) */
@media (max-width: 1399.98px) {
    .hero-floating-card.card-1 {
        left: 0;
    }
    
    .hero-floating-card.card-2 {
        right: -5%;
    }
}

/* Large Devices (1200px and up) */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 30px;
        padding: 30px;
    }
}

/* Medium Devices (992px and up) */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    
    .header {
        padding: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }
    
    .header .navbar {
        padding: 15px 0;
    }
    
    .logo-name {
        color: var(--text-primary) !important;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: flex;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content {
        text-align: center;
        padding: 60px 0 40px;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .about-images {
        margin-bottom: 50px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 20px;
        padding: 20px 25px;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .service-cta-box {
        padding: 40px;
        text-align: center;
        flex-direction: column;
    }
    
    .offer-section {
        padding: 80px 0;
    }
    
    .offer-timer-box {
        margin-top: 50px;
    }
    
    .faq-content {
        margin-bottom: 50px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-right {
        text-align: center;
        margin-top: 10px;
    }
    
    .chatbot-window {
        width: 340px;
        right: -15px;
    }
    
    .scroll-to-top {
        right: 100px;
    }
}

/* Small Devices (768px and up) */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .equipment-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        line-height: 60px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        line-height: 60px;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-item-large .gallery-image {
        height: 280px;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .google-reviews-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .badge-content {
        text-align: center;
    }
    
    .faq-contact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .map-overlay-info {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .floating-buttons-left {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-btn .btn-tooltip {
        display: none;
    }
    
    .chatbot-window {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        max-height: 100vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    
    .chatbot-messages {
        max-height: calc(100vh - 280px);
    }
    
    .scroll-to-top {
        right: 20px;
        bottom: 90px;
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Devices (576px and up) */
@media (max-width: 575.98px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary {
        padding: 15px 25px;
    }
    
    .btn-hero-primary .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn-hero-primary .btn-text,
    .btn-hero-primary .btn-number {
        margin-left: 50px;
    }
    
    .service-card-inner {
        padding: 30px 20px;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .equipment-info {
        padding: 20px 15px;
    }
    
    .offer-content {
        text-align: center;
    }
    
    .offer-features {
        justify-content: center;
    }
    
    .offer-timer-box {
        padding: 30px 20px;
    }
    
    .offer-code {
        flex-direction: column;
        gap: 10px;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0 20px 20px;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .footer-contact li i {
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .top-bar,
    .floating-buttons-left,
    .floating-buttons-right,
    .scroll-to-top,
    .chatbot-container {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
    
    .section-padding {
        padding: 30px 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles here if needed */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to Main Content Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}