/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* HIGH-SPECIFICITY OVERRIDE: FORCE WHITE BACKGROUND & BLACK TEXT */
html body section.product-details,
html body section.product-details div.product-information,
html body section.product-details div.product-information * {
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* KEEP BUTTON TEXT WHITE FOR CONTRAST */
html body section.product-details .add-cart-btn,
html body section.product-details .add-cart-btn * {
    color: #ffffff !important;
    background-color: #3535a7 !important;
}

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}


/*==================================================
GLOBAL & FIXED WRAPPER
==================================================*/
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

body {
    padding-top: 140px;
}


/*==================================================
TOP ANNOUNCEMENT BAR
==================================================*/

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #ffffff;
    height: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}


/* ==========================================================================
   ANNOUNCEMENT TRACK
   ========================================================================== */

.announcement-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    will-change: transform;

    /* Slower, smoother scrolling */
    animation: scrollAnnouncements 50s linear infinite;

    /* Helps browser render the animation smoothly */
    transform: translate3d(0, 0, 0);
}


/* Pause when user hovers */

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}


/* ==========================================================================
   ANNOUNCEMENT ITEM
   ========================================================================== */

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;

    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.3px;

    color: #e2e8f0;

    flex-shrink: 0;
}


/* Announcement icon */

.announcement-item span {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================================
   SMOOTH CONTINUOUS TICKER
   ========================================================================== */

@keyframes scrollAnnouncements {

    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

}


/* ==========================================================================
   LAPTOPS & SMALL DESKTOPS
   ========================================================================== */

@media (max-width: 1024px) {

    .announcement-bar {
        height: 38px;
    }

    .announcement-item {
        padding: 0 30px;
        font-size: 13px;
        gap: 6px;
    }

    .announcement-track {
        animation-duration: 80s;
    }

}


/* ==========================================================================
   TABLETS
   ========================================================================== */

@media (max-width: 768px) {

    .announcement-bar {
        height: 36px;
    }

    .announcement-item {
        padding: 0 20px;
        font-size: 12.5px;
        letter-spacing: 0.2px;
    }

    .announcement-item span {
        font-size: 13px;
    }

    .announcement-track {
        animation-duration: 75s;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .announcement-bar {
        height: 34px;
    }

    .announcement-item {
        padding: 0 15px;
        font-size: 12px;
        gap: 5px;
    }

    .announcement-item span {
        font-size: 12px;
    }

    .announcement-track {
        animation-duration: 70s;
    }

}


/* ==========================================================================
   EXTRA SMALL DEVICES
   ========================================================================== */

@media (max-width: 360px) {

    .announcement-bar {
        height: 32px;
    }

    .announcement-item {
        padding: 0 10px;
        font-size: 11px;
    }

    .announcement-track {
        animation-duration: 68s;
    }

}
/*==================================================
MAIN HEADER LAYOUT
==================================================*/

.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

/* 3-Column Equal Flex System for Exact Centering */
.header-container {
    width: 92%;
    max-width: 1450px;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*==================================================
LOGO (LEFT)
==================================================*/

.logo {
    flex: 1; /* Match right container width */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}


/*==================================================
NAVIGATION (CENTER)
==================================================*/

.navbar {
    flex: 2; /* Center column priority */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: .35s;
}

.nav-links a:hover,
.nav-links .active {
    color: #2563eb;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: .35s;
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}


/*==================================================
RIGHT ACTIONS GROUP (RIGHT)
==================================================*/

.header-right {
    flex: 1; /* Match logo width */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    height: 100%;
    z-index: 2;
}


/*==================================================
SOCIAL MEDIA ICONS
==================================================*/

.header-social-actions {
    display: flex;
    align-items: center;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f4f4f5;
    color: #333333;
    border-radius: 50%;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-social-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.header-social-icons a[aria-label="Facebook"]:hover {
    background-color: #1877f2;
}

.header-social-icons a[aria-label="LinkedIn"]:hover {
    background-color: #0a66c2;
}

.header-social-icons a[aria-label="Instagram"]:hover {
    background-color: #e4405f;
}

.header-social-icons a[aria-label="Twitter / X"]:hover {
    background-color: #000000;
}

/* Visibility Control */
.mobile-only-social {
    display: none;
}


/*==================================================
LUCID CART ICON
==================================================*/

.lucid-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    z-index: 1;
    flex: 0 0 44px;
    background-color: #2b56f5;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(43, 86, 245, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.lucid-cart-icon i {
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
}

.lucid-cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    padding: 0 2px;
    line-height: 1;
}

.lucid-cart-icon:hover {
    transform: scale(1.05);
}


/*==================================================
OUR PRODUCTS BUTTON
==================================================*/

.products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2563eb, #1746a2);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .4px;
    border-radius: 50px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .25);
    transition: all .35s ease;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.products-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-25deg);
    transition: .8s;
}

.products-btn:hover::before {
    left: 140%;
}

.products-btn span,
.products-btn i {
    position: relative;
    z-index: 2;
}

.products-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, .35);
}

.products-btn:hover i {
    transform: translateX(6px);
}

.products-btn:active {
    transform: scale(.97);
}


/*==================================================
MENU BUTTON
==================================================*/

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: none;
    border: none;
    font-size: 26px;
    color: #000000;
    cursor: pointer;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.menu-toggle i {
    line-height: 1;
}


/*==================================================
CLOSE MENU
==================================================*/

.close-menu {
    display: none;
}


/*==================================================
RESPONSIVE — TABLET
==================================================*/

@media (max-width: 1100px) {
    .header-right {
        gap: 12px;
    }

    .products-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .nav-links {
        gap: 24px;
    }
}


/*==================================================
RESPONSIVE — MOBILE / TABLET NAVIGATION
==================================================*/

@media (max-width: 900px) {
    .logo,
    .header-right,
    .navbar {
        flex: initial;
    }

    .desktop-only-social {
        display: none; /* Hide social icons from top bar on mobile */
    }

    .products-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Navigation Drawer */
    .navbar {
        position: fixed;
        top: 40px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 40px);
        background: #ffffff;
        box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 35px 35px 35px;
        transition: .4s;
        box-sizing: border-box;
    }

    .navbar.active {
        right: 0;
    }

    .close-menu {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        border: none;
        background: none;
        font-size: 28px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
    }

    /* Mobile Social Icons Placement inside Drawer */
    .mobile-only-social {
        display: flex;
        margin-top: 35px;
        width: 100%;
    }

    .mobile-only-social .header-social-icons {
        gap: 12px;
    }

    .mobile-only-social .header-social-icons a {
        width: 38px;
        height: 38px;
    }
}


/*==================================================
MOBILE
==================================================*/

@media (max-width: 600px) {
    body {
        padding-top: 116px;
    }

    .announcement-bar {
        height: 36px;
    }

    .announcement-item {
        font-size: 12px;
        padding: 0 25px;
    }

    .header-container {
        width: 94%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        height: 50px;
        width: auto;
        display: block;
    }

    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        height: 100%;
        flex-shrink: 0;
    }

    .lucid-cart-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        margin: 0;
        align-self: center;
    }

    .lucid-cart-icon i {
        font-size: 16px;
    }

    .lucid-cart-count {
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 27px;
        line-height: 1;
        align-self: center;
    }

    .menu-toggle i {
        display: block;
        line-height: 1;
    }

    .navbar {
        top: 36px;
        height: calc(100vh - 36px);
        width: min(300px, 85vw);
        padding: 90px 30px;
    }
}


