/********** Cattnos Kids Zone - Premium Redesign Stylesheet **********/

:root {
    /* Brand Colors */
    --brand-blue: #374863;
    --brand-coral: #D3614E;
    --brand-mint: #CDF1D4;
    --brand-white: #FDFEFF;
    
    /* Hover/Accent States */
    --brand-blue-hover: #263246;
    --brand-coral-hover: #b84e3a;
    --brand-mint-dark: #b5e4be;
    
    /* Neutrals and Grid Elements */
    --neutral-light: #F4F7F6;
    --neutral-grey: #6E7E91;
    --text-color: #2D394C;
    --border-color: rgba(55, 72, 99, 0.12);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'DM Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-hover: all 0.3s ease;
}

/* ============================================================
   RESET AND BASE STYLES
   ============================================================ */
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--brand-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--brand-blue);
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-grey);
}

a {
    color: var(--brand-coral);
    text-decoration: none;
    transition: var(--transition-hover);
}

a:hover {
    color: var(--brand-coral-hover);
}

.section-block {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    position: relative;
}

/* Rounded Corners & Shadows */
.img-premium {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(55, 72, 99, 0.08);
    transition: var(--transition-smooth);
}

.img-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(55, 72, 99, 0.15);
}

/* ============================================================
   SPINNER STYLING
   ============================================================ */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-logo {
    width: 80px;
    height: auto;
    border-radius: 12px;
}

/* ============================================================
   PREMIUM STICKY HEADER
   ============================================================ */
.site-header {
    background-color: var(--brand-blue) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: var(--brand-white) !important;
    box-shadow: 0 10px 30px rgba(55, 72, 99, 0.05);
    border-bottom: 1px solid rgba(55, 72, 99, 0.06);
    padding: 0.5rem 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .brand-logo-img {
    height: 44px;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(253, 254, 255, 0.85);
    padding: 0.5rem 0.2rem;
    position: relative;
    transition: var(--transition-hover);
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-coral);
    transition: var(--transition-hover);
}

.header-link:hover {
    color: var(--brand-white);
}

.header-link:hover::after {
    width: 100%;
}

/* Header Scrolled Link Colors */
.site-header.scrolled .header-link {
    color: var(--brand-blue);
}

.site-header.scrolled .header-link:hover {
    color: var(--brand-coral);
}

