/* ==========================================================================
   Base Reset and Typography
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Variables */
:root {
    --primary-color: #1b3045; /* Dark Blue */
    --secondary-color: #a80c21; /* Red */
    --background-color: #ffffff;
    --bg-light: #f7f6f2; /* Consistent light gray background */
    --text-color: #ffffff; /* White text for transparent header and hero */
    --text-dark: #1b3045;
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-text: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark); /* Default to dark text */
    background-color: var(--background-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500; /* Made less bold per user request */
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background-color: var(--primary-color); /* Changed to Navy Blue */
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #122130; /* Darker navy blue on hover */
    transform: translateY(-2px);
}

.btn-accent {
    background-color: #ffffff; /* Changed to white for better contrast on dark hero */
    color: var(--primary-color);
}

.btn-accent:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-video {
    background-color: transparent;
    color: var(--text-dark); /* Dark text for light mode, but hero text is white, so we will override this in hero CSS */
    padding-left: 0;
}

.btn-video:hover {
    transform: translateY(-2px);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #ffffff; /* Changed to white */
    color: var(--primary-color); /* Navy blue icon */
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    padding-left: 4px; /* visually center the play triangle */
}

.btn .arrow-icon {
    margin-left: 8px;
    font-size: 18px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact,
.top-social {
    display: flex;
    align-items: center;
}

.top-contact a,
.top-social a {
    color: #ffffff;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-contact {
    gap: 25px;
}

.top-social {
    gap: 15px;
}

.top-contact a:hover,
.top-social a:hover {
    opacity: 0.7;
}

.top-contact .icon {
    margin-right: 6px;
    font-size: 15px;
}

.top-social a svg {
    display: block;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.top-social a:hover svg {
    transform: scale(1.1);
}

.top-contact .icon {
    margin-right: 6px;
    font-size: 15px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    position: relative; /* Solid, non-transparent header */
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    z-index: 1000;
    padding: 10px 0; /* Reduced padding to make header slimmer */
    transition: padding 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 70px;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 22px; /* Reduced gap from 35px to 22px to eliminate excessive menu spacing */
    list-style: none;
}

.desktop-nav .nav-list a {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 15px;
    color: var(--text-dark); /* Dark text for white header */
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav .nav-list a:hover,
.desktop-nav .nav-list a.active {
    color: var(--secondary-color);
}

/* Header Dropdown Menu Styling */
.nav-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.chevron-down {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    transition: transform 0.25s ease, stroke 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-item-dropdown:hover .chevron-down {
    transform: rotate(180deg);
    stroke: var(--secondary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 0px; /* Square corners per user request */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 6px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1005;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 7px 16px;
    font-size: 12px; /* Small crisp dropdown text per user request */
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: #fff0f2;
    color: var(--secondary-color);
    padding-left: 22px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color); /* Dark hamburger for white header */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: url('../assets/images/Banner image.jpg') center/cover no-repeat;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-video-wrap .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 48, 69, 0.85) 0%, rgba(27, 48, 69, 0.45) 100%);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient over the background image to make white text readable */
    background: linear-gradient(to right, rgba(27, 48, 69, 0.9) 0%, rgba(27, 48, 69, 0.4) 100%), url('../assets/images/Banner image.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-box {
    max-width: 850px;
    color: #ffffff;
}

/* Override .btn-video color for the dark hero background */
.hero-text-box .btn-video {
    color: #ffffff;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff; /* Changed to white for better visibility */
    border-radius: 50%;
    margin-right: 10px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 500; /* Changed from 700 to 500 per user request */
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.check-icon {
    color: #ffffff; /* Changed to white for contrast */
    margin-right: 10px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 110px 0;
    background-color: #f9f8f4; /* Soft off-white beige background */
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Image Composition */
.about-images {
    position: relative;
    padding-bottom: 40px; /* Space for the overlapping small image */
}

.img-large {
    width: 85%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 12px solid #f9f8f4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 3;
}

.experience-badge .icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.experience-badge .exp-text {
    display: flex;
    flex-direction: column;
}

.experience-badge .exp-text strong {
    font-size: 28px;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--text-dark);
}

.experience-badge .exp-text span {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Right Text Content */
.badge-dark {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid #eaeaea;
}

.badge-dark .dot {
    background-color: var(--secondary-color);
}

.section-title {
    font-size: 34px; /* Reduced font size per request */
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500; /* Set to 500 font-weight */
}

.section-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 35px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.card-header h3 {
    font-size: 20px;
    color: var(--text-dark);
}

.about-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.card-list {
    list-style: none;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.card-list li {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.card-list .dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
}

.about-footer-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    width: 100%;
}

.check-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px; /* Horizontal layout for checklist items */
    width: 100%;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.check-list .check-icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ==========================================================================
   Products & Mouldings Section (Divided Minimal Tabs)
   ========================================================================== */
.products-section {
    padding: 60px 0; /* Balanced padding */
    background-color: #ffffff;
}

.text-center {
    text-align: center;
}

.section-header.text-center {
    margin-bottom: 50px;
}

.section-header.text-center .badge {
    margin: 0 auto 15px auto;
}

.section-header.text-center .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

.group-title {
    font-size: 30px;
    font-weight: 500; /* Updated to 500 font-weight */
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

/* Minimal Tab Bar with Vertical Dividers */
.minimal-tabs-wrapper {
    border-bottom: 1px solid #eaedf1;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    touch-action: pan-y; /* Allows vertical touchpad scrolling to pass through smoothly */
    overscroll-behavior-x: contain;
}

.minimal-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.minimal-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: max-content;
    padding-bottom: 12px;
}

.minimal-tab-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.minimal-tab-btn:hover {
    color: var(--text-dark);
}

.minimal-tab-btn.active {
    color: var(--primary-color);
    font-weight: 500; /* Updated to 500 font-weight */
}

.minimal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -13px; /* Sits directly on top of the bottom border line */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color); /* Red accent underline */
    border-radius: 2px;
}

.tab-divider {
    color: #d0d5dd;
    font-weight: 300;
    font-size: 14px;
    user-select: none;
}

/* Minimal Tab Panels */
.minimal-tab-panel {
    display: none;
}

.minimal-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Flat 5-Product Row Grid (No Grow Effect, Compact Padding) */
.product-5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-item-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 4px; /* Clean flat profile, no rounded corners */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
    /* NO TRANSFORMATION OR GROW EFFECT */
}

.product-item-card:hover {
    border-color: #b0b8c4;
}

.product-item-img {
    height: 240px; /* Generous height for tall door aspect ratios */
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa; /* Soft neutral background behind tall doors */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
}

.product-item-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* SHOWS 100% OF THE FULL DOOR TOP TO BOTTOM WITHOUT ANY CROPPING */
}

.product-item-info {
    padding: 12px 10px; /* Reduced inner padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 10px;
    text-align: center;
}

.product-item-info h4 {
    font-size: 14px;
    font-weight: 500; /* Updated to 500 font-weight */
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.product-spec-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #4a5568;
    background-color: #edf2f7;
    padding: 3px 8px;
    border-radius: 3px;
}

.product-price-tag {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2px 0 4px 0;
}

.product-price-tag small {
    font-size: 11px;
    font-weight: 400;
    color: #666666;
}

.btn-sm {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 4px; /* Matches flat card style */
    width: 100%;
    margin-bottom: 25px;
}

/* ==========================================================================
   Shop Our Bestsellers Section
   ========================================================================== */
.bestsellers-section {
    padding: 75px 0;
    background-color: #f8fafc;
}

.bestsellers-4col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .bestsellers-4col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .bestsellers-4col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ==========================================================================
   Features / Why Choose Us Section
   ========================================================================== */
.features-section {
    padding: 85px 0;
    background-color: #f9f8f4; /* Off-white background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 980px; /* Constrained grid width between 900px and 1000px */
    margin: 0 auto 60px auto;
    gap: 24px;
    align-items: stretch;
}

.feature-card {
    height: 460px; /* Equal height for all 3 cards */
    border-radius: 20px;
    overflow: hidden; /* Clips all inner images to card rounded corners */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

/* Card 1: Red Accent Card */
.feature-card-colored {
    background-color: var(--secondary-color); /* Red accent */
    color: #ffffff;
}

.feature-card-colored .feature-card-content {
    padding: 30px 25px 15px 25px;
}

.feature-card-colored h3 {
    font-size: 22px;
    font-weight: 500; /* 500 font-weight */
    margin-bottom: 12px;
}

.feature-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-bottom: 15px;
}

.feature-card-colored p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card-colored .feature-card-img {
    height: 210px;
    width: 100%;
    overflow: hidden;
    margin-top: auto;
}

.feature-card-colored .feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

/* Card 2: Full Photo Card */
.feature-card-photo {
    position: relative;
}

.feature-card-photo .bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 25, 35, 0.95) 0%, rgba(15, 25, 35, 0.2) 65%);
    z-index: 2;
}