/*==================================================
SMALL MOBILE DEVICES
==================================================*/

@media (max-width: 400px) {
    .header-container {
        width: 92%;
    }

    .logo img {
        height: 46px;
    }

    .header-right {
        gap: 7px;
    }

    .lucid-cart-icon,
    .menu-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .lucid-cart-icon i {
        font-size: 15px;
    }

    .menu-toggle {
        font-size: 25px;
    }
}

/*=========================================
   HIDE HAMBURGER WHEN MENU IS OPEN
=========================================*/

/* Hide via JavaScript toggle state */
.menu-toggle.active {
    display: none !important;
}

/* Fallback: Hide hamburger whenever navbar has .active class */
body:has(.navbar.active) .menu-toggle {
    display: none !important;
}

/* ==========================================
   HERO SECTION STYLES
   ========================================== */
/* --- Base Hero Styles --- */
.hero {
    /* Use 100dvh for mobile address bar resilience, fall back to 100vh */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 4rem; 
    background-color: #f3f4f6; 
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent), #f3f4f6;
    overflow: hidden; 
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Left Side Content --- */
.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Forces all child elements to align to the left edge */
}

.hero-tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
    background-color: #eeedd6;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: center;
}

.hero-titlee {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: left;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* --- Auto-Typing Wrapper (Strictly Left-Aligned) --- */
.hero-typing-wrapper {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: #111827;
    margin-bottom: 2.5rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns contents to left */
    width: 100%;
    text-align: left;
}

.typing-prefix {
    color: #4f46e5;
    margin-right: 0.35rem;
}

.typed-text {
    color: #111827;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #4f46e5;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Buttons Container (Strictly Left-Aligned) --- */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start; /* Ensures buttons start at the left margin */
    align-items: center;
    width: 100%;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

/* --- Right Side Visual --- */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   HERO IMAGE SLIDESHOW
   ========================================== */

.hero-img {
    max-width: 100%;
    height: auto;
    animation: floatGlow 6s ease-in-out infinite;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


/* Image transition */

.hero-img.hero-image-changing {
    opacity: 0;
    transform: scale(0.96);
}

@keyframes floatGlow {
    0%, 100% {
        transform: scale(var(--img-scale, 1.1)) translateY(0px);
    }
    50% {
        transform: scale(var(--img-scale, 1.1)) translateY(-10px);
    }
}

:root {
    --img-scale: 1.1;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --img-scale: 1.0; 
    }

    .hero {
        padding: 4rem 1rem 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.5rem;
    }

    .hero-content {
        align-items: flex-start; /* Keeps items aligned left even on mobile screens */
        text-align: left;
    }
    
    .hero-typing-wrapper {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }
    
    .hero-actions .btn {
        flex: 0 1 auto;
    }
    
    .hero-visual {
        order: -1;
    }
}
/* ==========================================
   ABOUT US SECTION STYLES
   ========================================== */
/* --- Base Layout --- */
.about-section {
    /* Fluid section padding: scales smoothly between 4rem and 7rem */
    padding: clamp(3.5rem, 8vw, 7rem) 1.5rem;
    background-color: #ffffff;
    overflow: hidden; /* Prevents shadow or transformation blowouts */
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

/* --- Left Side: Visual Elements --- */
.about-visual {
    position: relative;
    width: 100%;
    /* Prevents CSS Grid item blowout */
    min-width: 0; 
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    /* Responsive image scaling: natural aspect ratio instead of rigid fixed height */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Keep aspect ratio taller on desktop screens for visual weight */
@media (min-width: 1025px) {
    .about-img {
        aspect-ratio: 4 / 4.5;
        max-height: 550px;
    }
}

.image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.badge-uk {
    position: absolute;
    bottom: clamp(1rem, 3vw, 2rem);
    left: clamp(1rem, 3vw, 2rem);
    background-color: #111827;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* --- Right Side: Text & Content --- */
.about-content {
    min-width: 0;
}

.about-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4f46e5;
    margin-bottom: 0.75rem;
}

.about-title {
    /* Fluid typography scaling from 1.85rem on small phones up to 2.5rem on desktop */
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: #374151;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.about-text {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* --- E-commerce Feature Cards --- */
.about-features {
    display: grid;
    /* Smart responsive grid auto-fits columns based on available space */
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2.5rem;
}

.feature-card {
    background-color: #f9fafb;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablets / Medium Displays */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 3rem;
    }

    .about-features {
        /* Force 3 columns on tablet width, collapsing to single column on mobile */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Screens */
@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr; /* Clean single column stack on mobile */
        gap: 0.875rem;
    }
}



/* ==========================================
   PURPOSE SECTION (100% Full-Width with Parallax)
   ========================================== */
/* --- Purpose Section Base --- */
.purpose-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    
    /* Solid base fallback */
    background-color: #111827; 
    
    /* Clean gradient overlay combined with background image */
    background-image: 
        linear-gradient(135deg, rgba(79, 70, 229, 0.88) 0%, rgba(17, 24, 39, 0.94) 100%), 
        url('../images/Lucid\ Global\ Ventures\ electronics.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Parallax effect enabled safely for desktop via @media hover query below */
    background-attachment: scroll; 
    background-blend-mode: overlay;
    
    position: relative;
    overflow: hidden;
}

/* Enable true parallax background ONLY on devices that fully support hover & desktop viewports */
@media (min-width: 1025px) and (hover: hover) {
    .purpose-section {
        background-attachment: fixed;
    }
}

.purpose-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem); 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch; /* Ensures columns stay equal height */
}

/* --- Shared Block Styles --- */
.purpose-block {
    background-color: #ffffff;
    /* Responsive internal card padding prevents text crowding on phones */
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    perspective: 1000px; 
    
    /* Grid item safety against layout blowouts */
    min-width: 0;
}

/* Restrict hover elevation to pointer-driven screens (prevents sticky touch states on mobile) */
@media (hover: hover) {
    .purpose-block:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
    }

    .purpose-block:hover .block-icon {
        transform: rotateY(360deg);
    }

    .purpose-block:hover .region-tags span {
        background-color: #e0e7ff;
        color: #4f46e5;
    }
}

/* --- Icons & Badges --- */
.block-icon {
    width: 48px;
    height: 48px;
    background-color: #eeedd6; 
    color: #4f46e5; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
    transform-style: preserve-3d;
}

.block-icon svg {
    width: 24px;
    height: 24px;
}

.purpose-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4f46e5;
    display: block;
    margin-bottom: 0.5rem;
}

.purpose-title {
    /* Fluid heading scaling continuously between 1.5rem and 2.25rem */
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* --- Vision Specific Elements --- */
.vision-text {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: #374151;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.region-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.region-tags span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #4b5563;
    background-color: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* --- Mission Specific Elements --- */
.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents check circle from distorting on text wrap */
    width: 22px;
    height: 22px;
    background-color: #e0e7ff;
    color: #4f46e5;
    border-radius: 50%;
    font-size: 0.7rem; 
    font-weight: 700;
    margin-top: 0.15rem;
}

.mission-list p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablets and Mobile Devices */
@media (max-width: 900px) {
    .purpose-container {
        grid-template-columns: 1fr; /* Single column stack */
    }
}



/* ==========================================
   FEATURED PRODUCTS SECTION
   ========================================== */
/* --- Products Section Base --- */
.products-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background-color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    /* Use overflow-x: clip so horizontal scroll elements don't create page scrollbars, 
       while allowing vertical hover shadows to bleed through nicely */
    overflow-x: clip; 
}