/* CTA Header Button */
.header-cta {
    background-color: transparent;
    border: 2px solid var(--brand-white);
    color: var(--brand-white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.header-cta:hover {
    background-color: var(--brand-white);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.site-header.scrolled .header-cta {
    background-color: var(--brand-coral);
    border-color: var(--brand-coral);
    color: var(--brand-white);
}

.site-header.scrolled .header-cta:hover {
    background-color: var(--brand-coral-hover);
    border-color: var(--brand-coral-hover);
    transform: translateY(-2px);
}

/* Hamburger toggle styling */
.menu-toggle {
    background: transparent;
    border: none;
    color: var(--brand-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    transition: var(--transition-hover);
}

.site-header.scrolled .menu-toggle {
    color: var(--brand-blue);
}

/* ============================================================
   ANTIGRAVITY VISUAL LANGUAGE - DECORATIVE ANIMATED ELEMENTS
   ============================================================ */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-slow {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

.shape-mint-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--brand-mint);
    opacity: 0.7;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.shape-coral-blob {
    position: absolute;
    width: 180px;
    height: 160px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background-color: var(--brand-coral);
    opacity: 0.12;
    z-index: 1;
    animation: float-reverse 10s ease-in-out infinite;
    pointer-events: none;
}

.shape-star {
    position: absolute;
    color: var(--brand-coral);
    opacity: 0.6;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 2;
}

.shape-star.mint {
    color: var(--brand-mint-dark);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .shape-mint-circle, .shape-coral-blob, .shape-star, .img-premium, .hero-caption-inner * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================
   BUTTON STYLES
   ============================================================ */
.btn-brand-coral {
    background-color: var(--brand-coral);
    color: var(--brand-white);
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(211, 97, 78, 0.3);
    transition: var(--transition-smooth);
}

.btn-brand-coral:hover {
    background-color: var(--brand-coral-hover);
    color: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 97, 78, 0.4);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--brand-white);
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: 2px solid rgba(253, 254, 255, 0.5);
    transition: var(--transition-smooth);
}

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

.btn-brand-blue {
    background-color: var(--brand-blue);
    color: var(--brand-white);
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(55, 72, 99, 0.2);
    transition: var(--transition-smooth);
}

.btn-brand-blue:hover {
    background-color: var(--brand-blue-hover);
    color: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(55, 72, 99, 0.3);
}

/* ============================================================
   HERO / COVER CAROUSEL SLIDER
   ============================================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    height: 85vh;
    min-height: 600px;
    width: 100vw;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(55, 72, 99, 0.7) 0%, rgba(55, 72, 99, 0.2) 100%);
    z-index: 1;
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 850px;
    z-index: 2;
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--brand-mint);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(253, 254, 255, 0.9);
    margin-bottom: 2.2rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Smooth Slider Text Transitions */
.carousel-item-next.carousel-item-start .hero-eyebrow,
.carousel-item-prev.carousel-item-end .hero-eyebrow,
.carousel-item.active .hero-eyebrow {
    animation: fadeInUp 0.8s both 0.2s;
}

.carousel-item-next.carousel-item-start .hero-title,
.carousel-item-prev.carousel-item-end .hero-title,
.carousel-item.active .hero-title {
    animation: fadeInUp 0.8s both 0.4s;
}

.carousel-item-next.carousel-item-start .hero-desc,
.carousel-item-prev.carousel-item-end .hero-desc,
.carousel-item.active .hero-desc {
    animation: fadeInUp 0.8s both 0.6s;
}

.carousel-item-next.carousel-item-start .hero-actions,
.carousel-item-prev.carousel-item-end .hero-actions,
.carousel-item.active .hero-actions {
    animation: fadeInUp 0.8s both 0.8s;
}

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

/* Premium Minimalist Navigation Controls */
.carousel-btn-prev,
.carousel-btn-next {
    position: absolute;
    bottom: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(253, 254, 255, 0.15);
    border: 1px solid rgba(253, 254, 255, 0.3);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.carousel-btn-prev:hover,
.carousel-btn-next:hover {
    background-color: var(--brand-white);
    color: var(--brand-blue);
    border-color: var(--brand-white);
}

.carousel-btn-prev { right: 110px; }
.carousel-btn-next { right: 40px; }

/* Custom Progress & Numerical Indicator */
.slider-indicators-wrapper {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-white);
}

.slider-progress-track {
    width: 150px;
    height: 2px;
    background-color: rgba(253, 254, 255, 0.25);
    position: relative;
    border-radius: 2px;
}

.slider-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33.33%;
    background-color: var(--brand-mint);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.intro-section {
    background-color: var(--brand-white);
}

.intro-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-coral);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.intro-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: var(--brand-blue);
}

.intro-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intro-desc-secondary {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Overlapping Image Layout */
.img-layers-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
}

.layer-img-main {
    width: 70%;
    height: 380px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(55, 72, 99, 0.08);
}

.layer-img-secondary {
    width: 55%;
    height: 280px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    border: 8px solid var(--brand-white);
    box-shadow: 0 20px 40px rgba(55, 72, 99, 0.12);
    z-index: 2;
}

/* ============================================================
   COLLECTIONS SECTION
   ============================================================ */
.collections-section {
    background-color: var(--neutral-light);
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-coral);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.collection-card {
    background-color: var(--brand-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(55, 72, 99, 0.04);
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(55, 72, 99, 0.05);
    display: flex;
    flex-direction: column;
}

.collection-img-box {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collection-accent-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--brand-blue);
    opacity: 0;
    transition: var(--transition-smooth);
    mix-blend-mode: multiply;
}

.collection-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-coral);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(253, 254, 255, 0.8);
    transition: var(--transition-smooth);
}

.collection-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collection-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.collection-desc {
    font-size: 0.95rem;
    color: var(--neutral-grey);
    margin-bottom: 1.5rem;
}

.collection-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.collection-link i {
    font-size: 0.8rem;
    transition: var(--transition-hover);
}

/* Hover Interactive Styles */
.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(55, 72, 99, 0.12);
}

.collection-card:hover .collection-img {
    transform: scale(1.08);
}

.collection-card:hover .collection-accent-overlay {
    opacity: 0.15;
}

.collection-card:hover .collection-title {
    color: var(--brand-coral);
    transform: translateX(3px);
}

.collection-card:hover .collection-link {
    color: var(--brand-coral);
}

