@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #00A8E8;
    /* Aqua Blue */
    --primary-dark: #007bbd;
    --secondary-color: #002147;
    /* Deep Navy */
    --accent-color: #00E5FF;
    /* Bright Cyan */
    --accent-glow: rgba(0, 229, 255, 0.4);

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e0f2f7 100%);
    --card-gradient: linear-gradient(145deg, #ffffff, #f0f8ff);
    --text-gradient: linear-gradient(90deg, #00A8E8, #002147);

    /* UI Colors */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 33, 71, 0.12);
    --shadow-glow: 0 0 20px rgba(0, 168, 232, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--bg-light);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none;
}

/* -------------------------------
   UTILITIES
---------------------------------*/
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-4 {
    gap: 1.5rem;
}

.pos-relative {
    position: relative;
}

.z-index-2 {
    z-index: 2;
}

.w-100 {
    width: 100%;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 168, 232, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Base Nav (Fallback for other pages) */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

nav .logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

nav a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 168, 232, 0.08);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 24px;
}

.menu-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.menu-toggle .fa-times {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-toggle.open .fa-bars {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.menu-toggle.open .fa-times {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
}

/* Modern Glass Nav (index.html) */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    border-radius: 50px;
    transition: var(--transition);
    padding: 5px 15px;
    margin: 20px auto 0;
    max-width: 1240px;
    width: 90%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    padding: 8px 20px;
}

.glass-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

/* Nav Button specific to .btn-nav */
.btn-nav {
    background: transparent !important;
    color: white !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    z-index: -2;
    transition: var(--transition);
    border-radius: inherit;
}

.btn-nav::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -75%;
    width: 250%;
    aspect-ratio: 1 / 1;
    background: var(--primary-dark);
    border-radius: 40%;
    z-index: -1;
    transition: top 0.8s ease-in-out;
    animation: btnWave 4s infinite linear;
}

.btn-nav:hover::after {
    top: -50%;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
    color: white !important;
}