/* --- Section Header Layout --- */
.products-header {
    max-width: 1200px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    padding: 0 clamp(1.25rem, 3vw, 2rem);
    text-align: center;
}

.products-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.scroll-indicators {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

/* --- The Flex Scroll Rack --- */
.products-scroll-container {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS smooth momentum scroll */
    
    /* Padding handles container alignment + shadow protection top/bottom */
    padding: 1.5rem clamp(1.25rem, calc((100vw - 1200px) / 2 + 2rem), 3rem) 3rem;
    
    /* Native scroll snap setup */
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(1.25rem, calc((100vw - 1200px) / 2 + 2rem), 3rem);
    
    /* Firefox Scrollbars */
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

/* Custom Scrollbar for WebKit (Chrome/Safari/Edge) */
.products-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.products-scroll-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 99px;
}

.products-scroll-container::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 99px;
}

.products-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* --- Product Cards --- */
.product-card {
    /* Responsive card width: dynamic min/max scaling for small screens up to desktop */
    flex: 0 0 clamp(240px, 65vw, 280px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    
    /* Grid item protection */
    min-width: 0;
}

/* Hover elevation isolated to pointer devices */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-6px);
        border-color: #d1d5db;
        box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    }

    .product-card:hover .product-img {
        transform: scale(1.06);
    }
}

/* Transparent Image Canvas */
.product-image-wrapper {
    width: 100%;
    height: clamp(180px, 25vw, 220px);
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* --- Card Body & Info --- */
.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4f46e5;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.025rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    min-height: 2.8rem;
    
    /* Multi-line clamp standard + legacy fallbacks */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.btn-view-details {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .btn-view-details:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
        color: #111827;
    }
}

/* --- Section Footer Area --- */
.products-footer {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0 1.25rem;
}

.btn-view-more {
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #4f46e5;
    padding: 0.85rem clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.15);
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .btn-view-more:hover {
        background-color: #4338ca;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.25);
    }
}

/* Mobile full-width CTA adjustment */
@media (max-width: 480px) {
    .btn-view-more {
        width: 100%;
    }
}



/* ==========================================================
   TESTIMONIALS SECTION
   ========================================================== */

.testimonials-section {

    width: 100%;
    padding: 120px 0;

    background: #f8fafc;

    overflow: hidden;

}


/* ==========================================================
   SECTION CONTAINER
   ========================================================== */

.testimonials-section .section-container {

    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.testimonials-heading {

    max-width: 760px;

    margin-bottom: 70px;

}


.testimonials-heading .section-number {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    color: #64748b;

}


.testimonials-heading h2 {

    margin: 0;

    font-size: clamp(2.4rem, 5vw, 4.5rem);

    line-height: 1.05;

    letter-spacing: -0.04em;

    font-weight: 800;

    color: #0f172a;

}


.testimonials-heading h2 span {

    display: block;

    color: #64748b;

}


.testimonials-heading p {

    max-width: 620px;

    margin: 24px 0 0;

    font-size: 1rem;

    line-height: 1.7;

    color: #64748b;

}


/* ==========================================================
   MAIN TESTIMONIAL EXPERIENCE
   ========================================================== */

.testimonials-experience {

    position: relative;

    display: grid;

    grid-template-columns: 0.8fr 2fr auto;

    gap: 50px;

    align-items: center;

    min-height: 420px;

    padding: 55px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06);

}


/* ==========================================================
   LEFT INTRO
   ========================================================== */

