/* Global Reset & Theme */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #007bff;
    --secondary: #28a745;
    --dark-bg: #121212;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    padding-bottom: 70px; /* Space for fixed bottom CTA */
}

/* Navigation Bar - Updated with Dark Theme for White Logos */
.navbar {
    background-color: #0f172a; /* Slate dark background so white logo is visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
}

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff; /* Swapped to white to match your brand logo text */
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropbtn:hover {
    background-color: #0056b3;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1001;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f3f5;
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section & Slider */
.hero-section {
    text-align: center;
    padding: 30px 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero-text h1 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 6px;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Image Slider Styling */
.slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    aspect-ratio: 16 / 9;
    width: 100%;
}

.slider {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 16.6666%;
    height: 100%;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.slide-placeholder i {
    margin-bottom: 12px;
    opacity: 0.9;
}

.slide-placeholder h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.slide-placeholder p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--white);
    width: 18px;
    border-radius: 4px;
}

/* Products Features Showcase */
.products-section {
    padding: 30px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.product-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card h3 {
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Enquiry Form */
.enquiry-section {
    padding: 20px 16px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-container h2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    text-align: center;
}

.form-container p {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--white);
}

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

.submit-btn {
    width: 100%;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #218838;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s;
}

.floating-whatsapp:active {
    transform: scale(0.9);
}

/* Fixed Bottom CTA Grid */
.fixed-cta-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 65px;
}

.cta-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    transition: background-color 0.2s;
}

.cta-item i {
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.cta-item.insta i { color: #e1306c; }
.cta-item.youtube i { color: #ff0000; }
.cta-item.facebook i { color: #1877f2; }
.cta-item.call { background-color: var(--primary); color: white; }
.cta-item.call i { color: white; }

.cta-item:active {
    background-color: #f1f3f5;
}
.cta-item.call:active {
    background-color: #0056b3;
}

/* Responsive Desktop Tweaks (Keeps mobile-first core layouts fluid) */
@media (min-width: 768px) {
    .slider-container {
        aspect-ratio: 21 / 9;
    }
    .cta-grid {
        max-width: 600px;
        margin: 0 auto;
        border-radius: 12px 12px 0 0;
    }
}

/* Added Styles for Slider Pause Controls */
.slider-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.pause-btn {
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.pause-btn:hover {
    background-color: rgba(15, 23, 42, 0.8);
}

.pause-btn.paused {
    background-color: var(--secondary);
    border-color: transparent;
}

/* ===================== Product Gallery Section ===================== */
.gallery-section {
    padding: 30px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: -8px;
}

.gallery-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: var(--white);
    border: 2px solid transparent;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    text-align: left;
}

.gallery-tab i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.gallery-tab:hover {
    background-color: #f1f3f5;
}

.gallery-tab.active {
    background-color: #eaf3ff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(2px);
}

.gallery-tab.active i {
    color: var(--primary);
}

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

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background-color: #e9ecef;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.06);
}

.gallery-thumb::after {
    content: "\f00e"; /* fa-search-plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 6px;
    right: 6px;
    background-color: rgba(15, 23, 42, 0.55);
    color: var(--white);
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== Lightbox / Image Viewer ===================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-image-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    background-color: rgba(255,255,255,0.12);
    padding: 4px 12px;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .lightbox-nav {
        width: 52px;
        height: 52px;
    }
    .lightbox-prev {
        left: 24px;
    }
    .lightbox-next {
        right: 24px;
    }
}

/* ===================== Container Utility ===================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-padding {
    padding: 40px 0;
}

/* ===================== Contact Section ===================== */
.contact-section {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: stretch;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-meta-item i {
    font-size: 1.3rem;
    color: var(--primary);
    background-color: #eaf3ff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-meta-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.contact-meta-item p {
    font-size: 0.92rem;
    color: #555;
}

.contact-meta-item p a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-meta-item p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-height: 280px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    border: 0;
}

/* ===================== Site Footer ===================== */
.site-footer {
    background-color: #0f172a;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}