/* -------------------------------
   HERO SLIDER
---------------------------------*/
.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 33, 71, 0.8) 0%, rgba(0, 33, 71, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.bg-zoom {
    animation: bgZoom 20s infinite alternate linear;
}

@keyframes bgZoom {
    0% {
        background-size: 100% auto;
    }

    100% {
        background-size: 110% auto;
    }
}

@media (max-aspect-ratio: 1/1) {
    @keyframes bgZoom {
        0% {
            background-size: auto 100%;
        }

        100% {
            background-size: auto 115%;
        }
    }
}

.slide-content {
    position: relative;
    z-index: 4;
    width: 45%;
    padding: 0 5%;
    text-align: left;
    color: var(--white);
}

.slide-content h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.product-overlay-image {
    position: relative;
    z-index: 3;
    width: 40%;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* -------------------------------
   BUTTONS
---------------------------------*/
.btn-primary {
    display: inline-block;
    background: transparent !important;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    z-index: -2;
    transition: var(--transition);
    border-radius: inherit;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -75%;
    width: 250%;
    aspect-ratio: 1 / 1;
    background: var(--primary-dark);
    border-radius: 40%;
    z-index: -1;
    transition: top 0.8s ease-in-out;
    animation: btnWave 4s infinite linear;
}

.btn-primary:hover::after {
    top: -50%;
}

@keyframes btnWave {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 168, 232, 0.4);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-outline:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-solid-white {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-dealer {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-dealer::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40%;
    z-index: -1;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-dealer:hover::before {
    top: -20%;
    transform: rotate(180deg);
}

.btn-dealer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pulse-btn {
    animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 168, 232, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 232, 0);
    }
}

/* -------------------------------
   BOOK SERVICE SECTION
---------------------------------*/
.book-service-section {
    background: var(--secondary-color);
    padding: 25px 0;
    color: var(--white);
    position: relative;
    z-index: 20;
    border-bottom: 3px solid var(--primary-color);
}

.book-service-section .flex-center {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.book-service-section p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.cta-button {
    background: transparent !important;
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    z-index: -2;
    transition: var(--transition);
    border-radius: inherit;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -75%;
    width: 250%;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border-radius: 40%;
    z-index: -1;
    transition: top 0.8s ease-in-out;
    animation: btnWave 4s infinite linear;
}

.cta-button:hover::after {
    top: -50%;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* -------------------------------
   WHY US (BENTO GRID)
---------------------------------*/
.advantage-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 232, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--bg-gradient);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.bento-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.bento-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------------------------------
   PRODUCTS
---------------------------------*/
.product-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    background: radial-gradient(circle at center, #f8f9fa 0%, #e2e8f0 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1) translateY(-10px);
}

.product-card-body {
    padding: 30px;
    text-align: left;
}

.product-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* -------------------------------
   ABOUT US
---------------------------------*/
.bg-light-gradient {
    background: var(--card-gradient);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-box {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.mission-box h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box p {
    font-size: 0.95rem;
    margin: 0;
}

.image-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.1;
}

.modern-shadow {
    box-shadow: var(--shadow-lg);
}

.rounded-img {
    border-radius: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------
   CONTACT & DEALERS
---------------------------------*/
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #00A8E8, #007bbd);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.text-small {
    font-size: 0.9rem;
}

.dealer-section {
    position: relative;
    background: url('/img/slider_bg1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    border-top: 5px solid var(--primary-color);
}

.dealer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 33, 71, 0.85);
    /* Deep navy overlay */
}

.dealer-text {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    color: #cbd5e1;
}

/* -------------------------------
   FOOTER
---------------------------------*/
.modern-footer {
    background: #020202;
    /* Very dark */
    color: #e2e8f0;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 350px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.links-col h4,
.contact-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.links-col ul {
    list-style: none;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: #94a3b8;
    transition: var(--transition);
}

.links-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #94a3b8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* -------------------------------
   MODALS AND WIDGETS
---------------------------------*/
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 33, 71, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-modal {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--bg-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
}

.close-button {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

.close-button:hover {
    color: var(--danger);
}

.modern-form {
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

/* Widgets */
.faq-floating-button-container {
    position: fixed;
    top: 60%;
    right: 0;
    z-index: 900;
}

.faq-floating-button {
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    border-radius: 50px 0 0 50px;
    padding: 5px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    width: 50px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-floating-button .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-floating-button .button-text {
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    padding: 0 15px 0 10px;
    transition: opacity 0.3s;
}

.faq-floating-button:hover {
    width: 180px;
    background: var(--primary-dark);
}

.faq-floating-button:hover .button-text {
    opacity: 1;
}

.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.pulse-ring {
    animation: WhatsAppPulse 2s infinite;
}

@keyframes WhatsAppPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* -------------------------------
   SCROLL ANIMATIONS (Triggered by JS)
---------------------------------*/
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.slide-up {
    transform: translateY(50px);
}

.slide-up.active {
    transform: translateY(0);
}

.slide-left {
    transform: translateX(50px);
}

.slide-left.active {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(-50px);
}

.slide-right.active {
    transform: translateX(0);
}

.fade-in {
    transform: scale(0.95);
}

.fade-in.active {
    transform: scale(1);
}

.scale-in {
    transform: scale(0.8);
    opacity: 0;
}

.scale-in.active {
    transform: scale(1);
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* -------------------------------
   RESPONSIVE (MOBILE VIEW)
---------------------------------*/
@media (max-width: 992px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Nav Adjustments */
    .glass-nav {
        border-radius: 15px;
        width: 96%;
        margin-top: 10px;
        padding: 8px 15px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 25px;
        top: 18px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        max-height: 0;
        overflow: hidden;
        gap: 0;
        transition: max-height 0.4s ease;
        border-radius: 15px;
    }

    nav ul.show {
        max-height: 450px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--glass-border);
        padding-bottom: 10px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        border-radius: 0;
    }

    .btn-nav {
        margin: 10px auto;
        width: 80%;
        display: block;
        padding: 12px 0 !important;
    }

    /* Slider */
    .slider-container {
        height: auto;
        min-height: 80vh;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }

    .slide-content {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .product-overlay-image {
        width: 80%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Grids */
    .advantage-bento-grid {
        grid-template-columns: 1fr;
    }

    .product-cards-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .book-service-section .flex-center {
        flex-direction: column;
        text-align: center;
    }
}

/* -------------------------------
   FAQ SECTION
---------------------------------*/
.faq-page-header {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 168, 232, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1.1rem;
}

.faq-question.active h3 {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    background: #fafcff;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), padding 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer.show {
    max-height: 1200px;
    padding: 15px 30px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.youtube-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .faq-page-header {
        padding: 140px 0 40px;
    }
    .faq-question {
        padding: 18px 20px;
    }
    .faq-question h3 {
        font-size: 1.05rem;
    }
    .faq-answer.show {
        padding: 15px 20px 25px;
    }
    .faq-answer {
        padding: 0 20px;
    }
}