.feature-card-photo .bottom-content {
    position: relative;
    z-index: 3;
    padding: 35px 30px;
    color: #ffffff;
    margin-top: auto;
}

.feature-card-photo h3 {
    font-size: 22px;
    font-weight: 500; /* 500 font-weight */
    margin-bottom: 10px;
}

.feature-card-photo p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

/* Card 3: Navy Blue Dark Card */
.feature-card-dark {
    background-color: var(--primary-color); /* Navy Blue */
    color: #ffffff;
}

.feature-card-dark .feature-card-content {
    padding: 30px 25px 15px 25px;
}

.feature-card-dark h3 {
    font-size: 22px;
    font-weight: 500; /* 500 font-weight */
    margin-bottom: 12px;
}

.feature-card-dark p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.feature-card-dark .feature-card-img {
    height: 210px;
    width: 100%;
    overflow: hidden;
    margin-top: auto;
}

.feature-card-dark .feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

/* Bottom CTA Bar */
.features-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    width: max-content;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cta-avatar {
    width: 38px;
    height: 38px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.features-bottom-cta p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.cta-link {
    color: var(--secondary-color);
    font-weight: 600;
    margin-left: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Shop Our Bestsellers Section (Clean Static 5-Grid Layout)
   ========================================================================== */
.bestsellers-section {
    padding: 60px 0;
    background-color: #ffffff; /* Pure white background */
}

/* ==========================================================================
   Why Work With Us Section
   ========================================================================== */
.why-us-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-us-content .section-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.25;
}

.why-us-content .section-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 30px;
}

/* White Feature Box Card */
.why-us-card {
    background-color: #f9f8f4;
    border: 1px solid #eaeaea;
    border-radius: 18px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.why-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-feature-text h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.why-feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Bottom Action Row */
.why-us-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-circle-btn {
    width: 46px;
    height: 46px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-circle-btn:hover {
    transform: scale(1.05);
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--secondary-color);
}

/* Simple Clean Image Container (No polygon mask) */
.why-us-image-box {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Client Testimonials Section
   ========================================================================== */
/* ==========================================================================
   Client Testimonials Section (Matching Reference Screenshot Design)
   ========================================================================== */
.testimonials-section {
    padding: 85px 0;
    background-color: #ffffff; /* White background matching screenshot */
}

/* Split Header */
.testimonials-split-header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.testimonials-split-header .section-title {
    font-size: 34px;
    font-weight: 500; /* Locked to 500 font weight */
    color: var(--text-dark);
    margin-top: 15px;
    line-height: 1.25;
}

.header-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 18px;
}

.header-trust-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.trust-note {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    max-width: 250px;
}

/* 3-Column Soft Cards Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #f9f8f4; /* Soft off-white pill card matching screenshot */
    border: 1px solid #f0efe8;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.card-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.stars-gold {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.brand-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: normal;
}

.card-author-footer {
    border-top: 1px solid #e5e4dc; /* Subtle divider line */
    padding-top: 18px;
}

.author-name {
    font-size: 16px;
    font-weight: 500; /* Locked to 500 font weight */
    color: var(--text-dark);
    margin: 0 0 3px 0;
}

.author-role {
    font-size: 13px;
    color: #777777;
}