.testimonial-intro {

    position: relative;

    align-self: stretch;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.testimonial-quote-mark {

    position: absolute;

    top: -10px;

    left: -5px;

    font-family: Georgia, serif;

    font-size: 7rem;

    line-height: 1;

    font-weight: 700;

    color: #e2e8f0;

    z-index: 0;

}


.testimonial-label {

    position: relative;

    z-index: 1;

    margin-bottom: 20px;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.16em;

    color: #64748b;

}


.testimonial-intro h3 {

    position: relative;

    z-index: 1;

    margin: 0;

    max-width: 270px;

    font-size: 2rem;

    line-height: 1.15;

    letter-spacing: -0.03em;

    color: #0f172a;

}


.testimonial-intro h3 span {

    display: block;

    color: #64748b;

}


/* ==========================================================
   COUNTER
   ========================================================== */

.testimonial-counter {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 35px;

    font-size: 0.85rem;

    color: #94a3b8;

}


.testimonial-counter strong {

    font-size: 1rem;

    color: #0f172a;

}


/* ==========================================================
   MAIN TESTIMONIAL
   ========================================================== */

.testimonial-main {

    min-width: 0;

    padding: 10px 0;

}


.testimonial-stars {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 25px;

    color: #f59e0b;

    font-size: 0.95rem;

}


.testimonial-main blockquote {

    margin: 0;

    max-width: 700px;

    font-size: clamp(1.35rem, 2.2vw, 2rem);

    line-height: 1.5;

    letter-spacing: -0.02em;

    font-weight: 500;

    color: #1e293b;

}


.testimonial-client {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

}


/* ==========================================================
   AVATAR
   ========================================================== */

.testimonial-avatar {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e2e8f0;

    color: #334155;

    font-size: 0.9rem;

    font-weight: 800;

    letter-spacing: 0.03em;

}


.testimonial-client strong {

    display: block;

    margin-bottom: 5px;

    font-size: 0.95rem;

    font-weight: 750;

    color: #0f172a;

}


.testimonial-client span {

    display: block;

    font-size: 0.78rem;

    color: #64748b;

}


.testimonial-dot {

    display: inline !important;

    margin: 0 3px;

}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.testimonial-navigation {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.testimonial-nav-btn {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #cbd5e1;

    border-radius: 50%;

    background: #ffffff;

    color: #0f172a;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

}


.testimonial-nav-btn:hover {

    background: #0f172a;

    color: #ffffff;

    border-color: #0f172a;

    transform: translateY(-2px);

}


.testimonial-nav-btn:active {

    transform: translateY(0);

}


.testimonial-nav-btn:focus-visible {

    outline: 3px solid rgba(15, 23, 42, 0.2);

    outline-offset: 3px;

}

/* ==========================================================
   EMPTY STATE
   ========================================================== */

.testimonials-empty {

    padding: 70px 30px;

    text-align: center;

    border: 1px dashed #cbd5e1;

    border-radius: 20px;

    background: #ffffff;

}


.testimonials-empty i {

    margin-bottom: 18px;

    font-size: 2.5rem;

    color: #94a3b8;

}


.testimonials-empty h3 {

    margin: 0 0 10px;

    font-size: 1.2rem;

    color: #0f172a;

}


.testimonials-empty p {

    margin: 0;

    color: #64748b;

}


/* ==========================================================
   TESTIMONIAL TRANSITION
   ========================================================== */

.testimonial-main.is-changing {

    animation: testimonialFade 0.35s ease;

}


@keyframes testimonialFade {

    0% {

        opacity: 0;

        transform: translateY(8px);

    }

    100% {

        opacity: 1;

        transform: translateY(0);

    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .testimonials-experience {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 40px;

    }


    .testimonial-intro {

        min-height: auto;

    }


    .testimonial-intro h3 {

        max-width: 500px;

    }


    .testimonial-counter {

        margin-top: 20px;

    }


    .testimonial-navigation {

        flex-direction: row;

        justify-content: flex-end;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .testimonials-section {

        padding: 80px 0;

    }


    .testimonials-section .section-container {

        width: min(
            100% - 30px,
            1200px
        );

    }


    .testimonials-heading {

        margin-bottom: 45px;

    }


    .testimonials-heading h2 {

        font-size: 2.5rem;

    }


    .testimonials-heading p {

        font-size: 0.92rem;

    }


    .testimonials-experience {

        padding: 30px 22px;

        border-radius: 20px;

    }


    .testimonial-quote-mark {

        font-size: 5rem;

        top: -5px;

    }


    .testimonial-intro h3 {

        font-size: 1.7rem;

    }


    .testimonial-main blockquote {

        font-size: 1.25rem;

    }


    .testimonial-client {

        margin-top: 28px;

    }


    .testimonial-avatar {

        width: 44px;

        height: 44px;

    }


    .testimonial-navigation {

        justify-content: space-between;

    }


    .testimonial-nav-btn {

        width: 46px;

        height: 46px;

    }


    .testimonial-previews {

        grid-template-columns: 1fr;

    }


    .testimonial-preview {

        min-height: 75px;

    }


    .testimonials-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 60px;

        padding-top: 35px;

    }

}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .testimonials-heading h2 {

        font-size: 2.1rem;

    }


    .testimonial-main blockquote {

        font-size: 1.15rem;

    }


    .testimonial-preview {

        padding: 15px;

    }

}

.benefit-icon {
    width: 44px;
    height: 44px;
    background-color: #eeedd6;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

/* --- Part 2: Customer Reviews Grid --- */
.reviews-grid {
    display: grid;
    /* Clean auto-fit layout scaling from 3 columns down seamlessly */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.review-card {
    background-color: #ffffff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: clamp(0.925rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 2rem;
}

/* User Identity Blocks */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #4f46e5;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0; /* Keeps avatar perfectly circular */
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
}

.reviewer-status {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
    margin-top: 0.1rem;
}

/* --- Professional Next Page Action --- */
.trust-footer-action {
    display: flex;
    justify-content: center;
    margin-top: clamp(3rem, 6vw, 5rem);
    width: 100%;
}

.next-page-link {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-label {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 700;
    color: #1d4ed8;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.next-arrow-circle {
    width: clamp(40px, 5vw, 46px);
    height: clamp(40px, 5vw, 46px);
    background-color: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.next-arrow-circle svg {
    width: clamp(18px, 2.5vw, 20px);
    height: clamp(18px, 2.5vw, 20px);
}

/* Hover Action Feedback Loops (Isolated to desktop pointers) */
@media (hover: hover) {
    .next-page-link:hover .next-label {
        color: #1e40af;
    }

    .next-page-link:hover .next-arrow-circle {
        background-color: #1d4ed8;
        transform: translateX(6px);
        box-shadow: 0 6px 14px -2px rgba(29, 78, 216, 0.45);
    }
}





/* ==========================================
   CALL TO ACTION (CTA) SECTION (100% Full-Width)
   ========================================== */
/* --- Base Call to Action (CTA) Section --- */
.cta-section {
    /* Fluid vertical padding scaling smoothly from 4rem on mobile to 8rem on desktop */
    padding: clamp(4rem, 8vw, 8rem) 0;
    
    /* Background Image Setup */
    background-color: #4f46e5;
    background-image: linear-gradient(135deg, rgba(79, 70, 229, 0.92) 0%, rgba(55, 48, 163, 0.95) 100%), 
                      url('../images/Lucid\ Global\ Ventures\ electronics.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;

    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    /* Strict containment prevents ambient glow from creating horizontal scrollbars */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.05);
}

/* Enable parallax fixed background ONLY on desktop devices that support hover */
@media (hover: hover) and (pointer: fine) {
    .cta-section {
        background-attachment: fixed;
    }
}

/* Accent Glow Overlay */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    /* Fluid sizing prevents viewport clipping on small displays */
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Container & Layout Alignment --- */
.cta-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

/* --- Content Typography --- */
.cta-content {
    flex: 1;
    max-width: 650px;
}

.cta-title {
    /* Fluid heading size: 1.85rem on mobile up to 2.5rem on desktop */
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    /* Fluid description text */
    font-size: clamp(0.975rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: #e0e7ff;
}

/* --- Action Buttons --- */
.cta-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-shrink: 0;
}

/* Shared Button Base */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.95rem 2rem;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    white-space: nowrap;
    min-height: 48px; /* Touch target safety standard */
}

/* Primary Accent */
.btn-cta-primary {
    background-color: #ffffff;
    color: #4f46e5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Secondary Ghost Accent */
.btn-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

/* Desktop Hover Effects (Isolated from touch devices) */
@media (hover: hover) {
    .btn-cta-primary:hover {
        background-color: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .btn-cta-secondary:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: #ffffff;
        transform: translateY(-2px);
    }
}

/* ==========================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ========================================== */

/* Mobile Stack Behavior (768px and below) */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .btn-cta {
        width: 100%; /* Stretch buttons to full width on mobile for easy thumb interaction */
    }
}

/* ==========================================
   REIMAGINED RESPONSIVE FOOTER SYSTEM
   ========================================== */
/* --- Base Main Footer --- */
/* ==========================================
   MAIN FOOTER CONTAINER & COOKIE STRIP
   ========================================== */

.main-footer {
    background-color: #1e1b4b;
    font-family: system-ui, -apple-system, sans-serif;
    color: #cbd5e1;
    overflow: hidden; /* Guards against horizontal scroll leakage */
}

/* Part 1: Cookie Strip */
.cookie-banner-strip {
    background-color: #ff8a5b;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    text-align: center;
}

.cookie-banner-strip p {
    margin: 0;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
}

.cookie-banner-strip a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .cookie-banner-strip a:hover {
        opacity: 0.85;
    }
}

/* ==========================================
   PART 2: FOOTER GRID & TYPOGRAPHY
   ========================================== */

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    align-items: start; /* Prevents columns from stretching content vertically */
}

.footer-column {
    min-width: 0; /* Prevents grid children from causing horizontal scroll */
}

/* Headers & Branding */
.footer-column h3.footer-title {
    color: #ff8a5b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand-column .footer-logo {
    display: inline-block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.brand-column .footer-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.social-icons a {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    transition: color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .social-icons a:hover {
        color: #ff8a5b;
        transform: translateY(-2px);
    }
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

@media (hover: hover) {
    .footer-links a:hover {
        color: #ffffff;
        padding-left: 4px;
    }
}

/* ==========================================
   NEWSLETTER FORM COMPONENT
   ========================================== */

.newsletter-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    height: 48px; /* Fixed height stops vertical stretching */
    padding: 0 1rem;
    border-radius: 8px;
    border: 1px solid #334155;
    background-color: #0f172a;
    color: #ffffff;
    font-size: 1rem; /* Prevents auto-zoom on iOS Safari */
    outline: none;
    min-width: 0;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #ff8a5b;
}

.newsletter-form button {
    height: 48px; /* Matches input height */
    background-color: #ff8a5b;
    color: #ffffff;
    border: none;
    padding: 0 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .newsletter-form button:hover {
        background-color: #e27245;
    }
}

/* ==========================================
   PART 3: COMPLIANCE & COPYRIGHT STRIP
   ========================================== */

.footer-bottom {
    border-top: 1px solid #2e2a75;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (hover: hover) {
    .footer-bottom-links a:hover {
        color: #cbd5e1;
    }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Desktop Grid Proportions */
@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    }
}

/* Tablet Screens (2 Columns) */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

/* Mobile Devices (1 Column Stack) */
/* Mobile Devices (1 Column Stack) */
@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        min-height: 52px; /* Generous touch target height for mobile */
        height: auto;
        padding: 0.85rem 1.25rem; /* Expands placeholder and input area */
        font-size: 1rem;
        box-sizing: border-box;
    }

    .newsletter-form button {
        width: 100%;
        min-height: 52px; /* Matches input height for consistency */
        height: auto;
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem 1.5rem;
    }
}

