:root {
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --accent-color: #005c97;
    --text-color: #333;
    --light-text: #f4f4f4;
    --background-color: #ffffff;
    --section-bg: #f9f9f9;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --nav-height: 80px;
    --btn-padding: 10px 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    max-width: 1450px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 1.5rem;
    /* Ensure space between logo and nav items */
    flex-shrink: 0;
    /* Prevent logo from shrinking */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    /* Prevent logo text wrapping */
}

@media (max-width: 1400px) {
    .navbar {
        padding: 0 3%;
    }

    .nav-links {
        gap: 1.25rem;
        margin-right: 1.25rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1250px) {
    .logo-main-text {
        font-size: 1.15rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        gap: 0.8rem;
        margin-right: 1rem;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .header-phone-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

.logo-main-text span {
    color: var(--primary-color);
}

.logo-location {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #ff9a56, #ff6b6b);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    width: fit-content;
    margin-top: 2px;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-social-icon {
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    color: var(--text-color) !important;
}

.nav-social-icon:hover {
    color: #E1306C !important;
    transform: scale(1.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: var(--btn-padding);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.25);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
}

.btn-highlight {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
    box-shadow: 0 4px 15px rgba(238, 82, 83, 0.3);
    border: 2px solid white;
}

.btn-highlight:hover {
    box-shadow: 0 6px 20px rgba(238, 82, 83, 0.4);
    background: linear-gradient(135deg, #ee5253, #ff6b6b);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    /* Offset header height */
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    position: relative;
}

.hero-banner {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    max-height: calc(100vh - 80px);
    margin: 0;
    padding: 0;
}

/* Hero Form Overlay */
.hero-form-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-form-card h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-usps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.usp-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(0, 210, 255, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-usp {
    color: #e67e22;
    font-weight: 700;
}

.highlight-usp i {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

@media (max-width: 768px) {
    .hero-usps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 0.8rem;
    }

    .usp-item {
        font-size: 0.72rem;
        background: rgba(255, 255, 255, 0.15);
        padding: 3px 8px;
        border-radius: 12px;
        color: white;
    }

    .usp-item i {
        background: transparent;
        color: #ffd700;
        width: auto;
        height: auto;
        font-size: 0.75rem;
        padding: 0;
    }
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 0.9rem 0.9rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

.form-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}

.enquiry-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.enquiry-btn i {
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .hero-form-overlay {
        right: 3%;
    }

    .hero-form-card {
        padding: 2rem;
        max-width: 350px;
    }

    .hero-form-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {

    html,
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }

    .hero {
        margin-top: 80px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        flex-direction: column;
    }

    .hero-banner {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    .hero-banner img {
        width: 100%;
        height: auto;
        /* Allow natural height */
        max-height: none;
        /* Remove height restriction */
        min-height: auto;
        margin: 0;
        padding: 0;
        display: block;
        object-fit: contain;
        /* Ensure full image is visible */
    }

    .hero-form-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        padding: 0;
        width: 100%;
        background: transparent;
    }

    .hero-form-card {
        max-width: 100%;
        padding: 1.2rem 5%;
        border-radius: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: none;
        border: none;
    }

    .hero-form-card h2 {
        font-size: 1.3rem;
        color: white;
        margin-bottom: 0.2rem;
    }

    .hero-form-card p {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 0.8rem;
    }

    .enquiry-form {
        gap: 0.7rem;
    }

    .form-group input {
        padding: 0.7rem 0.7rem 0.7rem 2.5rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .form-group i {
        left: 0.9rem;
        font-size: 0.9rem;
    }

    .enquiry-btn,
    .instagram-dm-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.2rem;
        border-radius: 12px;
    }

    .form-divider {
        margin: 0.3rem 0;
    }

    .form-divider span {
        color: rgba(255, 255, 255, 0.9);
    }

    .form-divider::before,
    .form-divider::after {
        border-bottom-color: rgba(255, 255, 255, 0.3);
    }
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5, #005c97, #00d2ff);
    background-size: 300% 100%;
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    animation: gradientMove 4s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 5rem 5%;
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 250px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.specs {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.specs li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Installation Gallery */
.installation-gallery {
    padding: 5rem 5%;
    background: white;
}

.gallery-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.gallery-carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    padding: 10px 0;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    background-color: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    border: 1px solid #eee;
    scroll-snap-align: start;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    padding: 5px;
}

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

.gallery-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

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

.gallery-prev-btn {
    left: 0;
}

.gallery-next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        padding: 0 15px;
    }

    .gallery-carousel-track-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-carousel-track-container::-webkit-scrollbar {
        display: none;
    }

    .gallery-grid {
        gap: 1rem;
        padding: 10px 0;
    }

    .gallery-item {
        flex: 0 0 85%;
        height: 450px;
        scroll-snap-align: center;
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
    }

    .gallery-carousel-btn {
        display: flex;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.9);
        align-items: center;
        justify-content: center;
        z-index: 100;
    }

    .gallery-prev-btn {
        left: 5px;
    }

    .gallery-next-btn {
        right: 5px;
    }
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.instagram-follow-btn i {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: white;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    /* Hide overflowing slides */
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonial-grid {
    display: flex;
    /* overflow: hidden; Removed to allow track to move */
    transition: transform 0.5s ease-in-out;
    /* Add smooth transition */
    gap: 0;
}

.testimonial-card {
    background: var(--section-bg);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    flex: 0 0 100%;
    /* Ensure each card takes full width */
    width: 100%;
    transition: var(--transition);
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

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

.prev-btn {
    left: 0;
}

/* Compact Testimonial Carousel */
.compact-carousel {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
    /* Removed padding to ensure accurate width calculation */
    overflow: hidden;
    padding-bottom: 20px;
    /* Space for shadow */
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.compact-card {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    /* Ensure it doesn't shrink or grow */
    background: white;
    padding: 2.5rem 3.5rem;
    /* Increased side padding for content to clear buttons */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: left;
    box-sizing: border-box;
    /* Include padding in width */
}

.compact-card .testimonial-header {
    margin-bottom: 0.8rem;
}

.compact-card .reviewer-img {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.compact-card .reviewer-info h3 {
    font-size: 1rem;
}

.stars-compact {
    color: #fbbc04;
    font-size: 0.8rem;
    display: flex;
    gap: 1px;
    margin-top: 2px;
}

.compact-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Carousel Buttons */
.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.prev-btn {
    left: 10px;
    /* Position inside the card area */
}

.next-btn {
    right: 10px;
    /* Position inside the card area */
}

/* Hide Grid */
.testimonial-grid {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .compact-carousel {
        margin-top: 1.5rem;
        max-width: 100%;
        padding-bottom: 30px;
        /* Space for shadow/dots if any */
    }

    .compact-card {
        padding: 2.5rem 2.8rem;
        /* Increased side padding to clear arrows */
        text-align: center;
        min-height: 250px;
        /* Minimum height to prevent collapse */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Move arrows slightly outward or ensure they are visible */
    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .compact-card .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .reviewer-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .google-icon-small {
        position: static;
        margin-top: 10px;
    }

    /* Hide buttons on mobile if swipe is preferred, or make them smaller */
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #e0e0e0;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-top: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Rental Plans */
.rental-plans {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f6f9fc, #eef2f7);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
}

.plan-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-features {
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-color);
}

/* Contact & Footer */
.contact {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info,
.footer-links,
.footer-map {
    flex: 1;
    min-width: 250px;
}

.footer-map h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        gap: 0;
        /* Reset gap for mobile menu */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease 0.1s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-social-icon {
        justify-content: center;
        color: #333;
    }

    .social-text {
        display: inline-block;
    }

    /* Sections */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Stats */
    .stats-section {
        padding: 3rem 5%;
    }

    /* Plans */
    .rental-plans {
        padding: 3rem 5%;
    }

    .plan-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        /* Increased gap for badge */
        margin-top: 1rem;
    }

    .plan-card.featured {
        transform: none;
    }

    /* Gallery */
    .gallery-carousel-container {
        padding: 0 35px;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 5%;
    }

    /* Contact */
    .contact {
        padding: 3rem 5%;
    }

    .contact-container {
        gap: 2rem;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .instagram-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-form-card {
        max-width: 350px;
        padding: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Google Review Button */
.google-review-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    animation: pulse 2s infinite;
}

.google-review-btn:hover {
    background: linear-gradient(135deg, #34A853, #4285F4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
}

.google-review-btn i {
    margin-right: 8px;
}

/* Star Ratings */
.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #333;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* Refer and Earn Section */
.refer-earn-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.refer-earn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3N2Zz4=');
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    opacity: 0.3;
}

.refer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.refer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.refer-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.refer-validity {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-validity 2s infinite;
}

.refer-validity i {
    color: #ffd700;
    margin-right: 8px;
}

@keyframes pulse-validity {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.refer-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.refer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.refer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.refer-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4facfe;
    background: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.refer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.offer-highlight {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00d2ff;
    margin: 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 210, 255, 0.3);
    line-height: 1;
}

.refer-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 1rem;
}

.btn-refer {
    display: inline-block;
    background: #fff;
    color: #2a5298;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-refer:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.btn-refer.white-btn {
    background: white;
    color: #333;
}

.btn-refer-outline {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-refer-outline:hover {
    background: white;
    color: #2a5298;
    transform: scale(1.05);
}

/* Specific Card Styling */
.existing-customer .offer-highlight {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    /* Gradient text doesn't work well with text-shadow */
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.new-customer .offer-highlight {
    background: linear-gradient(to right, #00ff88, #25d366);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.3));
}

@media (max-width: 768px) {
    .refer-earn-section {
        padding: 3rem 1rem;
    }

    .refer-header h2 {
        font-size: 1.8rem;
    }

    .refer-header p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .offer-highlight {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }

    .refer-cards {
        gap: 10px;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }

    .refer-card {
        padding: 1.5rem 0.8rem;
        width: 48%;
        max-width: none;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .refer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .refer-card h3 {
        font-size: 1.1rem;
    }

    .refer-card p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .btn-refer,
    .btn-refer-outline {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        white-space: nowrap;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    background: white;
    /* Fallback/background for transparent images */
    padding: 10px;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* Caption if needed */
.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}