@media (max-width: 992px) {
    .testimonials-split-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.faq-section {
    padding: 85px 0;
    background-color: #f9f8f4; /* Off-white soft background matching screenshot */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column (Static Positioning on Scroll for Smooth Touchpad Movement) */
.faq-left-info {
    position: static;
}

.faq-left-info .section-title {
    font-size: 34px;
    font-weight: 500; /* Locked to 500 font-weight */
    margin-bottom: 15px;
    line-height: 1.25;
}

.faq-left-info .section-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 35px;
}

/* Dark Rating Badge Box */
.faq-rating-box {
    background-color: #1e293b; /* Dark Navy Slate */
    border-radius: 18px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-score {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-gold {
    color: #f59e0b;
    letter-spacing: 1px;
}

.rating-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.faq-call-btn {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.faq-call-btn:hover {
    transform: scale(1.05);
}

/* Right Accordion List */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #d0d5dd;
}

/* Active Open FAQ Card: Dark Theme with Pure White Text */
.faq-accordion-item.active {
    background-color: var(--primary-color); /* Navy Blue background */
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.faq-header h4 {
    font-size: 16px;
    font-weight: 500; /* Locked to 500 font-weight */
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-header h4 {
    color: #ffffff; /* White title text when active */
}

.faq-icon {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
    color: #ffffff; /* White icon when active */
    transform: rotate(45deg); /* Plus turns into cross when open */
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq-accordion-item.active .faq-body {
    max-height: 300px;
    margin-top: 14px;
}

.faq-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-body p {
    color: rgba(255, 255, 255, 0.92); /* White answer text when active */
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Contact Us Section (Matching Reference Screenshot Design)
   ========================================================================== */
.contact-section-ref {
    padding: 85px 0;
    background-color: #f9f8f4; /* Off-white soft background matching screenshot */
}

.contact-ref-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center; /* Vertically center align right column with taller left column */
}

/* Left Column */
.contact-photo-box {
    width: 100%;
    height: 430px; /* Increased image height to 430px per user request */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-workshop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-support-dark-card {
    background-color: #1e293b; /* Dark Slate card matching screenshot */
    border-radius: 20px;
    padding: 25px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.support-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--secondary-color); /* Red circle icon */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.support-icon-circle:hover {
    transform: scale(1.05);
}

.support-phone-meta {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.support-phone-num {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-top: 2px;
}

.support-subnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin: 15px 0 0 0;
    line-height: 1.4;
}

/* Right Column (Form) */
.contact-ref-right .badge {
    margin-bottom: 6px; /* Eliminated gap below eyebrow badge */
}

.contact-ref-title {
    font-size: 34px;
    font-weight: 500; /* Locked to 500 font-weight */
    color: var(--text-dark);
    margin: 0 0 12px 0; /* Zero top margin */
    line-height: 1.25;
}

.contact-ref-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 30px;
}

.contact-ref-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-ref-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-ref-form .form-group-full {
    width: 100%;
}

.ref-input {
    width: 100%;
    background-color: #ffffff; /* Clean white input pills matching screenshot */
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ref-input::placeholder {
    color: #888888;
}

.ref-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(217, 35, 42, 0.12);
}

.ref-textarea {
    resize: vertical;
}

.pill-red-submit {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-red-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 35, 42, 0.25);
}

/* ==========================================================================
   Footer Section (Matching Reference Screenshot Design)
   ========================================================================== */
.site-footer-ref {
    background-color: #121824; /* Dark Slate background matching reference screenshot */
    color: #ffffff;
    padding: 85px 0 35px 0;
    position: relative;
    overflow: hidden;
}

/* 4-Column Top Footer Grid */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 55px;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
    max-width: 380px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-circle-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 18px;
    font-weight: 500; /* Locked to 500 font weight */
    color: #ffffff;
    margin-bottom: 22px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contact Info Column */
.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-details li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-details a,
.footer-contact-details a:link,
.footer-contact-details a:visited {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-details a:hover {
    color: var(--secondary-color) !important;
}

/* Dark Contact Callout Card (Matching Reference Screenshot) */
.footer-contact-card {
    background-color: #1c2433; /* Soft dark slate card background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-headline {
    font-size: 24px;
    font-weight: 500; /* Locked to 500 font weight */
    color: #ffffff;
    margin: 0;
}

.card-contact-items {
    display: flex;
    align-items: center;
    gap: 45px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--secondary-color); /* Red circle icon matching brand */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.card-icon-circle:hover {
    transform: scale(1.06);
}

.item-meta {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.meta-value,
.meta-value:link,
.meta-value:visited {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    margin-top: 2px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.meta-value:hover {
    color: #ffffff !important;
    opacity: 0.85;
}

/* Footer Bottom Copyright Row */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-row p {
    margin: 0;
}

.dot-accent {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-left: 6px;
}

@media (max-width: 992px) {
    .contact-ref-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .contact-ref-form .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Us Section (Clean & Bright Modern Design)
   ========================================================================== */
.contact-section-clean {
    padding: 85px 0;
    background-color: #ffffff;
}

.contact-section-clean .section-header {
    margin-bottom: 50px;
}

.contact-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-clean {
    background-color: #f9f8f4; /* Off-white soft background */
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3,
.contact-form-clean h3 {
    font-size: 24px;
    font-weight: 500; /* Locked to 500 font weight */
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card-desc,
.form-clean-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 28px;
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--secondary-color); /* Red circle icon */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.info-icon-btn:hover {
    transform: scale(1.05);
}

.info-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 12px;
    color: #777777;
    font-weight: 500;
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value:hover {
    color: var(--secondary-color);
}

/* Form inputs & controls */
.clean-form-element {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clean-input,
.ref-input {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--font-text);
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.clean-input::placeholder,
.ref-input::placeholder {
    color: #98a2b3;
}

.clean-input:focus,
.ref-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(27, 48, 69, 0.08);
    background-color: #ffffff;
}

/* Custom styled select box for forms */
select.ref-input,
select.styled-select-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%231b3045%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M1%201l5%205%205-5%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 7px;
}

select.ref-input option,
select.styled-select-input option {
    font-size: 14px;
    padding: 12px;
    color: var(--primary-color);
    background-color: #ffffff;
}

.clean-textarea,
.ref-textarea {
    resize: vertical;
}

.pill-red-btn {
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #1eb954;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    font-size: 18px;
}

/* ==========================================================================
   Single Product Detail Page (PDP) Reusable Styling System
   ========================================================================== */
.pdp-section {
    padding: 35px 0 80px 0;
    background-color: #f8f9fa;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* Left Column: Sticky Gallery Panel */
.pdp-sticky-gallery {
    position: sticky;
    top: 20px;
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.pdp-main-img-box {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}

.pdp-main-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pdp-main-img-box:hover img {
    transform: scale(1.04);
}

/* Gallery Thumbnails (Only displayed if multiple images exist) */
.pdp-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pdp-thumb-item {
    height: 75px;
    border: 2px solid #eaedf1;
    border-radius: 10px;
    padding: 6px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.pdp-thumb-item:hover {
    border-color: var(--primary-color);
}

.pdp-thumb-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(168, 12, 33, 0.15);
}

.pdp-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Right Column: Premium Info Panel */
.pdp-info-panel {
    display: flex;
    flex-direction: column;
}

.pdp-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0f2;
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 14px;
    width: fit-content;
}

.pdp-title {
    font-size: 34px;
    font-weight: 500; /* Strict 500 font weight */
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pdp-description {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 24px;
}

/* Elevated Dimensions & Pricing Selector Card */
.pdp-pricing-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.pdp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eaedf1;
}

.pdp-card-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.pdp-stock-badge {
    background: #ecfdf5;
    color: #059669;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pdp-dimensions-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pdp-dimension-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border: 1.5px solid #eaedf1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.pdp-dimension-row:hover,
.pdp-dimension-row.selected {
    border-color: var(--secondary-color);
    background: #fffcfd;
    box-shadow: 0 4px 15px rgba(168, 12, 33, 0.06);
}

.pdp-dimension-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdp-radio-dot {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d5dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.pdp-dimension-row.selected .pdp-radio-dot {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.pdp-dimension-row.selected .pdp-radio-dot::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.pdp-dim-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.pdp-dim-tag {
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

.pdp-dim-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* PDP Action Buttons Row */
.pdp-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-whatsapp-pdp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    cursor: pointer;
}

.btn-whatsapp-pdp:hover {
    background-color: #1eb954;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-quote-pdp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(168, 12, 33, 0.25);
    cursor: pointer;
}

.btn-quote-pdp:hover {
    background-color: #88091a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 12, 33, 0.35);
}

/* Feature Callout Badges */
.pdp-features-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.pdp-feature-item {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdp-feature-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.pdp-feature-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.pdp-feature-text span {
    font-size: 12px;
    color: #666666;
}

@media (max-width: 992px) {
    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pdp-sticky-gallery {
        position: static;
    }
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}

@media (max-width: 576px) {
    .pdp-actions-row {
        grid-template-columns: 1fr;
    }
    .pdp-features-row {
        grid-template-columns: 1fr;
    }
    .pdp-related-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ==========================================================================
   Site Footer (Clean & Bright Design)
   ========================================================================== */
.site-footer-bright {
    background-color: #f4f3ed; /* Warm off-white footer */
    border-top: 1px solid #eaedf1;
    color: #555555;
    padding: 70px 0 30px 0;
    font-size: 14px;
}

.site-footer-bright .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo-dark {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.logo-mark-red {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bio-dark {
    color: #666666;
    line-height: 1.65;
    margin-bottom: 22px;
    font-size: 14px;
}

.social-icon-btn-bright {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    background-color: #ffffff;
    border: 1px solid #d0d5dd;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon-btn-bright:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.footer-title-dark {
    font-size: 17px;
    font-weight: 500; /* Locked to 500 font weight */
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links-dark {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-dark a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-dark a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-contact-list-dark {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list-dark li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #555555;
    line-height: 1.5;
}

.icon-red {
    color: var(--secondary-color);
    font-size: 16px;
}

.footer-contact-list-dark a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-list-dark a:hover {
    color: var(--secondary-color);
}

.footer-divider-dark {
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
    margin: 50px 0 25px 0;
}

.footer-bottom-bright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #777777;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-bright p {
    margin: 0;
}

.footer-legal-links-dark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links-dark a {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links-dark a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    /* Top Bar Mobile Layout */
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }

    .top-social {
        justify-content: center;
        gap: 12px;
    }

    /* Site Header Mobile Layout */
    .site-header {
        padding: 10px 0;
    }

    .logo img {
        max-height: 62px; /* Prominent, readable logo on mobile view */
    }

    .header-actions .btn-primary {
        display: none; /* Hide top header button on small screens so header remains clean */
    }

    /* Mobile Hamburger Icon Toggle */
    .mobile-menu-toggle {
        display: flex; /* Display mobile hamburger icon */
        position: relative;
        z-index: 10002;
    }

    /* Full-Screen Slide-Down Overlay Mobile Navigation Menu */
    .desktop-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 25px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
        overflow-y: auto;
    }

    .desktop-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .desktop-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 18px;
        width: 100%;
        padding: 20px 0;
    }

    .desktop-nav .nav-list a {
        font-size: 19px;
        font-weight: 500;
        color: var(--text-dark);
        transition: color 0.3s ease;
    }

    .desktop-nav .nav-list a.active,
    .desktop-nav .nav-list a:hover {
        color: var(--secondary-color);
    }

    /* Mobile Accordion Dropdown Menu Styling */
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: center;
        padding: 6px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid #eaedf1;
        background: #f8f9fa;
        border-radius: 8px;
        padding: 6px 0;
        margin-top: 8px;
        display: none; /* hidden until toggled */
        width: 100%;
    }

    .nav-item-dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        font-size: 13.5px;
        padding: 9px 15px;
        text-align: center;
        color: #333333;
    }

    /* Hero Section Mobile Responsiveness */
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-features {
        gap: 15px;
        margin-bottom: 30px;
    }

    /* Products Section Mobile Responsiveness */
    .products-section {
        padding: 40px 0;
    }

    .group-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .product-5-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .product-item-img {
        height: 200px;
    }

    .minimal-tabs {
        gap: 12px;
        padding-bottom: 10px;
    }

    .minimal-tab-btn {
        font-size: 14px;
    }

    /* About Us Section Mobile Responsiveness */
    .about-section {
        padding: 60px 0;
    }

    .bestsellers-section {
        padding: 45px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .img-large {
        width: 100%;
        height: 340px;
    }

    .img-small {
        width: 50%;
        height: 180px;
        border-width: 8px;
    }

    .experience-badge {
        top: 20px;
        right: 15px;
        padding: 14px 18px;
    }

    .experience-badge .exp-text strong {
        font-size: 24px;
    }

    /* Core Features Section Mobile Responsiveness */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }

    .feature-card {
        height: 400px;
    }

    /* Why Work With Us Section Mobile Responsiveness */
    .why-us-section {
        padding: 60px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image-box {
        height: 320px;
    }

    /* Frequently Asked Questions Section Mobile Responsiveness */
    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .faq-left-info {
        position: static; /* Disable sticky positioning on mobile viewports */
    }

    /* Client Testimonials Section Mobile Responsiveness */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-split-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Us Section Mobile Responsiveness */
    .contact-section-ref {
        padding: 60px 0;
    }

    .contact-ref-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-photo-box {
        height: 280px;
    }

    .contact-photo-box {
        height: 280px;
    }

    .contact-clean-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-bright .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .top-contact {
        flex-direction: column;
        gap: 5px;
    }

    /* Hero Section Small Phone Breakdown */
    .hero-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Products Section Small Phone Breakdown */
    .product-5-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile phones */
        gap: 12px;
    }

    .product-item-img {
        height: 180px;
    }

    .product-item-info {
        padding: 10px 8px;
    }

    .product-item-info h4 {
        font-size: 13px;
        line-height: 1.35;
    }

    .product-enquire-btn {
        width: 100%;
        padding: 6px 10px;
        font-size: 12px;
    }

    .tab-divider {
        display: none; /* Hide dividers on small screens for clean tab scrolling */
    }

    /* About Us Section Small Phone Breakdown */
    .img-large {
        height: 260px;
    }

    .img-small {
        width: 55%;
        height: 150px;
    }

    .overview-images-ref .img-box-main {
        width: 82%;
        height: 260px;
    }

    .overview-images-ref .img-box-sub {
        width: 65%;
        height: 210px;
    }

    .experience-badge {
        top: 15px;
        right: 10px;
        padding: 10px 14px;
        gap: 10px;
    }

    .experience-badge .icon-circle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .experience-badge .exp-text strong {
        font-size: 20px;
    }

    .experience-badge .exp-text span {
        font-size: 11px;
    }

    .about-card {
        padding: 20px;
    }

    .check-list {
        flex-direction: column;
        gap: 10px;
    }

    .about-footer-grid .btn {
        width: 100%;
        justify-content: center;
    }

    /* Core Features Section Small Phone Breakdown */
    .feature-card {
        height: 380px;
    }

    .features-bottom-cta {
        width: 100%;
        border-radius: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px 20px;
    }

    /* Why Work With Us Small Phone Breakdown */
    .why-us-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .why-us-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .why-us-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .why-us-image-box {
        height: 260px;
    }

    /* FAQ Small Phone Breakdown */
    .faq-rating-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .faq-call-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-accordion-item {
        padding: 16px 18px;
    }

    .faq-header h4 {
        font-size: 15px;
    }

    /* Testimonials Small Phone Breakdown */
    .testimonial-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Contact Us Small Phone Breakdown */
    .contact-photo-box {
        height: 220px;
    }

    .contact-ref-form .form-row-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pill-red-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Footer Mobile Responsiveness */
    .site-footer-ref {
        padding: 60px 0 30px 0;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col-brand {
        grid-column: span 2;
    }

    .footer-contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px 25px;
    }

    .card-contact-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    /* Footer Small Phone Breakdown */
    @media (max-width: 576px) {
        .footer-top-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-col-brand {
            grid-column: span 1;
        }

        .footer-contact-card {
            padding: 24px 20px;
        }

        .card-headline {
            font-size: 20px;
        }

        .footer-bottom-row {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
    }
}

/* ==========================================================================
   Inner Page Banner & Showroom Styling
   ========================================================================== */
.page-banner {
    position: relative;
    padding: 45px 0 30px 0; /* Compact top banner padding */
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 48, 69, 0.95) 0%, rgba(27, 48, 69, 0.75) 100%), url('../assets/images/front-entry-door.jpg') center/cover no-repeat;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.about-story-section, .about-pillars-section {
    padding: 80px 0;
}

.showroom-banner-section {
    padding: 60px 0 90px 0;
}

.showroom-card {
    background: linear-gradient(135deg, #1b3045 0%, #122130 100%);
    border-radius: 8px;
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.showroom-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.showroom-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 700px;
}

.showroom-details-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.showroom-details-row .detail-box strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.showroom-details-row .detail-box span {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.showroom-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lead-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-paragraph {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 8px;
    padding: 30px 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 48, 69, 0.08);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(168, 12, 33, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.55;
    margin: 0;
}

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

@media (max-width: 576px) {
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section 2: About Us Overview (Matching Reference Screenshot Design)
   ========================================================================== */
.about-overview-ref {
    padding: 90px 0;
    background-color: #f7f6f0; /* Off-white warm beige background matching reference image */
}

.overview-grid-ref {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Left Overlapping Curved Photo Composition */
.overview-images-ref {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.overview-images-ref .img-box-main {
    width: 68%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    background-color: #ffffff;
}

.overview-images-ref .img-box-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.overview-images-ref .img-box-sub {
    position: absolute;
    top: 15%;
    right: 0;
    width: 54%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid #f7f6f0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

.overview-images-ref .img-box-sub img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Single Image Variation for Overview Section */
.overview-images-ref.single-image-layout {
    padding-bottom: 70px;
    padding-right: 0;
}

.overview-images-ref.single-image-layout .img-box-single {
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    background-color: #ffffff;
    border: 1px solid #eaedf1;
    padding: 0;
}

.overview-images-ref.single-image-layout .img-box-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.overview-images-ref.single-image-layout .brand-badge-ref {
    bottom: 10px;
    left: 25px;
}

/* Red Accent Brand Experience Ribbon Badge */
.brand-badge-ref {
    position: absolute;
    bottom: 0;
    left: 20%;
    background-color: var(--secondary-color); /* Red Accent #a80c21 */
    padding: 16px 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(168, 12, 33, 0.25);
    z-index: 10;
}

.brand-badge-ref .ribbon-circle {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}

.brand-badge-ref .badge-text-box {
    display: flex;
    flex-direction: column;
}

.brand-badge-ref .badge-number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.brand-badge-ref .badge-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

/* Right Content Column */
.overview-content-ref {
    display: flex;
    flex-direction: column;
}

.badge-pill-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    border: 1px solid #e5e3d9;
    margin-bottom: 20px;
    width: max-content;
}

.badge-pill-light .badge-dot {
    color: var(--secondary-color); /* Red Dot */
    font-size: 16px;
}

.overview-headline {
    font-size: 38px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.overview-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 15px;
}

.overview-subparagraph {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Bottom Split Layout */
.overview-bottom-split {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
    border-top: 1px solid #e5e3d9;
    padding-top: 25px;
}

.brand-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.check-circle-red {
    width: 22px;
    height: 22px;
    background-color: var(--secondary-color); /* Red Accent */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color); /* Navy Blue */
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 48, 69, 0.2);
}

.btn-brand-pill:hover {
    background-color: var(--secondary-color); /* Red Accent on Hover */
    transform: translateY(-2px);
    color: #ffffff;
}

/* Right Stats Column */
.split-right-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid #e5e3d9;
}

.split-right-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.split-right-stats .stat-number {
    font-size: 40px;
    font-weight: 600;
    color: #1b3045;
    line-height: 1;
    margin-bottom: 6px;
}

.split-right-stats .stat-caption {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    margin: 0;
}

.stat-line-divider {
    height: 1px;
    background-color: #e5e3d9;
    width: 100%;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 992px) {
    .overview-grid-ref {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .overview-images-ref .img-box-main {
        width: 75%;
        height: 380px;
    }

    .overview-images-ref .img-box-sub {
        width: 60%;
        height: 300px;
    }

    .overview-headline {
        font-size: 32px;
    }

    .overview-bottom-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-right-stats {
        padding-left: 0;
        border-left: none;
        flex-direction: row;
        justify-content: space-around;
        border-top: 1px solid #e5e3d9;
        padding-top: 20px;
    }

    .stat-line-divider {
        display: none;
    }
}

/* ==========================================================================
   Showroom CTA Dark Banner (Matching Reference Image Design)
   ========================================================================== */
/* ==========================================================================
   Showroom CTA Dark Banner (Compact Sleek Design)
   ========================================================================== */
.cta-banner-dark {
    position: relative;
    padding: 55px 0;
    background-color: #12202f; /* Deep Navy Dark Background */
    background-image: radial-gradient(circle at 50% 50%, #1b3045 0%, #0d1723 100%);
    overflow: hidden;
    color: #ffffff;
}

/* Floating Decorative Doors */
.decorative-door {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
}

.decorative-door img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.door-top-left {
    top: -10px;
    left: -20px;
    width: 140px;
    height: 190px;
    transform: rotate(-10deg);
}

.door-bottom-right {
    bottom: -15px;
    right: -20px;
    width: 150px;
    height: 200px;
    transform: rotate(12deg);
}

.cta-banner-container {
    position: relative;
    z-index: 5;
}

.cta-banner-content {
    max-width: 760px;
    margin: 0 auto;
}

.cta-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 14px;
}

.cta-pill-badge .dot-red {
    color: var(--secondary-color);
    font-size: 14px;
}

.cta-headline {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.cta-paragraph {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* High Contrast Details Cards Row */
.cta-details-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.cta-detail-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    backdrop-filter: blur(5px);
}

.cta-detail-card .card-icon-red {
    color: var(--secondary-color); /* Red Accent */
    font-size: 17px;
}

.cta-detail-card .card-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff6b7e; /* High contrast bright coral red for labels on dark background */
    font-weight: 600;
    margin-bottom: 1px;
}

.cta-detail-card .card-val, 
.cta-detail-card .card-val-link {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
}

.cta-detail-card .card-val-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Ratings Line */
.cta-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    color: #ffffff;
}

.cta-rating-row .rating-number {
    font-weight: 600;
    color: #ffffff;
}

.cta-rating-row .stars-gold {
    color: #ffc107; /* Gold stars */
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-rating-row .rating-text {
    color: rgba(255, 255, 255, 0.85);
}

/* High Contrast Buttons */
.cta-buttons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-red-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color); /* Red Accent */
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 12, 33, 0.4);
}

.btn-red-pill:hover {
    background-color: #8c091a;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-pill:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .decorative-door {
        display: none; /* Hide floating corner doors on smaller screens */
    }

    .cta-headline {
        font-size: 30px;
    }

    .cta-details-grid {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================================================
   Contact Us Page Styling
   ========================================================================== */
.contact-cards-section {
    padding: 60px 0 30px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(27, 48, 69, 0.08);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(168, 12, 33, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px auto;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
}

.info-card-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.info-card-val:hover {
    text-decoration: underline;
}

.info-card-sub {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Contact Main Section */
.contact-main-section {
    padding: 50px 0 90px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.form-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 10px;
}

.form-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.55;
}

.contact-page-form .form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.ref-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231b3045%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
    padding-right: 35px;
}

/* Map Box */
.contact-map-box {
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(27, 48, 69, 0.15);
}

.map-header h3 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.map-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.map-embed-wrapper {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.map-trade-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trade-card-icon {
    width: 42px;
    height: 42px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trade-card-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
}

.trade-card-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Form Select Input Styling */
.styled-select-input {
    width: 100%;
    padding: 13px 45px 13px 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-text);
    color: var(--primary-color);
    background-color: #f8f9fa;
    border: 1px solid #eaedf1;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%231b3045%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M1%201l5%205%205-5%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 7px;
}

.styled-select-input:hover,
.styled-select-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(27, 48, 69, 0.08);
}

.styled-select-input option {
    font-size: 14px;
    padding: 12px;
    color: var(--primary-color);
    background-color: #ffffff;
}

/* ==========================================================================
   Products Catalogue Page & E-Commerce Sidebar Styling
   ========================================================================== */
.catalog-section {
    padding: 12px 0 80px 0; /* Ultra-compact top section padding */
    background-color: #f8f9fa;
}

.catalog-layout-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 35px;
    align-items: start;
}

/* Left Sidebar Panel */
.catalog-sidebar {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 16px;
    padding: 14px 18px; /* Ultra-compact inner padding */
    position: sticky;
    top: 20px; /* Sticky top offset */
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Hide visual scrollbar for Chrome, Safari and Opera */
.catalog-sidebar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaedf1;
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.clear-filters-link {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.clear-filters-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px dashed #eaedf1;
    margin-bottom: 12px;
    text-align: left; /* Enforces strict left alignment on multi-line category titles */
}

.group-title-text {
    text-align: left;
    flex-grow: 1;
    padding-right: 8px;
}

.accordion-arrow {
    font-size: 10px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-group .accordion-content {
    display: none;
    padding-bottom: 10px;
}

.accordion-group.open .accordion-content {
    display: flex;
}

.accordion-group.open .accordion-arrow {
    transform: rotate(180deg);
}

.filter-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-checkbox-item {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #444444;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.custom-checkbox-item:hover {
    color: var(--primary-color);
}

.custom-checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background-color: #f8f9fa;
    border: 1.5px solid #d0d5dd;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-checkbox-item:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.custom-checkbox-item input:checked ~ .checkmark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label {
    flex-grow: 1;
}

.checkbox-count {
    font-size: 12px;
    color: #888888;
}

/* Nested Sub-Accordion Filter Dropdown Styling */
.nested-subgroup {
    border-bottom: 1px solid #eaedf1;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.nested-subgroup:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nested-subgroup-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    text-align: left;
    outline: none;
    color: var(--primary-color);
    font-family: var(--font-text);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nested-subgroup-trigger:hover {
    background: #f7f9fc;
}

.nested-subgroup-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--primary-color);
}

.nested-arrow {
    font-size: 10px;
    color: #888888;
    transition: transform 0.25s ease, color 0.25s ease;
}

.nested-subgroup.open .nested-arrow {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.nested-subgroup-body {
    display: none;
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 6px;
    flex-direction: column;
    gap: 10px;
}

.nested-subgroup.open .nested-subgroup-body {
    display: flex;
}

/* Sidebar Callout Card */
.sidebar-promo-card {
    background: linear-gradient(135deg, #1b3045 0%, #12202f 100%);
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

.promo-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.sidebar-promo-card h4 {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.sidebar-promo-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    line-height: 1.4;
}

.btn-red-pill-sm {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-red-pill-sm:hover {
    background-color: #88091a;
}

/* Catalog Main Area */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #eaedf1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.search-box-wrap {
    position: relative;
    flex-grow: 1;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.catalog-card:hover {
    transform: translateY(-4px);
    border-color: #eaedf1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(168, 12, 33, 0.2);
}

.catalog-card .card-img-box {
    width: 100%;
    height: 270px;
    background-color: #f7f6f0;
    padding: 24px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f2f5;
}

.catalog-card .card-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.catalog-card .card-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-card .card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.35;
}

.catalog-card .card-spec {
    font-size: 12px;
    color: #666666;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.card-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.card-unit-badge {
    display: inline-block;
    font-size: 11px;
    color: #555555;
    background: #f0f2f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}
    font-weight: 600;
    color: var(--secondary-color);
}

.card-unit {
    font-size: 12px;
    color: #777777;
}

.card-quote-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
}

/* No Results Box */
.no-results-box {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed #cccccc;
    max-width: 550px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #aaaaaa;
}

.no-results-box h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.no-results-box p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

/* Help Banner */
.catalog-help-banner {
    padding: 0 0 90px 0;
    background-color: #f8f9fa;
}

.help-card-inner {
    background: linear-gradient(135deg, #1b3045 0%, #12202f 100%);
    border-radius: 16px;
    padding: 40px 45px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.help-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.help-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.help-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* Quick Quote Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--secondary-color);
}

.modal-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 4px;
}

.modal-spec {
    font-size: 13px;
    color: #666666;
    margin-bottom: 22px;
}

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

.modal-form .form-submit-row {
    margin-top: 24px;
}

/* Mobile Filter Bar & Drawer Styling */
.mobile-filter-bar {
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #eaedf1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.mobile-filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-filter-toggle-btn:hover {
    background: #12202f;
}

.mobile-item-count {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
}

.sidebar-close-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #888888;
    cursor: pointer;
}

.sidebar-mobile-apply {
    display: none;
    margin-top: 20px;
}

.sidebar-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Catalog Mobile Responsiveness */
@media (max-width: 1200px) {
    .catalog-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mobile-filter-bar {
        display: flex;
    }

    .catalog-layout-split {
        grid-template-columns: 1fr;
    }

    /* Mobile Sidebar Drawer Slide-In */
    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 99995;
        overflow-y: auto;
        border-radius: 0;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    }

    .catalog-sidebar.mobile-open {
        left: 0;
    }

    .sidebar-close-mobile {
        display: block;
    }

    .sidebar-mobile-apply {
        display: block;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

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

    .help-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .help-actions {
        flex-direction: column;
        width: 100%;
    }

    .help-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .catalog-card .card-img-box {
        height: 180px;
        padding: 12px 10px;
    }

    .catalog-card .card-body {
        padding: 12px 10px;
    }

    .catalog-card .card-title {
        font-size: 13.5px;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .catalog-card .card-spec {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .card-price-row {
        margin-bottom: 10px;
        gap: 4px;
    }

    .card-price {
        font-size: 13.5px;
    }

    .card-quote-btn {
        padding: 8px 10px;
        font-size: 11.5px;
    }
}

/* ==========================================================================
   Door Hardware Page Styling
   ========================================================================== */
.hardware-types-section {
    padding: 70px 0 90px 0;
    background-color: #ffffff;
}

.hardware-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.hardware-item-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 16px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.hardware-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(27, 48, 69, 0.1);
}

.hardware-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(168, 12, 33, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.hardware-card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hardware-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hardware-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hardware-card-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Designer Hardware Showcase Section */
.designer-hardware-section {
    padding: 0 0 90px 0;
}

.designer-card-inner {
    background: linear-gradient(135deg, #1b3045 0%, #12202f 100%);
    border-radius: 20px;
    padding: 50px 60px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(27, 48, 69, 0.15);
}

.designer-text-col {
    max-width: 850px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.designer-headline {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.designer-paragraph {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 16px;
}

.quick-fix-callout {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px 0 30px 0;
}

.callout-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.callout-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.callout-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.designer-actions {
    display: flex;
    gap: 16px;
}

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

    .designer-card-inner {
        padding: 35px 25px;
    }

    .designer-headline {
        font-size: 24px;
    }

    .quick-fix-callout {
        flex-direction: column;
        text-align: center;
    }

    .designer-actions {
        flex-direction: column;
    }

    .designer-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hardware-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Mouldings Page Styling
   ========================================================================== */
.moulding-styles-section {
    padding: 70px 0 90px 0;
    background-color: #ffffff;
}

.moulding-gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid #eaedf1;
}

.gallery-item.main-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(27,48,69,0.92), transparent);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
}

.moulding-styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.moulding-style-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.moulding-style-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(27, 48, 69, 0.1);
}

.moulding-card-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-color);
    background: rgba(168, 12, 33, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.moulding-card-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.moulding-card-desc {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.moulding-benefits-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.benefits-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #eaedf1;
    border-radius: 14px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.55;
    margin: 0;
}

/* Installation Showcase Section */
.moulding-install-section {
    padding: 80px 0;
}

.install-card-inner {
    background: linear-gradient(135deg, #1b3045 0%, #12202f 100%);
    border-radius: 20px;
    padding: 50px 60px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(27, 48, 69, 0.15);
}

.install-text-col {
    max-width: 850px;
}

.install-headline {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.install-paragraph {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 16px;
}

.install-actions {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

@media (max-width: 992px) {
    .moulding-gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.main-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 320px;
    }

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

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

    .install-card-inner {
        padding: 35px 25px;
    }

    .install-headline {
        font-size: 24px;
    }

    .install-actions {
        flex-direction: column;
    }

    .install-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .moulding-gallery-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-item.main-large {
        grid-column: span 1;
        height: 240px;
    }

    .moulding-styles-grid,
    .benefits-4-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Page Hero Banner Styling (Fully Responsive with BG Image)
   ========================================================================== */
.page-banner {
    position: relative;
    padding: 110px 0 95px 0;
    background: linear-gradient(135deg, rgba(27, 48, 69, 0.70) 0%, rgba(14, 26, 38, 0.80) 100%), url('../assets/images/hero-moulding-bg.png') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 30%, rgba(168, 12, 33, 0.22), transparent 70%);
    pointer-events: none;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner .badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
}

.page-banner .dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
}

.page-banner .page-title {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    text-align: center;
}

.page-banner .page-subtitle {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 680px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.page-banner .banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.page-banner .btn-red-pill {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(168, 12, 33, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.page-banner .btn-red-pill:hover {
    background-color: #8c0a1b;
    border-color: #8c0a1b;
    transform: translateY(-2px);
    color: #ffffff;
}

.page-banner .btn-outline-white {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
}

.page-banner .btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .page-banner {
        padding: 70px 0 60px 0;
    }

    .page-banner .page-title {
        font-size: 30px;
    }

    .page-banner .page-subtitle {
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 55px 0 45px 0;
    }

    .page-banner .page-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .page-banner .page-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .banner-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Minimal Tabs Component (Plain Centered)
   ========================================================================== */
.minimal-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 35px;
}

.minimal-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.minimal-tab-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    padding: 6px 4px;
    transition: all 0.25s ease;
    position: relative;
}

.minimal-tab-btn:hover {
    color: var(--primary-color);
}

.minimal-tab-btn.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.minimal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2.5px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.tab-divider {
    color: #d0d5dd;
    font-size: 14px;
}

/* ==========================================================================
   Lockup Stage Flow (From Frame to Finish) Dark Glassmorphic Showcase Section
   ========================================================================== */
.stage-flow-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #1b3045 0%, #12202f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stage-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.stage-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(168, 12, 33, 0.25);
}

.stage-number-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stage-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stage-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.stage-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 576px) {
    .stage-flow-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Minimal Simple Accordion Styling (No background cards, subtle line dividers)
   ========================================================================== */
.simple-accordion-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.simple-accordion-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.simple-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.simple-accordion-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.2s ease;
}

.simple-accordion-arrow {
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.simple-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding-top: 0;
}

.simple-accordion-body p {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.65;
    margin: 10px 0 4px 0;
}

/* Active State */
.simple-accordion-item.active .simple-accordion-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.simple-accordion-item.active .simple-accordion-arrow {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.simple-accordion-item.active .simple-accordion-body {
    max-height: 200px;
    opacity: 1;
    padding-top: 4px;
}

/* ==========================================================================
   Homepage Minimal Category Tabs (Horizontally Scrollable on Mobile)
   ========================================================================== */
.minimal-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    margin-bottom: 25px;
    scrollbar-width: none; /* Firefox */
}

.minimal-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.minimal-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    width: max-content;
    padding: 0 4px;
}

.minimal-tab-btn {
    background: transparent;
    border: none;
    font-size: 14.5px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.25s ease;
    outline: none;
}

.minimal-tab-btn:hover {
    color: var(--primary-color);
    background: #f1f5f9;
}

.minimal-tab-btn.active {
    color: var(--secondary-color);
    background: #fff0f2;
    font-weight: 600;
}

.tab-divider {
    color: #cbd5e1;
    font-size: 13px;
    user-select: none;
}

.minimal-tab-panel {
    display: none;
}

.minimal-tab-panel.active {
    display: block;
    animation: fadeInTab 0.35s ease;
}

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

/* Homepage 3-Parent Category & Subcategory Sidebar Buttons */
.home-parent-cat-btn,
.moulding-subcat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    outline: none;
}

.home-parent-cat-btn:hover,
.moulding-subcat-btn:hover {
    border-color: var(--secondary-color, #e62329);
    background: #fff5f5;
    color: var(--secondary-color, #e62329);
    transform: translateX(3px);
}

.home-parent-cat-btn.active,
.moulding-subcat-btn.active {
    background: var(--secondary-color, #e62329);
    border-color: var(--secondary-color, #e62329);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(230, 35, 41, 0.25);
}

.home-parent-cat-btn .cat-count-badge,
.moulding-subcat-btn .cat-count-badge {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.home-parent-cat-btn.active .cat-count-badge,
.moulding-subcat-btn.active .cat-count-badge {
    color: #ffffff;
    opacity: 0.95;
}

/* 4-Card Alignment Grid for Buyer's Guide */
.benefits-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 50:50 Responsive Section Split Grid */
.overview-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

    .overview-grid-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .benefits-4-grid {
        grid-template-columns: 1fr;
    }

    .banner-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .banner-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Section Button Row Alignment & Spacing */
.section-btn-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 25px;
}

@media (max-width: 576px) {
    .section-btn-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 14px;
    }

    .section-btn-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Homepage Category Showcase Section (Exact 100% Match to Client Reference)
   ========================================================================== */
.categories-showcase-section {
    padding: 80px 0 90px 0;
    background-color: #ffffff;
}

.cat-top-showcase-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 35px;
}

.cat-showcase-img-box {
    width: 100%;
    height: 420px;
    border-radius: 0px !important; /* 100% FLAT SQUARE CORNERS - ZERO ROUNDNESS */
    overflow: hidden;
}

.cat-showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px !important;
}

.cat-showcase-text-box {
    position: relative;
    padding: 20px 10px 20px 30px;
}

.cat-watermark-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 68px;
    font-weight: 700;
    color: rgba(220, 224, 230, 0.38);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.cat-showcase-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #9b8265; /* Taupe gold color matching screenshot */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cat-showcase-desc {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1.7;
    color: #777777;
    margin-bottom: 32px;
    max-width: 460px;
}

.cat-search-link {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9b8265; /* Matching reference gold color */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cat-search-link:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* 4-COLUMN CATEGORY CARDS GRID (EXACT MATCH TO REFERENCE SCREENSHOT) */
.cat-cards-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* EXACT 4 COLUMNS PER ROW MATCHING SCREENSHOT */
    gap: 3px; /* Minimal clean spacing matching screenshot */
    background-color: #ffffff;
}

.cat-card-item-flat {
    position: relative;
    height: 260px;
    border-radius: 0px !important; /* 100% FLAT SQUARE CORNERS - ZERO ROUNDNESS */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #1a1a1a;
}

.cat-card-bg-flat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0px !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-card-overlay-flat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.3s ease;
}

.cat-card-content-flat {
    position: relative;
    z-index: 2;
    padding: 15px;
    text-align: center;
}

.cat-card-title-flat {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.cat-card-item-flat:hover .cat-card-bg-flat {
    transform: scale(1.06);
}

.cat-card-item-flat:hover .cat-card-overlay-flat {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
    .cat-top-showcase-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cat-showcase-text-box {
        padding-left: 0;
    }
    .cat-showcase-img-box {
        height: 320px;
    }
    .cat-watermark-text {
        font-size: 48px;
        top: -15px;
    }
    .cat-cards-grid-4col {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 6px;
    }
    .cat-card-item-flat {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .categories-showcase-section {
        padding: 50px 0 60px 0;
    }
    .cat-showcase-img-box {
        height: 240px;
    }
    .cat-watermark-text {
        display: none;
    }
    .cat-showcase-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .cat-showcase-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }
    .cat-cards-grid-4col {
        grid-template-columns: repeat(2, 1fr); /* 2 clean compact columns on mobile */
        gap: 6px;
    }
    .cat-card-item-flat {
        height: 150px;
    }
    .cat-card-content-flat {
        padding: 10px;
    }
    .cat-card-title-flat {
        font-size: 15px;
        line-height: 1.25;
        word-break: break-word;
    }
}

/* ==================================================
   GLOBAL MOBILE RESPONSIVE BREAKPOINT SYSTEM
   ================================================== */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 15px;
    }
    .btn {
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .pdp-grid, .about-grid, .overview-grid-ref {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .catalog-layout-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-title {
        font-size: 28px;
        line-height: 1.25;
    }
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .page-title, .section-title {
        font-size: 24px;
        line-height: 1.25;
    }
    .catalog-products-grid, .bestsellers-4col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .catalog-card .card-img-box {
        height: 150px;
        padding: 8px;
    }
    .catalog-card .card-body {
        padding: 10px 8px;
    }
    .catalog-card .card-title {
        font-size: 13px;
    }
    .btn {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* Door Hardware Subcategory Pill Tab Buttons */
.hw-subcat-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    white-space: nowrap;
}

.hw-subcat-pill-btn:hover {
    border-color: var(--secondary-color, #e62329);
    color: var(--secondary-color, #e62329);
    background: #fff5f5;
}

.hw-subcat-pill-btn.active {
    background: var(--secondary-color, #e62329);
    border-color: var(--secondary-color, #e62329);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(230, 35, 41, 0.25);
}