/* ==========================================
   NEWSLETTER INPUT WRAPPER
========================================== */

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}


/* Make input fill wrapper */

.newsletter-input-wrapper input[type="email"] {
    width: 100%;
}


/* ==========================================
   NEWSLETTER SUCCESS / ERROR MESSAGE
========================================== */

.newsletter-message {
    margin-top: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


/* Success */

.success-message {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}


/* Error */

.error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}


/* Message disappearing */

.hide-message {
    opacity: 0;
    transform: translateY(-10px);
}


/* ==========================================
   LUCID GLOBAL ELECTRONICS - ABOUT HERO
   ========================================== */
/* --- Base About Hero Section --- */
.about-hero {
    /* Fluid vertical padding scaling from 4rem on mobile to 8rem on desktop */
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(3.5rem, 6vw, 6rem) 0;
    background-color: #fafafa;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    /* Strict containment prevents ambient glow from triggering horizontal scrollbars */
    overflow: hidden;
}

/* Structural Grid Alignment Wrapper */
.about-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

/* Background Ambient Blur Ring */
.about-hero::before {
    content: '';
    position: absolute;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 75%);
    top: -10%;
    left: -10%;
    z-index: 0;
    pointer-events: none;
}

/* --- Left Column Elements --- */
.about-hero-content {
    position: relative;
    z-index: 2;
    min-width: 0; /* Prevents grid item overflow */
}

.about-badge {
    display: inline-block;
    background-color: #eeedd6;
    color: #4338ca;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-title {
    /* Fluid typography scaling smoothly from 2.15rem up to 3.25rem */
    font-size: clamp(2.15rem, 5vw, 3.25rem);
    font-weight: 850;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
}

.about-subtitle {
    font-size: clamp(0.975rem, 1.5vw, 1.1rem);
    line-height: 1.65;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* Internal Metric Highlight Blocks */
.about-highlights {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    flex-wrap: wrap;
}

/* Hero Interaction Buttons */
.about-hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95rem 2.25rem;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 48px; /* Standard mobile touch target height */
}

.btn-about-primary {
    background-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 4px 12px -2px rgba(79, 70, 229, 0.25);
}

.btn-about-secondary {
    background-color: #ffffff;
    color: #334155;
    border: 1px solid #d8e2ef;
}

/* Hover effects isolated to mouse inputs */
@media (hover: hover) {
    .btn-about-primary:hover {
        background-color: #4338ca;
        transform: translateY(-2px);
        box-shadow: 0 12px 20px -4px rgba(79, 70, 229, 0.35);
    }

    .btn-about-secondary:hover {
        background-color: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-2px);
    }
}

/* --- Right Column Showcase Graphics --- */
.about-hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.graphic-backdrop-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ff8a5b;
    border-radius: 24px;
    transform: rotate(4deg) scale(0.98);
    z-index: 0;
    opacity: 0.9;
}

.main-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-display-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (hover: hover) {
    .about-hero-graphic:hover .main-image-frame {
        transform: scale(1.02) rotate(-1deg);
    }
}

/* Floating Social Badge System */
.floating-social-badge {
    position: absolute;
    bottom: -1rem;
    left: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    max-width: calc(100% - 2rem);
}

@media (min-width: 1025px) {
    .floating-social-badge {
        bottom: -1.5rem;
        left: -1.5rem;
        padding: 1rem 1.5rem;
    }
}

.badge-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge-icons {
    display: flex;
    gap: 1.15rem;
    align-items: center;
}

.badge-icons a {
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    transition: color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
    .badge-icons a:hover {
        color: #4f46e5;
        transform: scale(1.15);
    }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet Viewports (1024px and below) */
@media (max-width: 1024px) {
    .about-hero-container {
        gap: 3rem;
    }
}

/* Mobile Viewports (768px and below) */
@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .about-hero-graphic {
        order: -1; /* Graphic displays first on mobile screens */
        max-width: 480px;
        margin: 0 auto;
    }

    .about-highlights {
        justify-content: center;
    }

    .about-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .btn-about {
        width: 100%;
    }

    .floating-social-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -1.25rem;
    }
}



/* ==================================================
   STORE SECTION BASE
================================================== */
/* ==================================================
   STORE SECTION BASE
================================================== */

.lucid-store-section {
    width: 100%;
    padding: clamp(30px, 5vw, 60px) 5%;
    background-color: #fcfcfc;
    box-sizing: border-box;
}

/* Store Centered Header */
.lucid-store-header {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 50px);
}

.lucid-store-title {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    color: #222222;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.lucid-store-title-underline {
    width: 60px;
    height: 4px;
    background: #FF9800;
    margin: 0 auto;
    border-radius: 2px;
}

/* ==================================================
   PRODUCT GRID (Fluid Auto-Fit Layout)
================================================== */