.collection-card:hover .collection-link i {
    transform: translateX(4px);
}

/* ============================================================
   WHY CATTNOS SECTION
   ============================================================ */
.why-section {
    background-color: var(--brand-blue);
    color: var(--brand-white);
    overflow: hidden;
}

.why-section h2 {
    color: var(--brand-white);
}

.why-tag {
    color: var(--brand-mint);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-card {
    background-color: rgba(253, 254, 255, 0.04);
    border: 1px solid rgba(253, 254, 255, 0.08);
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background-color: rgba(253, 254, 255, 0.08);
    border-color: var(--brand-mint);
    transform: translateY(-5px);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(205, 241, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-mint);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--brand-mint);
    color: var(--brand-blue);
    transform: scale(1.05);
}

.benefit-title {
    color: var(--brand-white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-desc {
    color: rgba(253, 254, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================================
   MANUFACTURING SECTION
   ============================================================ */
.manufacturing-section {
    background-color: var(--brand-white);
}

.mfg-image-container {
    position: relative;
    padding-right: 2rem;
}

.mfg-checklist {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mfg-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mfg-item i {
    color: var(--brand-coral);
    font-size: 1.1rem;
}

/* ============================================================
   BUSINESS STATISTICS
   ============================================================ */
.stats-section {
    background-color: var(--neutral-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number.coral {
    color: var(--brand-coral);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-grey);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section {
    background-color: var(--brand-white);
}

.serve-grid-item {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(55, 72, 99, 0.05);
    transition: var(--transition-smooth);
}

.serve-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.serve-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(55, 72, 99, 0.75) 0%, rgba(55, 72, 99, 0) 60%);
    transition: var(--transition-smooth);
}

.serve-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--brand-white);
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(55, 72, 99, 0.15);
    transition: var(--transition-smooth);
}

.serve-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(55, 72, 99, 0.12);
}

.serve-grid-item:hover img {
    transform: scale(1.06);
}

.serve-grid-item:hover .serve-overlay {
    background: linear-gradient(to top, rgba(55, 72, 99, 0.85) 0%, rgba(55, 72, 99, 0.1) 75%);
}

.serve-grid-item:hover .serve-label {
    background-color: var(--brand-coral);
    color: var(--brand-white);
    transform: translateY(-5px);
}

/* ============================================================
   DEALER CTA BANNER
   ============================================================ */
.dealer-cta-section {
    background-color: var(--brand-blue);
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 0;
}

.dealer-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.dealer-cta-section h2 {
    color: var(--brand-white);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.dealer-cta-section p {
    color: rgba(253, 254, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.dealer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.dealer-cta-section .shape-mint-circle {
    top: -20px;
    left: -40px;
    opacity: 0.15;
    width: 250px;
    height: 250px;
}

.dealer-cta-section .shape-coral-blob {
    bottom: -60px;
    right: -40px;
    opacity: 0.2;
    width: 300px;
    height: 280px;
}

/* ============================================================
   CONTACT / WHOLESALE ENQUIRY
   ============================================================ */
.contact-section {
    background-color: var(--brand-white);
}

.contact-info-card {
    background-color: var(--neutral-light);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(55, 72, 99, 0.05);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.info-text h6 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-grey);
    margin-bottom: 0.4rem;
}

.info-text p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0;
}

/* Form Styles */
.enquiry-form-card {
    padding: 1rem 0;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--brand-white);
    color: var(--brand-blue);
    font-family: var(--font-primary);
    font-weight: 500;
    height: 60px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px rgba(211, 97, 78, 0.15);
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-floating > label {
    font-weight: 500;
    color: var(--neutral-grey);
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.footer-section {
    background-color: var(--brand-blue);
    color: rgba(253, 254, 255, 0.75);
    padding-top: 5rem;
    border-top: 1px solid rgba(253, 254, 255, 0.08);
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(253, 254, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(253, 254, 255, 0.05);
    border: 1px solid rgba(253, 254, 255, 0.1);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--brand-coral);
    border-color: var(--brand-coral);
    color: var(--brand-white);
    transform: translateY(-3px);
}

.footer-column-title {
    color: var(--brand-white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link-item {
    color: rgba(253, 254, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-hover);
    display: inline-block;
}

.footer-link-item:hover {
    color: var(--brand-mint);
    transform: translateX(4px);
}

.footer-copyright-bar {
    border-top: 1px solid rgba(253, 254, 255, 0.08);
    padding: 1.8rem 0;
    margin-top: 4.5rem;
    font-size: 0.9rem;
    color: rgba(253, 254, 255, 0.55);
}

/* ============================================================
   RESPONSIVE DESIGN OVERRIDES
   ============================================================ */
@media (max-width: 1199.98px) {
    #heroCarousel {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .section-block {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
    
    #heroCarousel {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .intro-title {
        font-size: 2.2rem;
    }
    
    .layer-img-main {
        width: 80%;
    }
    
    .layer-img-secondary {
        width: 60%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Responsive menu styles for mobile toggle */
    .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--brand-blue);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 15px 30px rgba(55, 72, 99, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition-smooth);
        z-index: 100;
    }
    
    .header-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .site-header.scrolled .header-menu {
        background-color: var(--brand-white);
        border-top-color: rgba(55, 72, 99, 0.08);
    }
    
    .header-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.7rem 0.2rem;
    }
    
    .site-header.scrolled .header-link {
        border-bottom-color: rgba(55, 72, 99, 0.06);
    }
    
    .header-link::after {
        display: none;
    }
    
    .header-cta {
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-block {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    
    #heroCarousel {
        height: 80vh; /* vertical styling for mobile screen */
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .slider-indicators-wrapper {
        bottom: 25px;
    }
    
    .carousel-btn-prev,
    .carousel-btn-next {
        bottom: 25px;
    }
    
    .carousel-btn-prev { right: 80px; }
    .carousel-btn-next { right: 25px; }
    
    .img-layers-wrapper {
        height: 380px;
        margin-top: 2.5rem;
    }
    
    .layer-img-main {
        width: 75%;
        height: 300px;
    }
    
    .layer-img-secondary {
        width: 60%;
        height: 220px;
    }
    
    .mfg-checklist {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .mfg-image-container {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .dealer-cta-section h2 {
        font-size: 2.2rem;
    }
    
    .dealer-cta-actions {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .dealer-cta-actions .btn {
        width: 100%;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .slider-progress-track {
        width: 80px;
    }
}

/* ============================================================
   COMING SOON PAGE
   ============================================================ */
.coming-soon-body {
    background-color: var(--neutral-light);
}

.coming-soon-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(205, 241, 212, 0.55) 0%, transparent 42%),
        radial-gradient(circle at bottom right, rgba(211, 97, 78, 0.08) 0%, transparent 40%),
        var(--neutral-light);
}

.coming-soon-shape {
    z-index: 0;
}

.coming-soon-brand,
.coming-soon-content,
.coming-soon-footer {
    position: relative;
    z-index: 2;
}

.coming-soon-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.coming-soon-content {
    max-width: 760px;
    text-align: center;
    padding: 2rem 0;
}

.coming-soon-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.12;
    margin-bottom: 1.1rem;
}

.coming-soon-lead {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 2.4rem;
}

.coming-soon-notify {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto 1rem;
}

.coming-soon-notify input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.9rem 1.3rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--brand-white);
    outline: none;
    transition: var(--transition-hover);
}

.coming-soon-notify input:focus {
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 4px rgba(211, 97, 78, 0.12);
}

.coming-soon-notify .btn {
    white-space: nowrap;
}

.coming-soon-form-msg {
    color: var(--brand-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.coming-soon-contacts {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.coming-soon-contacts a {
    color: var(--brand-blue);
    font-weight: 500;
}

.coming-soon-contacts a:hover {
    color: var(--brand-coral);
}

.coming-soon-contacts i {
    color: var(--brand-coral);
    margin-right: 0.45rem;
}

.coming-soon-footer {
    width: 100%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.coming-soon-footer p {
    margin: auto;
    font-size: 0.85rem;
}

.coming-soon-socials {
    display: flex;
    gap: 0.7rem;
}

.coming-soon-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-white);
    color: var(--brand-blue);
    border: 1px solid var(--border-color);
}

.coming-soon-socials a:hover {
    background: var(--brand-coral);
    color: var(--brand-white);
    border-color: var(--brand-coral);
}

@media (max-width: 767.98px) {
    .coming-soon-notify {
        flex-direction: column;
    }

    .coming-soon-notify .btn {
        width: 100%;
    }

    .coming-soon-footer {
        justify-content: center;
        text-align: center;
    }
}