.lucid-store-grid {
    display: grid;
    /* Responsive auto-fit grid smoothly transitions without rigid breakpoints */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ==================================================
   PRODUCT CARD DESIGN
================================================== */

.lucid-store-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Apply hover mechanics exclusively on non-touch pointer devices */
@media (hover: hover) {
    .lucid-store-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .lucid-store-card:hover .lucid-store-img {
        transform: scale(1.05);
    }

    .lucid-store-btn:hover {
        background: #FF9800;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    }
}

/* Card Image Wrapper */
.lucid-store-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Retains clean 1:1 image square aspect */
    background-color: #f7f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}

.lucid-store-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Card Information Block */
.lucid-store-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lucid-store-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #FF9800;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.lucid-store-name {
    font-size: 1rem;
    color: #222222;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
    /* Standards-compliant multi-line truncation */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

/* Stars Rating */
.lucid-store-rating {
    font-size: 0.85rem;
    color: #FFB300;
    margin-bottom: 12px;
}

.lucid-store-rating .rating-num {
    color: #777;
    font-weight: 500;
    margin-left: 4px;
}

/* ==================================================
   PRODUCT PRICING
================================================== */

.lucid-store-price {
    margin: auto 0 18px 0; /* Pushes content down cleanly without forced gaps */
    padding-top: 10px;
}

.lucid-original-price {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 3px;
}

.lucid-original-price del {
    text-decoration: line-through;
}

.lucid-selling-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.lucid-discount-badge {
    display: inline-block;
    margin-top: 7px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Action Button */
.lucid-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px; /* Accessible standard touch-target size */
    padding: 10px 16px;
    background: #222222;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Active tap feedback state for touchscreens */
.lucid-store-btn:active {
    background: #FF9800;
    transform: scale(0.98);
}

/* ==================================================
   RESPONSIVE BREAKPOINTS
================================================== */

@media (max-width: 1100px) {
    .lucid-store-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lucid-store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lucid-store-section {
        padding: 40px 16px;
    }

    .lucid-store-info {
        padding: 15px;
    }

    .lucid-store-name {
        font-size: 0.925rem;
    }
}

@media (max-width: 480px) {
    .lucid-store-grid {
        /* Options: Set '1fr' for single full-width cards or 'repeat(2, 1fr)' for compact dual grid */
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .lucid-selling-price {
        font-size: 1.25rem;
    }
}


/* ==================================================
   HERO SECTION
================================================== */
.lucid-contact-hero {
    /* Linear gradient overlay with background image fallback */
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(37, 37, 37, 0.9) 100%), 
                url('../images/contacthero.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    color: #ffffff;
    /* Fluid padding dynamically scales down on smaller screens */
    padding: clamp(80px, 12vw, 140px) 20px clamp(70px, 10vw, 100px) 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Uses dynamic viewport height (svh) to prevent mobile browser address bar clipping */
    min-height: clamp(450px, 60svh, 700px);
    box-sizing: border-box;
    width: 100%;
}

.lucid-hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.lucid-contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.lucid-contact-hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: #e0e0e0;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.lucid-hero-line {
    width: 60px;
    height: 4px;
    background-color: #0066cc; /* Lucid Identity Color */
    margin: 20px auto 30px auto;
    border-radius: 2px;
}

/* ==================================================
   SUCCESS ALERT BANNER
================================================== */
.lucid-success-message {
    background: #dcfce7;
    color: #166534;
    padding: 16px;
    border-radius: 10px;
    margin: 0 auto 25px auto;
    border-left: 5px solid #22c55e;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    text-align: left;
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
}

/* ==================================================
   HERO ACTION BUTTON
================================================== */
.lucid-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    min-height: 48px; /* Accessible standard touch-target height */
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #0066cc;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    box-sizing: border-box;
}

/* Isolate hover effects strictly for devices with cursor pointers */
@media (hover: hover) {
    .lucid-hero-btn:hover {
        background-color: #0052a3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.45);
    }

    .lucid-scroll-indicator a:hover {
        color: #0066cc;
    }
}

.lucid-hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

/* ==================================================
   ANIMATED SCROLL DOWN INDICATOR
================================================== */
.lucid-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.lucid-scroll-indicator a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    animation: lucidBounce 2s infinite;
}

/* Respect user accessibility motion settings */
@media (prefers-reduced-motion: reduce) {
    .lucid-scroll-indicator a {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Fluid Keyframe Engine for Bouncing motion */
@keyframes lucidBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==================================================
   RESPONSIVE MEDIA QUERIES
================================================== */

/* Mobile & Short Screen Viewports (768px and below) */
@media (max-width: 768px) {
    .lucid-hero-btn {
        width: 100%;
        max-width: 320px; /* Full width button on smaller screens */
    }

    .lucid-hero-line {
        margin: 15px auto 20px auto;
    }
}

/* Landscape orientation guard for mobile devices */
@media (max-height: 550px) and (orientation: landscape) {
    .lucid-contact-hero {
        padding: 60px 20px 60px 20px;
        min-height: auto; /* Allow natural flow without fixed height clipping */
    }

    .lucid-scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 25px;
    }
}


/* ==================================================
   CONTACT BODY WRAPPER & BACKGROUND
================================================== */
.lucid-contact-body-wrapper {
    /* Gradient overlay with responsive background image */
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.75) 0%, rgba(25, 25, 25, 0.85) 100%), 
                url('../images/Headphones.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll; /* Default scroll prevents mobile stutter */
    padding: clamp(35px, 6vw, 60px) clamp(16px, 5vw, 5%);
    min-height: 80vh;
    box-sizing: border-box;
    width: 100%;
}

/* Enable fixed attachment exclusively on desktop pointers */
@media (min-width: 1025px) and (hover: hover) {
    .lucid-contact-body-wrapper {
        background-attachment: fixed;
    }
}

/* ==================================================
   MAIN GRID CONTAINER
================================================== */
.lucid-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* ==================================================
   LEFT COLUMN: CONTACT INFO PANEL
================================================== */
.lucid-contact-info-panel {
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

.lucid-contact-info-panel h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.25;
}

.lucid-info-subtitle {
    color: #cccccc;
    line-height: 1.65;
    margin-bottom: clamp(25px, 4vw, 40px);
    font-size: clamp(0.925rem, 1.2vw, 1rem);
}

/* Info Cards Stack */
.lucid-info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.lucid-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(16px, 3vw, 22px) clamp(16px, 3vw, 25px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
    width: 100%;
}

.lucid-info-card.align-start {
    align-items: flex-start;
}

.lucid-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 102, 204, 0.15);
    color: #3399ff; /* Adjusted contrast for dark backgrounds */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lucid-card-text {
    min-width: 0; /* Prevents long emails/URLs from breaking layout */
    flex-grow: 1;
}

.lucid-card-text h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.lucid-card-text p {
    margin: 0;
    color: #dddddd;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word; /* Safe word wrap for links */
}

.lucid-card-text p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Hours List Structure */
.lucid-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.lucid-hours-list li {
    font-size: 0.925rem;
    color: #dddddd;
    display: flex;
    gap: 12px;
}

.lucid-hours-list li span:first-child {
    font-weight: 600;
    color: #ffffff;
    min-width: 110px;
}

.lucid-hours-list li.closed span:last-child {
    color: #ff5555;
    font-weight: 600;
}

/* ==================================================
   RIGHT COLUMN: CONTACT FORM PANEL
================================================== */
.lucid-contact-form-panel {
    background-color: #ffffff;
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(24px, 5vw, 40px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    width: 100%;
}

.lucid-form-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.lucid-form-logo {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lucid-form-notice {
    background-color: rgba(0, 102, 204, 0.06);
    border-left: 4px solid #0066cc;
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
}

.lucid-form-notice p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #0044aa;
    font-weight: 500;
}

/* Form Controls & Inputs */
.lucid-actual-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lucid-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.lucid-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
}

.lucid-form-group input,
.lucid-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    font-family: inherit;
    /* Font size MUST be at least 16px (1rem) on mobile to prevent iOS Safari auto-zoom */
    font-size: 1rem;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
    min-height: 48px; /* Standard mobile touch-target height */
}

.lucid-form-group input:focus,
.lucid-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.lucid-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Action Button */
.lucid-form-submit-btn {
    width: 100%;
    min-height: 50px; /* Touch target baseline */
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #222222;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover effects isolated to mouse devices */
@media (hover: hover) {
    .lucid-card-text p a:hover {
        color: #3399ff;
    }

    .lucid-form-submit-btn:hover {
        background-color: #0066cc;
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
        transform: translateY(-2px);
    }
}

.lucid-form-submit-btn:active {
    transform: translateY(0);
    background-color: #0052a3;
}

/* ==================================================
   RESPONSIVE DESIGN BREAKPOINTS
================================================== */
@media (max-width: 992px) {
    .lucid-contact-container {
        grid-template-columns: 1fr; /* Single column stack */
        gap: 35px;
    }

    .lucid-contact-info-panel {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .lucid-hours-list li {
        flex-direction: column;
        gap: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 8px;
    }

    .lucid-hours-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .lucid-hours-list li span:first-child {
        min-width: auto;
    }
}

/* ==================================================
   CONTACT FORM SUCCESS / ERROR MESSAGE
================================================== */

.lucid-contact-message {
    width: 100%;
    margin-top: 20px;
    padding: 15px 18px;

    border-radius: 10px;
    box-sizing: border-box;

    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Success Message */

.lucid-success-message {
    background-color: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}


/* Error Message */

.lucid-error-message {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}


/* Fade Out Animation */

.lucid-contact-message.hide-message {
    opacity: 0; 
    transform: translateY(-10px); 
}


/* ==================================================
   LUCID FAQ SECTION
================================================== */
.lucid-faq-section {
    background-color: #ffffff;
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    width: 100%;
}

.lucid-faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.lucid-faq-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
}

.lucid-faq-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #222222;
    margin: 0 0 12px 0;
    font-weight: 800;
    line-height: 1.25;
}

.lucid-faq-header p {
    color: #666666; 
    font-size: clamp(0.925rem, 1.5vw, 1rem);
    margin: 0;
    line-height: 1.5; 
}

.lucid-faq-line {
    width: 50px;
    height: 3px;
    background-color: #0066cc;
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* Accordion Component Stack */
.lucid-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.lucid-faq-item {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.lucid-faq-item[open] {
    background-color: #ffffff;
    border-color: rgba(0, 102, 204, 0.25);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.06);
}

.lucid-faq-question {
    list-style: none; /* Standard removal */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: clamp(14px, 3vw, 20px) clamp(16px, 4vw, 24px);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    user-select: none;
    min-height: 48px; /* Touch target baseline */
    box-sizing: border-box;
    transition: color 0.2s ease;
}

/* Chrome / Safari disclosure marker wipeout */
.lucid-faq-question::-webkit-details-marker,
.lucid-faq-question::marker {
    display: none;
    content: "";
}

.lucid-faq-icon {
    font-size: 0.9rem;
    color: #777777;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lucid-faq-item[open] .lucid-faq-icon {
    transform: rotate(180deg);
    color: #0066cc;
}

.lucid-faq-answer {
    padding: 0 clamp(16px, 4vw, 24px) clamp(16px, 3vw, 20px) clamp(16px, 4vw, 24px);
    border-top: 1px solid transparent;
    box-sizing: border-box;
    word-break: break-word; /* Safe containment for unexpected long strings */
}

.lucid-faq-item[open] .lucid-faq-answer {
    border-top-color: #f0f0f0;
}

.lucid-faq-answer p {
    margin: 14px 0 0 0;
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    color: #555555;
    line-height: 1.65;
}

/* ==================================================
   ENQUIRY BANNER SECTION
================================================== */

.enquiry-banner-section {
    width: 100%;
    max-width: 1300px;
    margin: clamp(30px, 5vw, 40px) auto clamp(40px, 6vw, 60px) auto;
    padding: 0 clamp(16px, 5vw, 5%);
    box-sizing: border-box;
}

.enquiry-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #3e2e7d;
    color: #ffffff;
    text-decoration: none;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 32px);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(62, 46, 125, 0.15);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    box-sizing: border-box;
}

.enquiry-content {
    flex-grow: 1;
    min-width: 0; /* Prevents text overflow breaking parent flex layout */
}

.enquiry-text {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    margin: 0;
}

/* Arrow Styling & Animation */
.enquiry-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.enquiry-arrow-icon {
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
    stroke: #ffffff;
}

/* Mouse Hover States (Excluded on Mobile Touchscreens) */
@media (hover: hover) {
    .lucid-faq-question:hover {
        color: #0066cc;
    }

    .enquiry-banner:hover {
        background-color: #2e2063; /* Refined hover shade matching original purple brand tint */
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(62, 46, 125, 0.25);
    }

    .enquiry-banner:hover .enquiry-arrow-wrapper {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(6px);
    }
}

/* Touch active state feedback */
.enquiry-banner:active {
    transform: translateY(0);
}




/* ==================================================
   ENQUIRY PAGE WRAPPER & LAYOUT CONTAINMENT
================================================== */
.enquiry-page-section {
    width: 100%;
    /* 100dvh prevents dynamic browser bar jumping on mobile screens */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 20px);
    box-sizing: border-box;
}

.enquiry-card {
    background: #ffffff;
    width: 100%;
    max-width: 750px;
    border-radius: clamp(16px, 3vw, 20px);
    padding: clamp(24px, 5vw, 45px) clamp(20px, 5vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* ==================================================
   HEADER ELEMENTS
================================================== */
.enquiry-header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 35px);
}

.enquiry-badge {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.1);
    color: #414d77;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.enquiry-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #111111;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.enquiry-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    color: #666666;
    margin: 0;
    line-height: 1.55;
}

/* ==================================================
   FORM CONTROLS & INPUT GRID
================================================== */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0; /* Prevents text overflow breaking multi-column layout */
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #2e7d32;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    /* Font size MUST be at least 16px (1rem) to block mobile iOS Safari auto-zoom */
    font-size: 1rem;
    color: #222222;
    background-color: #fcfcfc;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
    min-height: 48px; /* Accessible minimum touch target for mobile */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================================================
   ACTION BUTTONS & ACCESSIBILITY
================================================== */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 16px;
    width: 100%;
}

.btn-submit-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4b5683;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 48px; /* Touch target baseline */
    box-sizing: border-box;
}

.send-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-back-store {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* Touch padding */
}

/* Mouse Hover States (Isolated from Mobile Touch Events) */
@media (hover: hover) {
    .btn-submit-enquiry:hover {
        background-color: #1b5e20;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(46, 125, 50, 0.25);
    }

    .btn-back-store:hover {
        color: #222222;
    }
}

.btn-submit-enquiry:active {
    transform: translateY(0);
}

/* ==================================================
   RESPONSIVE DESIGN BREAKPOINTS
================================================== */
@media (max-width: 640px) {
    .enquiry-page-section {
        align-items: flex-start; /* Prevents top/bottom off-screen clipping when mobile keyboard opens */
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .btn-submit-enquiry {
        width: 100%;
    }

    .btn-back-store {
        text-align: center;
        width: 100%;
    }
}


/* ==================================================
   ENQUIRY SUCCESS / ERROR MESSAGE
================================================== */

.enquiry-message {
    width: 100%;
    margin-top: 20px;
    padding: 15px 18px;
    border-radius: 10px;
    box-sizing: border-box;

    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* Success */
.enquiry-message.success-message {
    background-color: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}

/* Error */
.enquiry-message.error-message {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Hide animation */
.enquiry-message.hide-message {
    opacity: 0;
    transform: translateY(-10px);
}

/* ==================================================
   LOGO & HEADER UTILITIES
================================================== */
.enquiry-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.enquiry-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.enquiry-header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 35px);
    width: 100%;
}

/* Smooth scrolling for anchor clicks */
html {
    scroll-behavior: smooth;
}

/* Enable motion reduction for accessibility preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .bouncing-arrow,
    .whatsapp-float::before {
        animation: none !important;
    }
    
    .hero-scroll-indicator,
    .whatsapp-float,
    .enquiry-hero-section {
        transition: none !important;
    }
}

/* ==================================================
   ENQUIRY HERO SECTION
================================================== */
.enquiry-hero-section {
    position: relative;
    width: 100%;
    /* Dynamic viewport height handles browser bar movement on mobile */
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(60px, 8vw, 90px) clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/22.jpg') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay for text contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.hero-badge {
    background-color: rgba(46, 125, 50, 0.9) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: clamp(16px, 3vw, 24px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 clamp(12px, 2vw, 18px) 0;
    letter-spacing: -0.5px;
    color: #ffffff !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
    word-break: break-word; /* Prevents overflow on ultra-narrow phones */
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: #f1f5f9 !important;
    margin: 0 0 clamp(24px, 4vw, 35px) 0;
    line-height: 1.6;
    max-width: 660px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    text-align: center;
}

.hero-scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: color 0.25s ease, transform 0.25s ease;
    padding: 8px; /* Expand touch target */
    min-height: 44px;
}

.bouncing-arrow {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    animation: bounce 2s infinite;
    flex-shrink: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ==================================================
   FLOATING WHATSAPP ACTION BUTTON
================================================== */
.whatsapp-float {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Pulse Animation Ring */
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Desktop Hover States Only */
@media (hover: hover) {
    .hero-scroll-indicator:hover {
        color: #81c784 !important;
        transform: translateY(2px);
    }

    .whatsapp-float:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        background-color: #20ba5a;
    }
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* ==================================================
   RESPONSIVE DESIGN BREAKPOINTS
================================================== */
@media (max-width: 768px) {
    .enquiry-hero-section {
        min-height: 550px; /* Reliable pixel height fallback on mobile */
        min-height: 60dvh;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }
}




/* ==================================================
   PRODUCT DETAILS MAIN SECTION
================================================== */

/* ==================================================
   PRODUCT DETAILS MAIN SECTION
================================================== */

.product-details {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(16px, 4vw, 60px) clamp(16px, 4vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}


/* ==================================================
   PRODUCT IMAGE CONTAINER
================================================== */

.product-image {
    width: 100%;
    position: sticky;
    top: 120px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 2vw, 20px);
    padding: clamp(12px, 3vw, 24px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.product-image img {
    width: 100%;
    height: auto;
    max-height: clamp(280px, 45vh, 500px);
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}


@media (hover: hover) {

    .product-image:hover img {
        transform: scale(1.04);
    }

}


/* ==================================================
   PRODUCT INFORMATION COLUMN
================================================== */

.product-information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}


/* ==================================================
   CATEGORY TAG
================================================== */

.product-information .category {
    display: inline-block;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(74, 222, 128, 0.25);
}


/* ==================================================
   PRODUCT TITLE
================================================== */

.product-information h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    word-break: break-word;
}


/* ==================================================
   RATING STARS & VALUE
================================================== */

.product-information .rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #f59e0b;
    margin-bottom: 20px;
}


.product-information .rating span {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    color: #94a3b8;
    margin-left: 4px;
}


/* ==================================================
   PRICE SECTION & BADGES
================================================== */

.product-price-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}


.product-original-price del {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #94a3b8;
    font-weight: 500;
}


.product-selling-price {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}


.product-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
}


/* ==================================================
   PRODUCT DESCRIPTION
================================================== */

.product-information .product-description {
    display: block;
    width: 100%;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.65;

    /* FORCE DESCRIPTION TO BLACK */
    color: #000000 !important;

    margin: 0 0 20px 0;
    padding: 0;
    word-break: break-word;
    font-weight: 500;
}





/* ==================================================
   AVAILABILITY
================================================== */

.product-information .product-availability {
    font-size: clamp(0.88rem, 1.4vw, 0.95rem);
    line-height: 1.5;
    color: #4ade80;
    margin: 0 0 28px 0;
    font-weight: 500;
}


.product-information .product-availability strong {
    color: #000000;
    font-weight: 700;
}


/* ==================================================
   ADD TO CART BUTTON
================================================== */

.add-cart-btn {
    width: 100%;
    max-width: 380px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #3535a7;
    color: #ffffff;
    border: none;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 32px);
    border-radius: 50px;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(53, 53, 167, 0.35);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    box-sizing: border-box;
}


@media (hover: hover) {

    .add-cart-btn:hover {
        background-color: #2b2b88;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(53, 53, 167, 0.45);
    }

}


.add-cart-btn:active {
    transform: scale(0.98);
}


/* ==================================================
   RESPONSIVE BREAKPOINTS
================================================== */

@media (max-width: 900px) {

    .product-details {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-image {
        position: static;
        max-width: 100%;
        margin: 0 auto;
    }

    .add-cart-btn {
        max-width: 100%;
    }

}


/* ==================================================
   SMALL SMARTPHONE
================================================== */

@media (max-width: 480px) {

    .product-price-section {
        gap: 8px 12px;
    }

    .product-discount-badge {
        font-size: 0.78rem;
        padding: 3px 8px;
    }

}


/* ==================================================
   EXTRA SMALL DEVICES
================================================== */

@media (max-width: 360px) {

    .product-details {
        padding-left: 12px;
        padding-right: 12px;
    }

    .add-cart-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

}


.product-details .product-information .product-description,
.product-details .product-information .product-description *,
.product-details .product-information .product-description span,
.product-details .product-information .product-description p,
.product-details .product-information .product-description strong,
.product-details .product-information .product-description em,
.product-details .product-information .product-description a {
    color: #000000 !important;
}


/* ==========================================
   TRUST SECTION STYLES
   ========================================== */

/* Main Section Wrapper */
.trust-section {
  padding: 4rem 1.5rem;
  background-color: #f8fafc; /* Light modern background */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
}

/* Container Limit & Center */
.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2563eb; /* Primary accent color */
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Responsive Grid Layout */
.benefits-grid {
  display: grid;
  /* Automatically wraps cards based on available width: 
     1 column on small screens, 2 on tablets, 4 on desktop */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Individual Benefit Card */
.benefit-card {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle Hover Effect */
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

/* Icon Container */
.benefit-icon {
  width: 56px;
  height: 56px;
  background-color: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

/* Typography inside Cards */
.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Footer CTA Link Container */
.trust-footer-action {
  margin-top: 3.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Next Page CTA Button */
.next-page-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background-color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px; /* Pill shape */
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.next-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

/* Circle around arrow icon */
.next-arrow-circle {
  width: 32px;
  height: 32px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.next-arrow-circle svg {
  width: 16px;
  height: 16px;
}

/* Hover Interactivity for CTA */
.next-page-link:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.next-page-link:hover .next-arrow-circle {
  transform: translateX(4px); /* Moves arrow slightly right on hover */
}

/* ==========================================
   MOBILE & TABLET ADJUSTMENTS
   ========================================== */
@media (max-width: 640px) {
  .trust-section {
    padding: 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 2rem;
  }

  .benefits-grid {
    gap: 1.25rem;
  }

  .benefit-card {
    padding: 1.5rem 1rem;
  }
}

/* =========================================
   POSTCODE LOOKUP
========================================= */

.postcode-wrapper {
    position: relative;
    width: 100%;
}

#postcode {
    width: 100%;
    box-sizing: border-box;
}

#postcode-status {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    min-height: 20px;
}


/* Loading */

.postcode-loading {
    color: #666;
}


/* Success */

.postcode-success {
    color: #198754;
}


/* Error */

.postcode-error {
    color: #dc3545;
}


/* Help text */

.postcode-help {
    display: block;
    margin-top: 6px;
    color: #777;
    font-size: 0.8rem;
    line-height: 1.5;
}