:root {
    --primary-green: #054334;
    --gold: #D4AF37;
    --gold-hover: #b8932e;
    --white: #ffffff;
    --text-muted: #f8f9fa;
    --font-main: 'Inter', sans-serif;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 5px;
}

*::-webkit-scrollbar-track {
    background-color: #000000dc;
}

body {
    font-family: var(--font-main);
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
.header-container {
    background: linear-gradient(135deg, var(--primary-green), #00684e);
    color: var(--gold);
}

.top-bar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px 0;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.top-bar a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateY(-1px);
}

.top-bar a.gold-link {
    color: var(--gold);
}

.top-bar a.gold-link:hover {
    color: var(--white);
}

/* Top Bar Dropdown */
.top-bar-dropdown .no-caret::after {
    display: none;
}

.top-bar-dropdown .dropdown-menu {
    overflow: hidden;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    z-index: 2000 !important;
}

.top-bar-dropdown .dropdown-item {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f1f1;
}

.top-bar-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.top-bar-dropdown .dropdown-item:hover {
    background-color: #f8fcfb;
    color: var(--primary-green);
    padding-left: 28px !important;
}

.top-bar-dropdown .dropdown-item i {
    color: var(--gold);
    font-size: 1rem;
}

/* Luxe Header Styles */
.luxe-header {
    width: 100%;
}

.luxe-main-nav {
    background-color: #1a1a1a;
    padding: 10px 0 10px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-back-home {
    background: var(--gold);
    color: #004126;
    font-weight: 700;
    border: 2px solid var(--gold);
    padding: 5px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-back-home:hover {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.luxe-header-logo {
    height: 38px;
    width: auto;
}

/* Luxe Hero Styles */
.luxe-hero-slide {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.luxe-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 6s ease-out;
    z-index: 0;
}

.carousel-item.active .luxe-hero-bg {
    transform: scale(1.1);
}

.luxe-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.luxe-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.luxe-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.carousel-item.active .luxe-hero-title {
    opacity: 1;
    transform: translateY(0);
}

.luxe-hero-text {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 600px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.carousel-item.active .luxe-hero-text {
    opacity: 1;
    transform: translateY(0);
}

/* Why Luxe Section */
.why-luxe {
    background-color: #ffffff;
}

.luxe-section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #333;
    font-weight: 400;
}

.luxe-script {
    font-family: 'Playball', cursive;
    color: var(--gold);
    font-size: 3.5rem;
    margin-left: 10px;
}

.why-luxe-icon {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.why-luxe-card:hover .why-luxe-icon {
    background: radial-gradient(#fff2c6 5%, rgba(255, 255, 255, 0) 60%);
    transform: scale(1.1);
}

.why-luxe-h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #b08d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-luxe-p {
    font-size: 0.95rem;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Luxe Journey Section */
.luxe-journey {
    background: linear-gradient(#fdf6da 0%, #ffffff 100%);
    overflow: visible;
    border-top: 4px solid #e6c853;
    border-bottom: 4px solid #e6c853;
}

.sticky-journey-content {
    position: sticky;
    top: 150px;
}

.journey-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #333;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.journey-steps {
    position: relative;
}

.journey-card-wrapper {
    position: sticky;
    top: 150px;
    margin-bottom: 60px;
    z-index: 1;
}

/* Stacking z-index for 7 cards with 5px offset */
.journey-card-wrapper:nth-child(1) {
    z-index: 1;
    top: 150px;
}

.journey-card-wrapper:nth-child(2) {
    z-index: 2;
    top: 160px;
}

.journey-card-wrapper:nth-child(3) {
    z-index: 3;
    top: 170px;
}

.journey-card-wrapper:nth-child(4) {
    z-index: 4;
    top: 180px;
}

.journey-card-wrapper:nth-child(5) {
    z-index: 5;
    top: 190px;
}

.journey-card-wrapper:nth-child(6) {
    z-index: 6;
    top: 200px;
}

.journey-card-wrapper:nth-child(7) {
    z-index: 7;
    top: 210px;
}

.journey-card {
    background: linear-gradient(135deg, #272727 0%, #000000 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    min-height: 260px;
    transition: transform 0.3s ease;
}

.journey-step-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.step-h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.step-p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 90%;
}

/* Dynamic Journey Icon Display */
.journey-icon-display {
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-display-img {
    height: 300px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Luxe Offerings Scroll */
.luxe-offerings {
    background-color: #ffffff;
}

.scroll-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    /* Subtle fade effect at edges */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.scroll-content {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    background: var(--gold);
    border-radius: 15px;
}

.offering-img {
    height: 280px;
    width: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 5px rgba(19, 19, 19, 0.253);
    transition: all 0.4s ease;
    cursor: pointer;
}

.offering-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #2b2b2b;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.offering-item:hover .offering-img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offering-item:hover .offering-title {
    color: var(--white);
}


/* Row 1: Left to Right */
.scroll-left .scroll-content {
    animation: scroll-l-to-r 40s linear infinite;
}

/* Row 2: Right to Left */
.scroll-right .scroll-content {
    animation: scroll-r-to-l 40s linear infinite;
}

.scroll-track:hover .scroll-content {
    animation-play-state: paused;
}

@keyframes scroll-l-to-r {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-r-to-l {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Luxe Spaces Section */
.space-tab {
    background: none;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #666;
    padding: 5px 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 700;
}

.space-tab:hover,
.space-tab.active {
    color: #b08d32;
    /* Gold */
    border-bottom-color: #b08d32;
}

.space-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.space-img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

#spaces-grid {
    transition: opacity 0.3s ease-in-out;
}

/* Luxe Partners Section */
.luxe-partners {
    background-color: #1a1a1a;
    position: relative;
    padding: 5.5rem 0 !important;
    overflow: hidden;
    z-index: 1;
}

.luxe-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
}

.footer-img {
    background-image: url(../images/lux/footer-img.png);
    background-size: contain;
    background-position: center;
    height: 50vh;
}

.footer-link {
    color: #b08d32;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.lux-bg-footer {
    background: #0000003d;
    backdrop-filter: blur(5px);
}


.partner-logo-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: all 0.4s ease;
    /* filter: grayscale(100%) opacity(0.6); */
}

.partner-logo-box:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.partner-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* Luxe FAQ Accordion */
.luxe-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 5px;
    background: transparent;
}

.luxe-accordion .accordion-button {
    background: transparent;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    padding: 30px 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.luxe-accordion .accordion-button:not(.collapsed) {
    color: #b08d32;
    /* Gold */
    background: transparent;
}

.luxe-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.luxe-accordion .accordion-body {
    padding: 0 0 30px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.luxe-accordion .accordion-button::after {
    filter: brightness(0.2);
}

.luxe-accordion .accordion-button:not(.collapsed)::after {
    filter: sepia(1) saturate(5) hue-rotate(10deg) brightness(0.8);
}

.main-nav {
    padding: 5px 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-green), #00684e);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    /* Ensure it's above other content */
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    /* Added flex to align icon beside text */
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

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

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.btn-estimate {
    background: linear-gradient(135deg, var(--gold), #c5a028);
    color: var(--primary-green);
    font-weight: 700;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    /* More modern rounded look */
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-estimate:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 10s ease;
}

.carousel-item.active .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.text-orange {
    color: #ce6e00;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Hero Specific */
.contact-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--primary-green);
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.contact-hero .hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(5, 67, 52, 0) 100%);
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-stats-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    padding: 30px 45px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.76);
}

/* Map Section Styles */
.map-section {
    background-color: #ffffff;
}

.map-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
}

/* Visit Section Styles */
.visit-section {
    background-color: #fffbe6;
}

.visit-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.visit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.visit-card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.visit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visit-card:hover .visit-card-img img {
    transform: scale(1.1);
}

.visit-card-body {
    padding: 30px;
}

.visit-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.visit-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.visit-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Custom Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--primary-green);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    border: 1px solid var(--gold);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    padding: 13px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Custom Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 80px;
    opacity: 1;
    z-index: 10;
}

.control-box {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.control-box:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-green);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: var(--gold);
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background-color: #fdfdfd;
    z-index: 1;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-overlay.png');
    background-repeat: no-repeat;
    background-position: left;
    opacity: 0.1;
    /* Subtle overlay as requested */
    z-index: -1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
}

/* Vertical Ticker Styles */
.ticker-wrapper {
    height: 350px;
    /* Adjust height to show ~3 cards */
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.ticker-content {
    animation: vertical-ticker 15s linear infinite;
    display: flex;
    flex-direction: column;
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes vertical-ticker {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Halfway through duplicate items */
}

/* Feature Card Styles */
.feature-card {
    background: #ffffff;
    border: 2px solid var(--gold);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(5, 67, 52, 0.08);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(5, 67, 52, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Designer Form Card */
.designer-form-card {
    background: #ffffff;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 60px rgba(5, 67, 52, 0.1);
    border-radius: 20px;
}

.custom-input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-form-submit {
    padding: 15px 30px;
    font-size: 1.0rem;
    font-weight: 700;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.disclaimer-text a {
    color: var(--primary-green);
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: var(--gold);
}

/* Design Gallery Sections */
.design-section {
    position: relative;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-green);
    position: relative;
    padding-left: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--gold);
    border-radius: 2px;
}

.see-all-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.design-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    aspect-ratio: 4 / 3;
    /* Ensure uniform card size */
}

.design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 67, 52, 0.15);
}

.design-card:hover img {
    transform: scale(1.1);
}

/* Gallery Carousel Controls */
.gallery-carousel {
    position: relative;
    padding: 0 40px;
    /* Space for buttons */
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.gallery-carousel .carousel-control-prev {
    left: -10px;
}

.gallery-carousel .carousel-control-next {
    right: -10px;
}

.design-section:hover .carousel-control-prev,
.design-section:hover .carousel-control-next {
    opacity: 1;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-carousel .carousel-inner {
    overflow: visible;
    /* Allow hover lift effect */
}

.gallery-carousel .carousel-indicators {
    position: absolute;
    bottom: -40px;
    margin: 0;
    gap: 10px;
}

.gallery-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(5, 67, 52, 0.2);
    border: none;
    transition: all 0.3s ease;
    text-indent: -999px;
    padding: 0;
}

.gallery-carousel .carousel-indicators button.active {
    background-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.title-primary-green {
    color: var(--primary-green);
}

.design-card-auto {
    aspect-ratio: auto !important;
}

/* Special Services & Promo Cards */
.service-promo-card {
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-promo-card.emerald-theme {
    background-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(5, 67, 52, 0.2);
}

.service-promo-card.gold-border-theme {
    background-color: #ffffff;
    border: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.promo-icon {
    width: 100%;
    max-width: 150px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.btn-gold-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.text-primary-green {
    color: var(--primary-green) !important;
}

/* Living Room & Design Card Additions */
.design-card-title {
    line-height: 1.4;
}

.living-promo-card {
    min-height: 320px;
}

.promo-icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
}

.promo-icon-circle i {
    font-size: 2.5rem;
}

.promo-card-text {
    line-height: 1.6;
}

/* Price Estimator Section */
.price-estimator-section {
    position: relative;
    background-color: #ffffff;
    z-index: 1;
    overflow: hidden;
    border-top: 4px solid #d4af376b;
    border-bottom: 4px solid #d4af376b;
}

.price-estimator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.estimator-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.estimator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.estimator-card h4 {
    color: var(--primary-green);
}

.calc-grid-icon {
    line-height: 1;
}

/* Design Session Steps Section */
.design-session-steps {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.step-box {
    transition: all 0.3s ease;
    padding: 20px;
}

.step-box:hover {
    transform: translateY(-10px);
    background: radial-gradient(#ffeebf, #ffffff00 60%);
}

.step-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.step-box:hover .step-image img {
    transform: scale(1.05);
}

.step-box p {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.curve-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

/* Move-In Journey Carousel Styling */
.move-in-journey {
    padding-bottom: 150px !important;
    position: relative;
    background-color: #fafafa;
    z-index: 1;
    overflow: hidden;
    border-bottom: 4px solid #d4af37;
}

.move-in-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg-square.png');
    background-repeat: repeat;
    background-position: center;
    z-index: -1;
}

.step-indicator-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.step-dot {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.journey-img {
    max-height: 400px;
    object-fit: contain;
}

#journeyCarousel .carousel-control-prev,
#journeyCarousel .carousel-control-next {
    width: 50px;
    opacity: 0.5;
}

#journeyCarousel .carousel-control-prev:hover,
#journeyCarousel .carousel-control-next:hover {
    opacity: 1;
}

.dropdown-menu {
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.luxe-section {
    background-image: url(../images/home-living.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 85vh;
    border-bottom: 4px solid #d4af376b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-luxe-box {
    background-color: #0543349a;
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.luxe-intro-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.luxe-brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.5rem;
    gap: 15px;
}

.luxe-logo-img {
    height: 120px;
    width: auto;
}

.btn-luxe-enter {
    background: linear-gradient(135deg, #b08d32, #7a5a1a);
    color: white !important;
    border: none;
    padding: 14px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(122, 90, 26, 0.25);
}

.btn-luxe-enter:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(122, 90, 26, 0.35);
    background: linear-gradient(135deg, #7a5a1a, #b08d32);
}

/* Mega Menu Specific Styling */
.mega-menu {
    width: 700px;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    border-top: 3px solid var(--gold);
    padding: 40px !important;
}

.mega-menu-large {
    width: 1140px;
    /* Standard container width */
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    border-top: 3px solid var(--gold);
    padding: 40px !important;
}

.mega-list li {
    margin-bottom: 20px;
}

.city-list a:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* Unified Dropdown Link Styling */
.dropdown-menu a,
.dropdown-item {
    color: #333 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    background: transparent !important;
}

.dropdown-menu a:hover,
.dropdown-item:hover {
    color: var(--gold) !important;
    transform: translateX(8px);
    background: transparent !important;
}

.dropdown-menu i {
    font-size: 1.4rem;
    color: var(--gold);
    width: 35px;
}

/* Dropdown Toggle Arrow with Bootstrap Icon */
.dropdown-toggle::after {
    display: inline-block;
    vertical-align: middle;
    content: "\F282";
    /* Bootstrap Icon bi-chevron-down */
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    border: none;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
    /* Slight adjustment for spacing */
}

.dropdown.show .dropdown-toggle::after,
.nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Open Dropdown on Hover */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-item.dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-50%) translateY(20px) !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        margin-top: 0;
        top: 100% !important;
        /* Ensure it starts below the link */
        border: none;
        border-radius: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    /* For non-mega menus, don't use translateX(-50%) */
    .nav-item.dropdown .dropdown-menu:not(.mega-menu):not(.mega-menu-large) {
        left: 0 !important;
        transform: translateY(15px) !important;
    }

    .nav-item.dropdown:hover .dropdown-menu:not(.mega-menu):not(.mega-menu-large) {
        transform: translateY(0) !important;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        pointer-events: auto;
    }
}

/* Gold underline for active/open menu */
.nav-item.show .nav-link,
.nav-item:hover .nav-link {
    color: var(--gold) !important;
}

.nav-item.show .nav-link::after {
    width: 100%;
    background-color: var(--gold);
}

.offering-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-item:active {
    background-color: var(--primary-green);
}

/* Customer Stories Testimonials */
.testimonials-section {
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 100px 0;
}

.testimonial-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-ticker {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: horizontal-ticker 60s linear infinite;
    padding-left: 30px;
}

.testimonial-ticker:hover {
    animation-play-state: paused;
}

@keyframes horizontal-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 3px solid var(--primary-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.client-profile {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.client-name {
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    text-align: justify;
}

/* Vastu Section */
.vastu-section {
    background-color: #fff5c6;
    /* Warm creamy yellow */
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    border-top: 4px solid #ce6e00;
    border-bottom: 4px solid #ce6e00;
}

.chakra-rotating {
    position: absolute;
    top: -310px;
    right: -100px;
    width: 600px;
    animation: rotate-chakra 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate-chakra {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.vastu-img-container {
    position: relative;
    z-index: 1;
}

.vastu-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.2);
    border: 5px solid #ffffff;
}

.vastu-content {
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.vastu-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 25px;
}

.vastu-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-vastu {
    background-color: #ce6e00;
    color: #ffffff !important;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(5, 67, 52, 0.2);
}

.btn-vastu:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Interior Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 20px;
    margin-top: 60px;
}

.solution-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0px 30px #b08c3250;
}

.solution-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon-box {
    transform: scale(1.1);
}

.solution-icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.solution-item span {
    display: block;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1rem;
    line-height: 1.4;
}

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

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

/* NRI Section */
.nri-section {
    position: relative;
    background-color: #ffffff;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
    border-top: 4px solid #d4af376b;
    border-bottom: 4px solid #d4af376b;
}

.nri-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.nri-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 25px;
}

.nri-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.btn-nri {
    background-color: var(--primary-green);
    color: #ffffff !important;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(5, 67, 52, 0.2);
}

.btn-nri:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.nri-image-container img {
    width: 80%;
    border-radius: 20px;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 650px;
    /* Increased from 480px */
    margin: 0 auto;
}

.experience-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.experience-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.experience-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.location-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #d4af376b;
    color: #000;
    padding: 10px 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 2;
}

.experience-item:hover .location-tag {
    opacity: 0;
    transform: translateY(100%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-title {
    margin-bottom: 60px;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-green);
    padding: 30px 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
}

.faq-accordion .accordion-button::after {
    background-size: 1.2rem;
}

.faq-accordion .accordion-body {
    padding: 0 0 35px 0;
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 90%;
}

.experience-content {
    padding-left: 40px;
}

.experience-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 35px;
}

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

.google-logo {
    width: 50px;
}

.rating-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

.rating-info span {
    color: #888;
    font-weight: 400;
    font-size: 0.95rem;
}

.trust-metrics-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 25px;
}

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

.trust-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-text-wrapper {
    text-align: left;
}

.trust-text-wrapper h5 {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 2px !important;
}

.trust-text-wrapper p {
    font-size: 0.82rem;
    line-height: 1.4;
}

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

/* CTA Section */
.cta-section {
    background-color: #d8fff2;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.8;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 67, 52, 0.03) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.cta-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    height: 100%;
    max-width: 40%;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
}

/* Features Highlights Section */
.features-highlights {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--gold);
}

.feature-item h5 {
    color: var(--primary-green);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.feature-item p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-item {
        border-bottom: 1px solid #eee;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

.feature-overlay {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    max-width: 30%;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

/* Footer Section */
.main-footer {
    background: url(../images/footer-bg-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-overlay-img {
    position: absolute;
    bottom: -11%;
    right: 0;
    height: 100%;
    max-width: 300px;
    object-fit: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.footer-overlay-img-2 {
    position: absolute;
    top: -36%;
    left: 0;
    height: 100%;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

/* Media & Partners Sections */
.media-section {
    border-top: 4px solid #d4af376b;
    background: linear-gradient(to top, #ffffff, #fdf6e9);
}

.media-logo {
    max-height: 150px;
    transition: all 0.3s ease;
}

.media-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-ticker-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
}

.logo-ticker {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: logo-scroll 40s linear infinite;
}

.logo-ticker:hover {
    animation-play-state: paused;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-section {
    border-bottom: 4px solid #d4af376b;
    background: linear-gradient(#ffffff, #fdf6e9);
}

.partner-logo img {
    height: 110px;
    width: auto;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-contact-info {
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

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

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 40px;
    }
}

/* Partner Page Styles */
.partner-header {
    background-color: var(--primary-green);
}

.partner-header img {
    height: 80px;
}

.partner-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: url('../images/partner-hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.partner-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    border-top: 5px solid var(--gold);
}

.partner-form-container h2 {
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 2rem;
}

.partner-form-container .form-control,
.partner-form-container .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.partner-form-container .form-control:focus,
.partner-form-container .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.1);
}

.btn-signup {
    background: var(--gold);
    color: var(--primary-green);
    font-weight: 700;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-signup:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .partner-header img {
        height: 55px;
    }
    .partner-hero {
        height: auto;
        padding: 40px 0;
    }
    .partner-form-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 24px 20px;
    }
    .partner-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }
    .partner-form-container .form-control,
    .partner-form-container .form-select {
        padding: 10px 12px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .btn-signup {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Who Can Partner Section */
.who-can-partner {
    background-color: #fdf6e9;
}

.criteria-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.criteria-item {
    display: flex;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.criteria-item:last-child {
    border-bottom: none;
}

.criteria-item:hover {
    background-color: #fafafa;
}

.criteria-label {
    min-width: 180px;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.criteria-value {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .criteria-item {
        flex-direction: column;
        padding: 20px;
    }

    .criteria-label {
        min-width: 100%;
        margin-bottom: 8px;
    }
}

/* Founders Section */
.founder-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 10;
}

.founder-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.founder-card h5 {
    letter-spacing: 0.5px;
}

/* EBO Section */
.ebo-banner {
    height: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ebo-bg-img {
    height: 100%;
    object-fit: cover;
}

.ebo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 67, 52, 0.95) 0%, rgba(5, 67, 52, 0.7) 50%, transparent 100%);
    z-index: 1;
}

.ebo-card {
    position: relative;
    z-index: 2;
}

.tracking-widest {
    letter-spacing: 2px;
}

.ebo-card h2 {
    line-height: 1.2;
}

@media (max-width: 991px) {
    .ebo-banner {
        height: auto;
    }

    .ebo-overlay {
        background: rgba(5, 67, 52, 0.9);
        position: relative;
        padding: 40px 0;
    }

    .ebo-bg-img {
        position: absolute;
    }
}

/* Modern Accordion Styles */
.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-card {
    background: #f8fcfb;
    border-radius: 20px;
    border: 1px solid #e0f2ee;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card.active {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(5, 67, 52, 0.08);
}

.accordion-trigger {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.trigger-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.acc-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.6;
}

.accordion-card.active .acc-number {
    opacity: 1;
}

.trigger-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.4s ease;
}

.accordion-card.active .trigger-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.accordion-card.active .accordion-content {
    max-height: 500px;
    padding-bottom: 40px;
}

.support-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 1rem;
}

.support-list-modern i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .accordion-trigger {
        padding: 20px;
    }
}

/* Counter Section */
.counter-section {
    background-color: #ffffff;
}

.counter-number-wrapper {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-val {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a6b54 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-suffix {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

.counter-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .counter-number-wrapper {
        font-size: 3.5rem;
    }
}

/* Mission Section */
.mission-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
}

.collage-item {
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.collage-item:hover img {
    transform: scale(1.1);
}

.mission-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fdf6e9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-feature-box:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.mf-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.mission-feature-box:hover .mf-icon {
    background: var(--gold);
}

/* Interior Design Page Styles */
.interior-hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    height: 85vh;
    width: 100%;
    position: relative;
}

.hero-main-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.904) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 60%);
}

.hero-content-box {
    position: absolute;
    bottom: 12%;
    left: 5%;
    z-index: 5;
    max-width: 1000px;
}

.hero-content-box h2 {
    font-family: var(--font-main);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .interior-hero,
    .hero-image-wrapper {
        height: 60vh;
    }

    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .hero-content-box {
        left: 0;
        right: 0;
        text-align: center;
        padding-left: 15px !important;
        padding-right: 15px !important;
        bottom: 15%;
    }
}

/* Description Section */
.description-section {
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg-square.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: rotate(180deg);
    pointer-events: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/" !important;
    color: #ccc !important;
}

.text-gold {
    color: var(--gold) !important;
}

.description-text {
    font-size: 1.45rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.description-text b,
.description-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

@media (max-width: 768px) {
    .description-text {
        font-size: 1.15rem;
        line-height: 1.6;
    }
}

/* Why Veloxia Section */
.why-veloxia-section {
    background-color: #ffffff;
}

.border-topbottom {
    border-top: 4px solid #d4af376b;
    border-bottom: 4px solid #d4af376b;
    background-color: #fdf6e9;
}

.why-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.why-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-calendar-box,
.icon-eye-box,
.icon-warranty-box,
.icon-emi-box {
    font-size: 4.5rem;
    color: var(--primary-green);
    position: relative;
    line-height: 1;
}

.cal-days {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.rupee-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid #fff;
}

.percent-overlay {
    position: absolute;
    bottom: 5px;
    right: -5px;
    background: var(--gold);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid #fff;
}

.why-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .why-title {
        font-size: 1.8rem;
    }
}

/* Expert Designers Section Styles */
.expert-designer-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-designer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 67, 52, 0.12);
    border-color: rgb(212, 175, 55);
}

.expert-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 20px;
    position: relative;
}

.expert-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.expert-designer-card:hover .expert-img-wrapper img {
    transform: scale(1.06);
}

.expert-name {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 4px;
}

.expert-location {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.expert-stats-divider {
    height: 35px;
    width: 1.5px;
    background-color: rgba(0, 0, 0, 0.08);
}

.expert-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 0;
}

.expert-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

/* Living Room Section & Overlays */
.living-room-designs {
    position: relative !important;
    overflow: hidden;
}

/* FAQ Lists */
.faq-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.faq-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

.faq-sublist {
    padding-left: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
    list-style-type: circle;
}

.faq-sublist li {
    margin-bottom: 6px;
}

/* Wardrobe Materials Section */
.material-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.material-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 67, 52, 0.15);
}

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

.material-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 20px 20px 20px;
    color: var(--white);
    text-align: left;
    pointer-events: none;
}

.material-overlay h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Sleek Wardrobe Finishes Section */
.finishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.finish-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.finish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.finish-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(5, 67, 52, 0.2);
    border-color: var(--gold);
}

.finish-card:hover img {
    transform: scale(1.1);
}

.finish-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(5, 67, 52, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    transition: all 0.4s ease;
}

.finish-badge h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--gold);
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.finish-card:hover .finish-badge {
    background: var(--gold);
    border-color: var(--white);
}

.finish-card:hover .finish-badge h5 {
    color: var(--primary-green);
}

/* Custom Wardrobes Designed Around You Styles */
.custom-value-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.custom-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 67, 52, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.custom-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-value-card:hover::before {
    opacity: 1;
}

.value-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(5, 67, 52, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.custom-value-card:hover .value-icon-box {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.1);
}

/* Estimate Banner Card Styles */
.estimate-premium-card {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.estimate-premium-card:hover {
    box-shadow: 0 25px 50px rgba(5, 67, 52, 0.15) !important;
    transform: translateY(-4px);
}

.btn-estimate-custom {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-estimate-custom:hover {
    background-color: var(--gold);
    color: var(--primary-green) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Home Office Overview Overlay */
.home-office-overview {
    position: relative;
    overflow: hidden;
}

.home-office-overview::before {
    content: '';
    position: absolute;
    top: 70%;
    left: -20px;
    transform: translateY(-50%);
    width: 500px;
    height: 90%;
    background-image: url('../images/home-sketch-overlay.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .home-office-overview::before {
        width: 250px;
        opacity: 0.15;
        left: -10px;
    }
}

/* Featured Products Section Styles */
.featured-products-section {
    position: relative;
    background-color: #fcfcfc;
    padding-top: 80px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid #d4af376b;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featured-products-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 67, 52, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featured-product-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(5, 67, 52, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(5, 67, 52, 0.12);
    border-color: var(--gold);
}

.featured-product-card img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-desc-text {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555555;
    text-align: justify;
}

.product-more-btn {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-more-btn:hover {
    color: var(--gold);
    text-decoration: underline;
}

.spec-container {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.25rem;
    margin-top: 1.5rem;
}

.spec-title {
    font-size: 1.05rem;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.spec-value {
    color: #777777;
    font-size: 0.95rem;
}

.custom-slider-btn {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #555555;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 5;
}

.custom-slider-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.indicator-dot {
    width: 8px !important;
    height: 8px !important;
    background-color: #dddddd !important;
    border: none !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    text-indent: -999px;
    cursor: pointer;
    margin: 0 4px !important;
}

.indicator-dot.active {
    background-color: var(--gold) !important;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 231, 12, 0.4);
}

/* Package Card Styles */
.package-sections-wrapper {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
    border-bottom: 4px solid #d4af376b;
}

.package-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(5, 67, 52, 0.12);
    border-color: var(--gold);
}

.package-card-title {
    font-size: 1.45rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 6px;
}

.package-card-subtitle {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 40px;
}

.package-img-wrapper {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.package-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.06);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), #e6c853);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}

.package-price-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.btn-gold-outline {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Offerings Hero Slider */
.offerings-hero {
    height: 85vh;
    overflow: hidden;
    position: relative;
}

.offerings-hero .carousel-item {
    height: 85vh;
}

.offerings-hero .hero-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
    transition: transform 12s linear;
}

.offerings-hero .carousel-item.active .hero-bg {
    transform: scale(1.15);
}

.offerings-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.603) 0%, rgba(5, 67, 52, 0) 50%);
    z-index: 1;
}

.offerings-hero .hero-caption-custom {
    position: absolute;
    bottom: 60px;
    left: 5%;
    z-index: 5;
    text-align: left;
}

.offerings-hero .hero-title-custom {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
    margin: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    line-height: 1.1;
}

.offerings-hero .carousel-item.active .hero-title-custom {
    opacity: 1;
    transform: translateY(0);
}

.offerings-hero .carousel-indicators {
    justify-content: flex-start;
    left: 5%;
    margin: 0;
    bottom: 30px;
}

.offerings-hero .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.offerings-hero .carousel-indicators .active {
    background-color: var(--gold);
    width: 35px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .offerings-hero .hero-title-custom {
        font-size: 2.8rem;
    }

    .offerings-hero {
        height: 70vh;
    }

    .offerings-hero .carousel-item {
        height: 70vh;
    }
}

/* Modular Collection Section */
.modular-collection {
    position: relative;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
}

.modular-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-overlay.png');
    background-repeat: no-repeat;
    background-position: left;
    opacity: 0.05;
    z-index: -1;
}

.modular-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.modular-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.modular-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.modular-label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #fff;
    padding: 12px 30px;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    z-index: 2;
    border-top-right-radius: 8px;
}

.see-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 67, 52, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.modular-card:hover .see-more-overlay {
    opacity: 1;
}

.modular-card:hover .modular-img {
    transform: scale(1.1);
}

.see-more-btn {
    background-color: var(--gold);
    color: var(--primary-green);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-btn:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

.arriving-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.arriving-soon-text {
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.modular-card.arriving-soon:hover .modular-img {
    filter: blur(8px) brightness(0.8);
    transform: scale(1.05);
}

.modular-card.arriving-soon:hover .arriving-soon-overlay {
    opacity: 1;
}

.collection-separator {
    color: #555;
    max-width: 850px;
    margin: 40px auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Home Decor Section */
.home-decor-section {
    background-color: #fdf6e9;
    position: relative;
    overflow: hidden;
}

.home-decor-section::after {
    content: '';
    position: absolute;
    top: -30px;
    right: 0px;
    width: 200px;
    height: 200px;
    background-image: url('../images/footer-overlay-icn-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    pointer-events: none;
    z-index: 0;
}

.home-decor-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    margin-bottom: 20px;
}

.home-decor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.home-decor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-decor-card:hover .home-decor-img {
    transform: scale(1.1);
}

.golden-label-bar {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.home-decor-card:hover .golden-label-bar {
    background: rgba(5, 67, 52, 0.85);
    padding: 16px 10px;
}

.decor-card-title {
    color: var(--white);
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.decor-description {
    max-width: 850px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    position: relative;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f2f2f2;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(5, 67, 52, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.03;
    transition: all 0.5s ease;
}

.service-card:hover::after {
    transform: scale(3);
    opacity: 0.05;
}

.service-icon-box {
    width: 90px;
    height: 90px;
    background: #fdfdfd;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card:hover .service-icon-box {
    background: var(--primary-green);
    transform: rotate(10deg);
    border-radius: 50%;
}

.service-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon-box i {
    color: var(--gold);
    transform: scale(1.1) rotate(-10deg);
}

.service-card h4 {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #777;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.services-subtitle {
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Furniture & Appliances Section */
.furniture-appliances-section {
    background-color: #fdf6e9;
    padding: 100px 0;
}

.furniture-layout,
.appliances-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.side-content {
    flex: 0 0 300px;
}

.side-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

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

.cat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5.5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.1);
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 10px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.cat-card:hover .cat-label {
    background: linear-gradient(0deg, var(--gold) 0%, rgba(212, 175, 55, 0.7) 100%);
    padding-bottom: 15px;
}

.side-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.side-content p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .side-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .appliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {

    .furniture-layout,
    .appliances-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .appliances-layout {
        flex-direction: column-reverse;
    }

    .side-content {
        flex: 1;
        max-width: 600px;
    }

    .side-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {

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

/* Quality Section */
.quality-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.quality-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.quality-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.quality-card:hover .quality-icon-wrapper {
    background: var(--primary-green);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(5, 67, 52, 0.15);
}

.quality-icon-wrapper i {
    font-size: 2.8rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.quality-card:hover .quality-icon-wrapper i {
    color: var(--gold);
}

.quality-card h4 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.quality-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Compare Section */
.compare-section {
    padding: 100px 0;
    background-color: #fdf6e9;
}

.compare-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    max-width: 1100px;
    margin: 0 auto;
}

.compare-header {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    padding: 10px 20px;
    background: var(--primary-green);
    align-items: center;
    text-align: center;
    border-bottom: none;
}

.compare-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.compare-logo {
    height: 100px;
    object-fit: contain;
}

.local-brand {
    color: #ffffff;
    letter-spacing: 1px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.compare-body {
    display: flex;
    flex-direction: column;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-col {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.compare-col.local-col {
    background: #fafafa;
    border-left: 1px solid #f0f0f0;
}

.compare-icon-box {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
}

.veloxia-col .compare-icon-box {
    background: rgba(5, 67, 52, 0.05);
}

.local-col .compare-icon-box {
    background: #f0f0f0;
}

.compare-icon-box i {
    font-size: 1.8rem;
}

.veloxia-col i {
    color: var(--primary-green);
}

.local-col i {
    color: #999;
}

.compare-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.local-col .compare-text {
    color: #777;
    font-weight: 500;
}

@media (max-width: 768px) {
    .compare-section {
        padding: 50px 0;
    }

    .compare-card {
        border-radius: 20px;
    }

    .compare-header {
        grid-template-columns: 1fr 40px 1fr;
        gap: 5px;
        padding: 15px 10px;
    }

    .compare-logo {
        height: 35px;
    }

    .compare-header h3 {
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .vs-circle {
        display: flex !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 0.75rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    }

    .compare-row {
        grid-template-columns: 1fr 1fr;
    }

    .compare-col {
        padding: 15px 8px;
        gap: 8px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .compare-col.local-col {
        border-left: 1px solid #f0f0f0;
        border-top: none;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .compare-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .compare-icon-box i {
        font-size: 1.1rem;
    }

    .compare-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Kitchen Calculator Hero */
.kitchen-calculator-hero {
    height: 50vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%), url('../images/kitchen-calculator-hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.kitchen-calculator-hero .hero-content {
    max-width: 700px;
    color: var(--white);
    padding-left: 20px;
}

.kitchen-calculator-hero .hero-subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    animation: heroFadeInUp 0.8s ease forwards;
}

.kitchen-calculator-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
    animation: heroFadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.kitchen-calculator-hero .hero-text {
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 30px;
    opacity: 0;
    line-height: 1.7;
    animation: heroFadeInUp 0.8s ease forwards 0.4s;
}

.kitchen-calculator-hero .btn-gold {
    animation: heroFadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* FAQ Navigation Portal Styles */
.faq-navigation-portal {
    background-color: #f8fbf9;
}

.faq-sidebar-menu {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(5, 67, 52, 0.05);
    border: 1px solid rgba(5, 67, 52, 0.1);
    position: sticky;
    top: 100px;
}

.faq-menu-btn {
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-menu-btn:last-child {
    border-bottom: none;
}

.faq-menu-btn:hover {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--gold);
}

.faq-menu-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
}

.faq-menu-btn.active i {
    transform: translateX(5px);
}

.faq-category-content h3 {
    position: relative;
    padding-bottom: 15px;
}

.faq-category-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: transparent;
}

.faq-accordion .accordion-button {
    font-size: 1.15rem;
    padding: 20px 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--primary-green);
    font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
}

.faq-accordion .accordion-body {
    font-size: 1rem;
    padding-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-sidebar-menu {
        position: static;
        margin-bottom: 40px;
    }
}

/* Design Gallery Section */
.design-gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fcfcfc;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.gallery-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 67, 52, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.8;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-card:hover::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(5, 67, 52, 0.6) 0%, rgba(5, 67, 52, 0.1) 100%);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
    filter: brightness(1.05) contrast(1.02);
}

.gallery-card:hover {
    box-shadow: 0 20px 40px rgba(5, 67, 52, 0.15);
    transform: translateY(-5px);
}

/* Height Classes */
.card-kitchen {
    height: 320px;
}

.card-living,
.card-bathroom {
    height: 480px;
}

.card-wardrobe {
    height: 480px;
}

.card-space-saving {
    height: 320px;
}

.card-bedroom {
    height: 320px;
}

.card-home-office {
    height: 480px;
}

/* Card Label Styles */
.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    border-top-right-radius: 24px;
    padding: 14px 22px 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    box-shadow: 4px -4px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-title {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.2px;
    transition: all 0.4s ease;
}

.gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.85rem;
}

.gallery-arrow i {
    display: inline-block;
    transition: transform 0.4s ease;
}

/* Label Hover States */
.gallery-card:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--primary-green);
    padding-right: 26px;
    pointer-events: auto;
}

.gallery-card:hover .gallery-title {
    color: var(--white);
}

.gallery-card:hover .gallery-arrow {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-green);
}

.gallery-card:hover .gallery-arrow i {
    transform: rotate(45deg);
}

/* Responsiveness */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-column {
        gap: 20px;
    }

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

    .gallery-card {
        height: 280px !important;
    }

    .gallery-label {
        padding: 10px 16px;
        border-top-right-radius: 18px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }

    .gallery-title {
        font-size: 0.95rem;
    }

    .gallery-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

.delivered-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
    display: flex;
    align-items: center;
}

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

.delivered-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.delivered-carousel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 282px;
    height: 400px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 1200px) {
    .delivered-carousel-card {
        flex: 0 0 256px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .delivered-carousel-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .delivered-carousel-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 767px) {
    .delivered-carousel-card {
        flex: 0 0 100%;
    }
    
    .delivered-carousel-wrapper {
        padding: 0 30px;
    }
}

.delivered-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.delivered-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(5, 67, 52, 0.15);
}

/* Card Label Styles - Luxury Bottom Bar */
.card-overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(5, 67, 52, 0.75) 0%, rgba(5, 67, 52, 0.95) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay-label .label-text {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

/* Hover States */
.delivered-carousel-card:hover .card-overlay-label {
    background: var(--gold);
    border-top-color: var(--primary-green);
}

.delivered-carousel-card:hover .label-text {
    color: var(--primary-green);
}

/* Nav Button Styles */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid #eaeaea;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 67, 52, 0.2);
}

.carousel-nav-btn.prev-btn {
    left: 0;
}

.carousel-nav-btn.next-btn {
    right: 0;
}

/* About Us & Investors Section Styles */
.about-investors-section .brand-story-badge {
    letter-spacing: 2.5px;
    font-size: 0.85rem;
}

.about-investors-section .about-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
}

.about-investors-section .about-subtitle {
    line-height: 1.5;
    font-size: 1.2rem;
}

.about-investors-section .about-desc {
    line-height: 1.8;
    text-align: justify;
}

.about-investors-section .stat-number {
    font-size: 2rem;
}

.about-investors-section .stat-label {
    letter-spacing: 1px;
}

.about-investors-section .investors-container {
    background-color: #f8fcfb;
    border: 1px solid rgba(5, 67, 52, 0.05);
    height: 100%;
}

.about-investors-section .investors-badge {
    letter-spacing: 2.5px;
    font-size: 0.85rem;
}

.about-investors-section .investors-title {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
}

.about-investors-section .investor-logo-card {
    height: 100px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-investors-section .investor-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 10px 25px rgba(214, 175, 55, 0.15) !important;
}

.about-investors-section .investor-logo-card-wide {
    height: 100px;
    width: calc(50% - 12px);
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-investors-section .investor-logo-card-wide:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 10px 25px rgba(214, 175, 55, 0.15) !important;
}

.about-investors-section .investor-logo-img {
    max-height: 50px;
    transition: all 0.3s ease;
}

/* Design Ideas Sub Menu */
.design-ideas-sub-menu {
    background-color: var(--gold);
    padding: 12px 0;
    width: 97%;
    margin: 0 auto;
    border-radius: 30px 3px 30px 3px;
    margin-bottom: 5px;
}

.design-ideas-sub-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.design-ideas-sub-menu-link {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding: 5px 0;
}

.design-ideas-sub-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.design-ideas-sub-menu-link:hover {
    color: var(--primary-green) !important;
}

.design-ideas-sub-menu-link:hover::after {
    width: 100%;
}

.design-ideas-sub-menu-link.active {
    color: var(--primary-green) !important;
}

.design-ideas-sub-menu-link.active::after {
    width: 100%;
}

.design-idea-hero-section {
    position: relative;
    background-color: #fcf9f4;
    overflow: hidden;
}

.design-idea-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg-square.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.design-idea-hero-section > * {
    position: relative;
    z-index: 1;
}

.post-section {
    background-color: #f8f9fa;
}

/* ==========================================================================
   Furniture Page Content & Editorial Styling
   ========================================================================== */
.furniture-content-section {
    background-color: var(--white);
}

.furniture-article-title {
    color: var(--primary-green) !important;
    font-size: 2.8rem;
    font-family: var(--font-secondary);
}

.furniture-author-avatar {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.furniture-share-btn {
    width: 35px;
    height: 35px;
}

.furniture-author-name {
    letter-spacing: 0.5px;
}

.furniture-text-lead {
    line-height: 1.8;
    color: var(--text-muted);
}

.furniture-text-regular {
    line-height: 1.7;
    color: var(--text-muted);
}

.furniture-heading-secondary {
    color: var(--primary-green) !important;
    font-family: var(--font-secondary);
}

.furniture-table-header {
    background-color: var(--primary-green) !important;
    letter-spacing: 0.5px;
}

.furniture-table-header th {
    background-color: var(--primary-green) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--white);
}

.furniture-table-col-min {
    min-width: 130px;
}

.furniture-table-col-wide {
    min-width: 220px;
}

.furniture-wood-card {
    border-left: 4px solid var(--gold) !important;
}

.furniture-wood-card-title {
    color: var(--primary-green) !important;
}

.furniture-list-icon {
    color: var(--gold) !important;
    font-size: 1.1rem;
}

.furniture-list-text {
    line-height: 1.6;
}

/* Sticky Estimate Sidebar Card */
.furniture-sticky-wrapper {
    position: sticky;
    top: 110px;
    z-index: 10;
}

.furniture-estimate-card {
    border-top: 4px solid var(--gold) !important;
    box-shadow: 0 15px 35px rgba(5, 67, 52, 0.08) !important;
}

.furniture-estimate-icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1) !important;
}

.furniture-estimate-icon {
    font-size: 2.5rem;
    color: var(--gold) !important;
}

.furniture-estimate-card-title {
    color: var(--primary-green) !important;
    font-family: var(--font-secondary);
}

.furniture-estimate-card-sub {
    line-height: 1.5;
}

.furniture-estimate-btn {
    letter-spacing: 1px;
}

/* ==========================================================================
   Interactive Furniture Design Gallery & Tags Widget
   ========================================================================== */
.furniture-gallery-container {
    background-color: #f9f9f9;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.furniture-gallery-title {
    color: var(--primary-green) !important;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.furniture-gallery-badge {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.furniture-gallery-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.furniture-gallery-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.furniture-gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.furniture-gallery-nav-btn:hover {
    background-color: var(--primary-green);
    color: #fff;
}

.furniture-gallery-nav-btn.prev-btn {
    left: 15px;
}

.furniture-gallery-nav-btn.next-btn {
    right: 15px;
}

.furniture-gallery-caption {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary-green);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

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

.furniture-gallery-thumb {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    aspect-ratio: 4/3;
}

.furniture-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.furniture-gallery-thumb.active {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.furniture-gallery-thumb:hover {
    border-color: var(--primary-green);
}

/* Tags Fieldset Widget */
.furniture-tags-container {
    margin-top: 30px;
}

.furniture-tags-fieldset {
    border: 1.5px solid #e5e8eb !important;
    border-radius: 12px;
}

.furniture-tags-legend {
    float: none;
    width: auto;
    padding: 0 20px !important;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 1px;
    font-size: 1.1rem !important;
}

.furniture-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.furniture-tag-item {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4a4a4a !important;
    background-color: #f5f6f8;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.furniture-tag-item:hover {
    background-color: var(--primary-green);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(5, 67, 52, 0.15);
}

/* ==========================================================================
   Account / Auth Forms & Common Utility Styles
   ========================================================================== */

.auth-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-overlay.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.10;
    pointer-events: none;
}

.auth-section > .container {
    position: relative;
    z-index: 1;
}

.auth-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(5, 67, 52, 0.08) !important;
    border: 1px solid rgba(5, 67, 52, 0.05) !important;
    position: relative;
    z-index: 1;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--gold), #c5a028);
    z-index: 2;
}
.text-green {
    color: var(--primary-green);
}
.auth-form .form-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.auth-form .input-group-text {
    border-color: #e2e8f0;
    color: var(--primary-green) !important;
    padding-left: 20px;
    padding-right: 10px;
    transition: all 0.3s ease;
}
.auth-form .form-control {
    border-color: #e2e8f0;
    color: #333333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.auth-form .form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.auth-form .form-control:focus + .input-group-text,
.auth-form .input-group:focus-within .input-group-text {
    border-color: var(--gold);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #c5a028);
    color: var(--primary-green) !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    letter-spacing: 1px;
}
.btn-gold:hover {
    background: var(--primary-green);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 67, 52, 0.2);
}
.text-gold {
    color: var(--gold);
    transition: color 0.2s ease;
}
.text-gold:hover {
    color: var(--gold-hover);
}

.cursor-pointer {
    cursor: pointer !important;
}
.dropdown-min-300 {
    min-width: 300px !important;
}
.dropdown-min-480 {
    min-width: 480px !important;
}
.dropdown-min-650 {
    min-width: 650px !important;
}
.text-muted-custom {
    color: #6c757d !important;
}
.z-index-1 {
    z-index: 1 !important;
}

/* ==========================================================================
   Dashboard Section Styling
   ========================================================================== */

.dashboard-section {
    background-color: #f8f9fa;
    min-height: 90vh;
}

.dashboard-sidebar {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
}

.profile-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.profile-avatar {
    background-color: #e0e0e0;
    color: #888888;
    font-size: 1.5rem;
}

.dashboard-menu-btn {
    border: none;
    background: none;
    color: #333333;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 0.95rem;
}

.dashboard-menu-btn:hover {
    background-color: #e6e6e6;
    color: var(--primary-green);
}

.dashboard-menu-btn.active {
    background-color: #fffef1 !important;
    color: var(--gold) !important;
    border-left: 2px solid var(--gold) !important;
    font-weight: 600;
}

.dashboard-menu-btn.active i {
    color: var(--gold) !important;
}

.dashboard-submenu-btn {
    border: none;
    background: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666666;
    transition: all 0.2s ease;
    width: 100%;
}

.dashboard-submenu-btn:hover, .dashboard-submenu-btn.active {
    background-color: #fffef1;
    color: var(--gold) !important;
    font-weight: 600;
}

.dashboard-content-panel {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    min-height: 500px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: #a0a0a0;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gold) !important;
}

.btn-gray-outline {
    background-color: #e5e5e5;
    color: #666666;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-gray-outline:hover {
    background-color: #d8d8d8;
    color: #333333;
}

/* Issues Table and List Styling */
.issue-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.issue-status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-open {
    background-color: #fff3cd;
    color: #856404;
}

.badge-closed {
    background-color: #e2e3e5;
    color: #383d41;
}

.badge-in-progress {
    background-color: #cce5ff;
    color: #004085;
}

.badge-resolved {
    background-color: #d4edda;
    color: #155724;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-shipped {
    background-color: #cce5ff;
    color: #004085;
}

.badge-delivered, .badge-paid {
    background-color: #d4edda;
    color: #155724;
}

.badge-cancelled, .badge-failed {
    background-color: #f8d7da;
    color: #721c24;
}

.text-gold {
    color: var(--gold) !important;
}

.admin-comment-cell-box {
    background-color: #fffbef;
    border-left: 3px solid var(--gold);
    color: #495057;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 4px;
    max-width: 260px;
    word-wrap: break-word;
}

/* ==========================================================================
   Wishlist Heart Button Overlay & Styling
   ========================================================================== */

.design-card {
    position: relative;
}

.wishlist-heart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-heart-btn:hover {
    transform: scale(1.12);
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.wishlist-heart-btn i {
    font-size: 1.25rem;
    color: #dc3545;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-heart-btn:active i {
    transform: scale(0.8);
}

.wishlist-heart-btn .bi-heart-fill {
    color: #dc3545;
    animation: heartBeat 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Ensure no text selection on clicking the heart */
.wishlist-heart-btn {
    user-select: none;
    -webkit-user-select: none;
}

/* Profile Setup Page Custom Styles */
.basic-profile-body {
    font-family: var(--font-main);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    --glass-card: var(--primary-green);
    --glass-border: rgba(212, 175, 55, 0.18);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.basic-profile-body .form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.basic-profile-body .form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stairs-overlay.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.basic-profile-body .form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-image: url('../images/lights-overlay.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.basic-profile-body .profile-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.basic-profile-body .glass-card {
    background: var(--primary-green);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.basic-profile-body .profile-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.basic-profile-body .profile-subtitle {
    font-family: var(--font-main);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 300;
}

.basic-profile-body .step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    padding: 0 40px;
}

.basic-profile-body .step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.basic-profile-body .step-progress-bar {
    position: absolute;
    top: 50%;
    left: 40px;
    height: 2px;
    background: var(--gold);
    z-index: 1;
    transform: translateY(-50%);
    transition: width 0.4s ease;
    width: 0%;
}

.basic-profile-body .step-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #020b09;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.basic-profile-body .step-dot.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
    background: var(--primary-green);
}

.basic-profile-body .step-dot.completed {
    border-color: #10b981;
    background: #10b981;
    color: var(--white);
}

.basic-profile-body .form-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.basic-profile-body .input-group-custom {
    position: relative;
    margin-bottom: 25px;
}

.basic-profile-body .input-group-custom i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 5;
}

.basic-profile-body .form-control-custom {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 14px 15px 14px 45px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.basic-profile-body .form-control-custom:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.basic-profile-body select.form-control-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 15px;
    padding-right: 40px;
}

.basic-profile-body select.form-control-custom option {
    background: #020b09;
    color: var(--white);
}

.basic-profile-body .btn-gold-custom {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    border: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.basic-profile-body .btn-gold-custom:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: var(--primary-green);
}

.basic-profile-body .btn-gold-custom:active:not(:disabled) {
    transform: translateY(0);
}

.basic-profile-body .btn-gold-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.basic-profile-body .btn-outline-custom {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.basic-profile-body .btn-outline-custom:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.basic-profile-body .btn-outline-custom:active {
    transform: translateY(0);
}

.basic-profile-body .success-box {
    text-align: center;
}

.basic-profile-body .success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.basic-profile-body .actions-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.basic-profile-body .actions-stack .btn {
    width: 100%;
    padding: 15px;
    font-size: 0.95rem;
    border-radius: 12px;
}

.basic-profile-body .animated-step {
    animation: basicProfileFadeIn 0.4s ease forwards;
}

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

/* Custom Profile Select Box Styles */
.basic-profile-body .floorplan-options-container,
.basic-profile-body .planning-options-container,
.basic-profile-body .possession-options-container {
    display: flex;
    gap: 12px;
    width: 100%;
}

.basic-profile-body .floorplan-option-box,
.basic-profile-body .planning-option-box,
.basic-profile-body .possession-option-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 14px 10px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basic-profile-body .floorplan-option-box:hover,
.basic-profile-body .planning-option-box:hover,
.basic-profile-body .possession-option-box:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.basic-profile-body .floorplan-option-box.active,
.basic-profile-body .planning-option-box.active,
.basic-profile-body .possession-option-box.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: var(--primary-green);
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Stepwise Estimate Wizard Styles */
.estimate-body {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #333333 !important;
}

#estimateWizardSection, #estimateViewSection {
    --bg-darker: #021a14;
    --text-primary: #333333;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', serif;
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-card: #054334;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    
    color: var(--text-primary);
    font-family: var(--font-sans);
}

#estimateViewSection {
    min-height: 400px;
}

#estimateWizardSection .section-title,
#estimateViewSection .section-title {
    font-family: var(--font-serif) !important;
    font-size: 36px !important;
    color: var(--primary-green) !important;
}

#estimateWizardSection .section-subtitle,
#estimateViewSection .section-subtitle,
#estimateWizardSection .text-white-50:not(.glass-card *),
#estimateViewSection .text-white-50:not(.glass-card *) {
    max-width: 600px;
    font-size: 16px;
    color: #555555 !important;
}

#estimateWizardSection .animate-up,
#estimateViewSection .animate-up {
    opacity: 1 !important;
    transform: none !important;
}

.glass-card {
    background-color: var(--glass-card) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    color: #ffffff !important;
    box-shadow: var(--glass-shadow) !important;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/* Forms & Inputs styling */
#estimateWizardSection .form-control,
#estimateWizardSection .form-select,
#estimateViewSection .form-control,
#estimateViewSection .form-select {
    background-color: var(--bg-darker) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px !important;
    font-size: 0.95rem !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

#estimateWizardSection .form-control:focus,
#estimateWizardSection .form-select:focus,
#estimateViewSection .form-control:focus,
#estimateViewSection .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25) !important;
}

#estimateWizardSection .form-select,
#estimateViewSection .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 15px) center !important;
    background-size: 14px !important;
    padding-right: 40px !important;
}

#estimateWizardSection select option,
#estimateViewSection select option {
    background-color: #020b08 !important;
    color: #ffffff !important;
}

/* Step Progress Indicator */
.step-progress-wrapper {
    position: relative;
}

.step-progress-line-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.step-progress-line {
    position: absolute;
    height: 100%;
    background-color: var(--gold);
    left: 0;
    transition: width 0.3s ease;
}

.step-node {
    z-index: 2;
}

.node-circle {
    width: 36px;
    height: 36px;
    background-color: #020b08;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-node.active .node-circle {
    border-color: var(--gold);
    background-color: var(--gold);
    color: #000000;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.node-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.step-node.active .node-label {
    color: var(--gold);
}

.custom-radio .form-check-input {
    background-color: #020b08;
    border-color: var(--glass-border);
}

.custom-radio .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.last-border-none:last-child {
    border-bottom: none !important;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-outline-custom {
    color: var(--gold);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--gold);
    color: #000000;
    border-color: var(--gold);
}

/* Header/Footer Wizard Specific Adjustments */
.partner-header .btn-outline-custom {
    font-size: 0.9rem;
    border-color: rgba(212,175,55,0.4);
    padding: 8px 16px !important;
}

.wizard-step-title {
    font-family: var(--font-serif);
}

.wizard-small-text {
    font-size: 14px;
}

.wizard-btn-nav {
    font-size: 13px !important;
}

#btnBack {
    border-color: rgba(255,255,255,0.2) !important;
}

/* Wardrobes and Custom units layout styling */
.wizard-card-dark {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 12px;
}

.wizard-card-dark .card-title {
    color: var(--gold) !important;
}

/* Interior Units Card Style */
.wizard-unit-card {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.wizard-unit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
}

.wizard-unit-img-container {
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.wizard-unit-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.wizard-unit-title {
    font-size: 14px;
    font-weight: bold;
    color: var(--gold) !important;
}

.wizard-unit-desc {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.wizard-unit-price {
    font-size: 13.5px;
    font-weight: bold;
    color: #ffffff;
}

.wizard-unit-qty-btn {
    width: 26px;
    height: 26px;
    padding: 0;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    transition: all 0.2s ease;
}

.wizard-unit-qty-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.wizard-unit-qty-badge {
    width: 32px;
    height: 26px;
    background-color: var(--gold);
    color: #000000 !important;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wizard-add-btn {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    font-size: 11px !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    padding: 6px 16px !important;
    background: transparent;
    transition: all 0.2s ease;
}

.wizard-add-btn:hover {
    background-color: var(--gold) !important;
    color: #000000 !important;
}

/* ==========================================================================
   Product Listing & Filter Sidebar Styles
   ========================================================================== */
.products-section {
    background-color: #fcfcfc;
    font-family: var(--font-main);
}

.filter-panel {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-panel:hover {
    box-shadow: 0 10px 30px rgba(5, 67, 52, 0.05) !important;
}

.filter-title {
    color: var(--primary-green);
    letter-spacing: 1px;
    font-size: 1.25rem;
}

.border-gold-subtle {
    border-color: rgba(212, 175, 55, 0.25) !important;
}

.filter-group .form-label {
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.filter-checkbox-list {
    padding-right: 5px;
}

/* Custom styled scrollbars for sidebar lists */
.filter-checkbox-list::-webkit-scrollbar {
    width: 4px;
}

.filter-checkbox-list::-webkit-scrollbar-thumb {
    background-color: rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

.filter-checkbox-list::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Custom Checkbox Styling */
.filter-checkbox-list .form-check-input {
    border-color: rgba(212, 175, 55, 0.4);
}

.filter-checkbox-list .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.filter-checkbox-list .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.filter-checkbox-list .form-check-label {
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
    transition: color 0.2s ease;
}

.filter-checkbox-list .form-check-label:hover {
    color: var(--gold-hover);
}

/* Custom Select styling */
.filter-panel .form-select {
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
}

.filter-panel .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(5, 67, 52, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.25);
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #fdfdfd;
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-card-body {
    padding: 20px;
    background-color: var(--white);
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: inline-block;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-card-title {
    color: var(--gold);
}

.btn-filter-toggle {
    background-color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-green);
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-filter-toggle:hover, .btn-filter-toggle:focus {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

@media (max-width: 767.98px) {
    .product-card-body {
        padding: 12px;
    }
    .product-card-category {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    .product-card-title {
        font-size: 0.85rem;
    }
    .product-card-discount-badge {
        top: 8px;
        right: 8px;
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    .filter-panel {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 24px 20px !important;
    }
    #filterSidebar.offcanvas-md {
        background-color: var(--white) !important;
        max-width: 300px;
    }
}

/* Detailed Product Modal */
.product-detail-modal .modal-content {
    background-color: var(--white);
}

.product-detail-modal .modal-close-btn {
    opacity: 0.8;
    transition: all 0.2s ease;
}

.product-detail-modal .modal-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--gold);
}

.modal-main-image-container {
    width: 100%;
    height: 380px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-color: #ffffff;
}

.modal-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#modalThumbnailsContainer {
    padding: 5px 0;
    scrollbar-width: thin;
}

.modal-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.modal-thumb:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.modal-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.bg-gold-light {
    background-color: rgba(212, 175, 55, 0.1);
}

.bg-secondary-light {
    background-color: #f1f3f5;
}

.fw-extrabold {
    font-weight: 800;
}

.modal-details-section h2 {
    color: var(--primary-green) !important;
}

/* Custom indicator dot */
.product-detail-modal .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-in-stock {
    background-color: #2ec4b6;
    box-shadow: 0 0 8px rgba(46, 196, 182, 0.5);
}

.status-out-of-stock {
    background-color: #e71d36;
    box-shadow: 0 0 8px rgba(231, 29, 54, 0.5);
}

/* Backdrop blur for modern aesthetics */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(5, 67, 52, 0.4);
}

/* Card Discount Badge */
.product-card-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #e71d36;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(231, 29, 54, 0.35);
    z-index: 5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Drawer Navigation Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--primary-green);
    z-index: 2050;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.4);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    left: 0;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.show {
    display: block;
    opacity: 1;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.drawer-header .logo img {
    height: 60px;
    width: auto;
}

.btn-close-custom {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

.btn-close-custom:hover {
    color: var(--white);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-drawer .accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white) !important;
    background-color: transparent !important;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer .accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background-color: transparent !important;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.mobile-drawer .accordion-button::after {
    filter: brightness(0) invert(1);
}

.mobile-drawer .accordion-button:not(.collapsed)::after {
    filter: sepia(1) saturate(5) hue-rotate(10deg) brightness(0.8);
}

.mobile-drawer .accordion-body {
    border: none;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-top: 5px;
}

.mobile-drawer a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-drawer a:hover {
    color: var(--gold);
}

.mobile-drawer .gold-link {
    color: var(--gold);
}

.mobile-drawer .gold-link:hover {
    color: var(--white);
}

.mobile-drawer .drawer-other-menus a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-drawer .drawer-auth-container {
    margin-bottom: 10px;
}

/* Fix mobile logo and hamburger size and alignment in main nav */
@media (max-width: 991px) {
    .main-nav .logo img {
        height: 60px;
    }
}

/* Custom styling to make the Luxe logo smaller inside the mobile drawer */
.drawer-header .logo img.luxe-header-logo {
    height: 30px;
    width: auto;
}

/* ==========================================
   Hero Form Overlay & Glassmorphic Card Styles
   ========================================== */
.hero-form-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    pointer-events: none;
}

.hero-form-card {
    pointer-events: auto;
    width: 400px;
    background: rgba(5, 67, 52, 0.88); /* Dark emerald brand green with high opacity for readability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 20px rgba(212, 175, 55, 0.25);
}

.hero-form-card .form-title {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    color: var(--white);
}

.custom-hero-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-hero-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.custom-hero-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
    outline: none;
}

/* ==========================================
   Hero Slider Mobile View Optimizations
   ========================================== */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 75vh !important;
    }
    
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-btns .btn {
        margin-right: 0 !important;
        padding: 12px 24px;
        font-size: 0.8rem;
        flex: 1 1 auto;
        text-align: center;
    }
    
    /* Stronger gradient overlay on mobile to ensure white text readability */
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
        opacity: 0.95;
    }
}

@media (max-width: 576px) {
    .hero-slider,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 80vh !important; /* Slightly taller to accommodate stacked buttons on narrow screens */
    }
    
    .hero-title {
        font-size: 2.0rem;
        line-height: 1.25;
    }
    
    .hero-text {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
        margin-right: 0 !important;
    }
    
    /* Scale down slide controls */
    .hero-slider .control-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 50px;
    }
}

/* ==========================================
   Design Gallery Carousel Mobile Scroll Optimizations
   ========================================== */
@media (max-width: 767px) {
    .gallery-carousel {
        padding: 0 !important;
    }
    
    .gallery-carousel .carousel-inner {
        overflow: visible !important;
    }
    
    .gallery-carousel .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 12px !important;
        margin-left: -6px !important;
        margin-right: -6px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gold) rgba(0, 0, 0, 0.05);
    }
    
    /* Custom scrollbar styling for webkit */
    .gallery-carousel .row::-webkit-scrollbar {
        height: 4px;
    }
    
    .gallery-carousel .row::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }
    
    .gallery-carousel .row::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .gallery-carousel .row > [class*="col-"] {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        scroll-snap-align: start !important;
    }
    
    /* Hide navigation control arrows on mobile as swiping is native and preferred */
    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
        display: none !important;
    }
    
    /* Adjust indicators positioning and margins on mobile */
    .gallery-carousel .carousel-indicators {
        bottom: -28px !important;
        margin-bottom: 0 !important;
    }

    /* Design Session Steps Mobile Optimizations */
    .design-session-steps {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .design-session-steps .p-5 {
        padding: 30px 10px !important;
    }
    .step-box {
        padding: 10px 5px !important;
    }
    .step-image {
        height: 90px !important;
        margin-bottom: 12px !important;
    }
    .step-box p {
        font-size: 0.88rem !important;
        line-height: 1.4 !important;
    }
}

/* ==========================================
   Estimator Cards CTA Buttons Optimizations
   ========================================== */
.btn-estimator-cta {
    padding: 16px 40px;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .btn-estimator-cta {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
    }

    /* Luxe Section Mobile Optimizations */
    .luxe-section {
        height: 60vh !important;
    }
    .inner-luxe-box {
        width: 100% !important;
    }
    .luxe-intro-text {
        font-size: 1.1rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.8rem !important;
    }
    .luxe-brand-container {
        margin-bottom: 2rem !important;
    }
    .luxe-logo-img {
        height: auto !important;
        max-height: 80px !important;
        max-width: 80% !important;
    }
    .btn-luxe-enter {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
    }

    /* Testimonials Mobile Optimizations */
    .testimonials-section {
        padding: 50px 0 !important;
    }
    .testimonial-card {
        width: 310px !important;
        padding: 25px !important;
        border-radius: 15px !important;
    }
    .client-profile {
        width: 80px !important;
        height: 80px !important;
        border-width: 3px !important;
        margin-bottom: 15px !important;
    }
    .stars {
        margin-bottom: 12px !important;
        font-size: 0.95rem !important;
    }
    .client-name {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    .testimonial-text {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
    .testimonial-ticker {
        gap: 20px !important;
        padding-left: 20px !important;
    }

    /* Vastu Section Mobile Optimizations */
    .vastu-section {
        padding: 50px 0 !important;
    }
    .vastu-content {
        padding-left: 0 !important;
        text-align: center;
        margin-top: 30px;
    }
    .vastu-content h2 {
        font-size: 2.0rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    .vastu-content p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 25px !important;
    }
    .btn-vastu {
        padding: 12px 35px !important;
        font-size: 0.88rem !important;
    }
    .chakra-rotating {
        width: 300px !important;
        top: -150px !important;
        right: -50px !important;
        opacity: 0.6 !important;
    }
    .vastu-img {
        border-width: 3px !important;
        border-radius: 20px !important;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    /* NRI Section Mobile Optimizations */
    .nri-section {
        padding: 40px 0 !important;
    }
    .nri-content {
        text-align: center;
        padding: 0 15px !important;
    }
    .nri-content h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    .nri-content p {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    .btn-nri {
        padding: 10px 25px !important;
        font-size: 0.8rem !important;
    }
    .nri-image-container {
        text-align: center;
        margin-top: 25px !important;
    }
    .nri-image-container img {
        width: 85% !important;
        max-width: 260px !important;
        margin: 0 auto;
        display: block;
    }

    /* Experience Section Mobile Optimizations */
    .experience-section {
        padding: 50px 0 !important;
    }
    .experience-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    .experience-content {
        padding-left: 0 !important;
        text-align: center;
        margin-top: 40px;
    }
    .experience-content h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
    }
    .location-tag {
        font-size: 0.68rem !important;
        padding: 5px 2px !important;
        line-height: 1.2 !important;
    }
    .google-rating-card {
        padding: 20px !important;
        margin: 0 auto;
        max-width: 480px;
    }
    .rating-header {
        justify-content: center;
    }

    /* FAQ Section Mobile Optimizations */
    .faq-section {
        padding: 50px 0 !important;
    }
    .faq-title {
        margin-bottom: 30px !important;
    }
    .faq-title h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    .faq-accordion .accordion-button {
        font-size: 1.05rem !important;
        padding: 20px 0 !important;
        line-height: 1.4 !important;
    }
    .faq-accordion .accordion-body {
        font-size: 0.9rem !important;
        padding: 0 0 20px 0 !important;
        line-height: 1.6 !important;
    }

    /* CTA Section Mobile Optimizations */
    .cta-section {
        padding: 50px 0 !important;
    }
    .cta-section h2 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    .cta-section p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    .cta-overlay {
        display: none !important;
    }

    /* Features Section Mobile Optimizations */
    .features-highlights {
        padding: 40px 0 !important;
    }
    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 25px 15px !important;
    }
    .feature-item:last-child {
        border-bottom: none !important;
    }
    .feature-icon mb-4 {
        margin-bottom: 15px !important;
    }
    .feature-icon i {
        font-size: 2.0rem !important;
    }
    .feature-item h5 {
        font-size: 1.0rem !important;
        margin-bottom: 10px !important;
    }
    .feature-item p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    .feature-overlay {
        display: none !important;
    }
    .features-highlights .btn-gold {
        padding: 12px 30px !important;
        font-size: 0.85rem !important;
    }

    /* Footer Mobile Optimizations */
    .main-footer {
        padding: 50px 0 0 !important;
    }
    .footer-column {
        text-align: center !important;
        margin-bottom: 35px !important;
    }
    .footer-column:last-child {
        margin-bottom: 0 !important;
    }
    .footer-logo {
        height: 80px !important;
        margin-bottom: 15px !important;
    }
    .footer-description {
        margin: 0 auto 20px auto !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    .footer-social-icons {
        justify-content: center !important;
        margin-bottom: 15px !important;
    }
    .footer-title {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
        margin-top: 10px !important;
    }
    .footer-links li {
        margin-bottom: 10px !important;
    }
    .footer-links li a {
        font-size: 0.88rem !important;
    }
    .footer-overlay-img, .footer-overlay-img-2 {
        display: none !important;
    }
    .footer-bottom {
        padding: 15px 0 !important;
    }
    .footer-bottom p {
        font-size: 0.78rem !important;
    }

    /* Leadership Section Mobile Optimizations */
    .leadership-section {
        padding: 40px 0 !important;
    }
    .leadership-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    .leadership-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }
    .expert-designer-card {
        padding: 15px !important;
        border-radius: 12px !important;
        max-width: 280px;
        margin: 0 auto;
    }
    .expert-name {
        font-size: 1.05rem !important;
        margin-top: 10px !important;
    }
    .expert-location {
        font-size: 0.78rem !important;
    }
    .btn-form-submit {
        padding: 10px 20px !important;
        font-size: 0.88rem !important;
    }

    /* Why Veloxia Section Mobile Optimizations */
    .why-veloxia-section .row > * {
        width: 50% !important;
        flex: 0 0 auto !important;
    }
    .why-item {
        padding: 10px !important;
    }
    .why-icon-container {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1rem !important;
    }
    .icon-calendar-box,
    .icon-eye-box,
    .icon-warranty-box,
    .icon-emi-box {
        font-size: 3.2rem !important;
    }
    .cal-days {
        font-size: 1.3rem !important;
    }
    .rupee-overlay {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.85rem !important;
        border-width: 1px !important;
    }
    .percent-overlay {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.75rem !important;
        border-width: 1px !important;
    }
    .why-text {
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   Estimate and Estimate Flow Mobile Optimizations
   ========================================================================== */
@media (max-width: 767px) {
    /* Step Wizard nodes adjustments */
    .node-label {
        display: none !important;
    }
    .step-progress-wrapper {
        margin-bottom: 2rem !important;
    }
    
    /* Guest state login/register dividers on mobile */
    #estimateViewSection .border-end,
    #estimateWizardSection .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding-bottom: 25px !important;
        margin-bottom: 25px !important;
        padding-right: 0 !important;
    }
    
    #estimateViewSection .ps-md-4,
    #estimateWizardSection .ps-md-5 {
        padding-left: 0 !important;
    }

    /* Tabs optimizations */
    .custom-estimate-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        border-bottom: 2px solid var(--glass-border) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        width: 100% !important;
    }
    .custom-estimate-tabs::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari/Webkit */
    }
    .custom-estimate-tabs .nav-item {
        flex: 0 0 auto !important;
        width: auto !important;
    }
    .custom-estimate-tabs .nav-link {
        padding: 10px 16px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
        width: auto !important;
        display: inline-block !important;
    }

    /* Estimated Summary details scale down */
    #estimateViewSection .display-6 {
        font-size: 1.8rem !important;
    }
    #estimateViewSection h2.section-title {
        font-size: 24px !important;
    }
    #estimateViewSection h5 {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    /* Stepwise Form UI improvements */
    #estimateWizardSection .glass-card {
        padding: 20px 15px !important;
    }
    
    /* Step 2 shape radio options gap */
    #stepSection2 .d-flex.flex-wrap.gap-4 {
        gap: 10px 15px !important;
        justify-content: space-between;
    }
    .custom-radio {
        margin-right: 0 !important;
    }
    
    /* Compact layout shape illustration reference image in step 3 */
    #stepSection3 img.img-fluid {
        max-height: 200px !important;
        margin-top: 15px !important;
    }
    
    /* Step 4 custom interior units row-based mobile lists */
    .wizard-unit-card {
        flex-direction: row !important;
        height: 120px !important;
        overflow: hidden;
    }
    .wizard-unit-img-container {
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0;
    }
    .wizard-unit-card .p-3 {
        padding: 10px 12px !important;
        width: calc(100% - 120px) !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100% !important;
    }
    .wizard-unit-desc {
        display: none !important;
    }
    .wizard-unit-title {
        font-size: 14px !important;
        color: var(--gold) !important;
        font-weight: bold !important;
        margin-bottom: 5px !important;
        display: block !important;
        overflow: visible !important;
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.2 !important;
    }
    .wizard-unit-card .mt-auto {
        margin-top: auto !important;
        padding-top: 5px !important;
    }
    .wizard-unit-price {
        font-size: 13px !important;
    }
    .wizard-add-btn {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
    .wizard-unit-qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 10px !important;
    }
    .wizard-unit-qty-badge {
        width: 26px !important;
        height: 22px !important;
        font-size: 10px !important;
    }
}

/* ==========================================================================
   Luxe Page Mobile Optimizations
   ========================================================================== */
@media (max-width: 767px) {
    /* Hero Carousel */
    .luxe-hero-slide {
        height: 60vh !important;
    }
    .luxe-hero-slide > div.px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .luxe-hero-title {
        font-size: 2.0rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    .luxe-hero-text {
        font-size: 1.0rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    .carousel-indicators {
        margin-bottom: 1.5rem !important;
    }

    /* Why Luxe Section */
    .luxe-section-title {
        font-size: 1.85rem !important;
        margin-bottom: 2rem !important;
    }
    .luxe-script {
        font-size: 2.2rem !important;
        margin-left: 5px !important;
    }
    .why-luxe-icon {
        height: 95px !important;
    }
    .why-luxe-h3 {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
    }
    .why-luxe-p {
        font-size: 0.88rem !important;
        max-width: 100% !important;
    }

    /* Luxe Journey Section */
    .luxe-journey .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .luxe-journey .row.px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .sticky-journey-content {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 2rem !important;
    }
    .journey-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    .journey-icon-display {
        display: none !important;
    }
    
    /* Disable sticky stacking of journey cards */
    .journey-card-wrapper {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 20px !important;
        z-index: auto !important;
    }
    .journey-card-wrapper:nth-child(1),
    .journey-card-wrapper:nth-child(2),
    .journey-card-wrapper:nth-child(3),
    .journey-card-wrapper:nth-child(4),
    .journey-card-wrapper:nth-child(5),
    .journey-card-wrapper:nth-child(6),
    .journey-card-wrapper:nth-child(7) {
        position: relative !important;
        top: 0 !important;
        z-index: auto !important;
    }
    .journey-card {
        padding: 24px !important;
        min-height: auto !important;
        border-radius: 15px !important;
    }
    .journey-step-icon {
        height: 45px !important;
    }
    .step-label {
        font-size: 0.8rem !important;
    }
    .step-h4 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    .step-p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }

    /* Luxe Offerings Section */
    .luxe-offerings .container.py-5,
    .luxe-offerings .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .offering-img {
        height: 180px !important;
        width: 180px !important;
        border-radius: 10px !important;
    }
    .offering-item {
        border-radius: 10px !important;
        gap: 8px !important;
    }
    .offering-title {
        font-size: 0.95rem !important;
        padding-bottom: 5px !important;
    }
    .scroll-content {
        gap: 15px !important;
        padding: 10px 0 !important;
    }

    /* Luxe Spaces Section */
    .luxe-spaces .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .space-tab {
        font-size: 0.95rem !important;
        padding: 5px 10px !important;
    }
    .space-img {
        height: 320px !important;
        border-radius: 15px !important;
    }
    .luxe-spaces .container.mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Trusted Partners Section */
    .luxe-partners {
        padding: 3rem 0 !important;
    }
    .partner-logo-box {
        height: 75px !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }
    .partner-logo {
        max-height: 50px !important;
    }

    /* FAQ Section */
    .luxe-faq .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .luxe-accordion .accordion-button {
        font-size: 1.0rem !important;
        padding: 16px 0 !important;
    }
    .luxe-accordion .accordion-body {
        font-size: 0.9rem !important;
        padding: 0 0 16px 0 !important;
        line-height: 1.6 !important;
    }

    /* Footer Section */
    .footer-img {
        height: 35vh !important;
        background-size: cover !important;
    }
    .lux-bg-footer {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding: 20px 10px !important;
    }
    .lux-bg-footer ul {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Luxe Mobile Drawer Specific Styling overrides */
    .luxe-page-drawer {
        background-color: #121212 !important;
        border-right: 1px solid #b08d32 !important;
    }
    .luxe-page-drawer .drawer-header {
        border-bottom: 1px solid rgba(176, 141, 50, 0.2) !important;
    }
    .luxe-page-drawer .mobile-drawer .accordion-button {
        color: var(--white) !important;
    }
    .luxe-page-drawer .accordion-button:not(.collapsed) {
        color: #b08d32 !important;
    }
}

/* Global Button Padding Responsiveness for Mobile Viewports */
@media (max-width: 768px) {
    .btn.px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .btn.py-3 {
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
    }
}

/* Express Design Section styling */
.express-design-section {
    background: linear-gradient(135deg, #ffffff 0%, #fefcf6 100%);
    position: relative;
    overflow: hidden;
}

.text-highlight-curve {
    position: relative;
    display: inline-block;
}

.design-feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.design-mockup-wrapper {
    padding: 20px;
    z-index: 1;
}

.mockup-container {
    border: 8px solid #ffffff;
    border-radius: 24px;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.mockup-container:hover {
    transform: translateY(-8px) rotate(1deg);
}

.mockup-container img {
    border-radius: 16px;
    width: 100%;
    display: block;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

/* Floating glassmorphic badges */
.floating-badge {
    position: absolute;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.badge-top-left {
    top: 0;
    left: -10px;
    animation-delay: 0s;
}

.badge-bottom-right {
    bottom: 0;
    right: -10px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .design-mockup-wrapper {
        margin-top: 40px;
    }
    .badge-top-left {
        left: 10px;
    }
    .badge-bottom-right {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .floating-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .badge-top-left {
        top: -10px;
        left: 5px;
    }
    .badge-bottom-right {
        bottom: -10px;
        right: 5px;
    }
    .mockup-container {
        border-width: 4px;
        border-radius: 16px;
    }
    .mockup-container img {
        border-radius: 12px;
    }
}

/* Dashboard Sidebar Mobile View Optimization */
@media (max-width: 767px) {
    .dashboard-sidebar {
        padding: 12px !important;
        margin-bottom: 20px !important;
    }
    .profile-card {
        display: none !important;
    }
    .dashboard-menu {
        flex-direction: row !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding-bottom: 8px;
        /* Hide scrollbars */
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .dashboard-menu::-webkit-scrollbar {
        display: none;
    }
    .dashboard-menu-btn {
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        padding: 8px 16px !important;
        font-size: 0.88rem !important;
        border-radius: 30px !important;
        border: 1px solid #eaeaea !important;
        background-color: #f8f9fa !important;
    }
    .dashboard-menu-btn.active {
        background-color: #fffef1 !important;
        border-color: var(--gold) !important;
        border-left: 1px solid var(--gold) !important;
        color: var(--gold) !important;
    }
}

/* Basic Profile Setup Page Mobile View Optimization */
@media (max-width: 767px) {
    .basic-profile-body .form-section {
        padding: 20px 12px !important;
    }
    .basic-profile-body .glass-card {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    .basic-profile-body .profile-title {
        font-size: 1.6rem !important;
    }
    .basic-profile-body .profile-subtitle {
        font-size: 0.88rem !important;
        margin-bottom: 25px !important;
    }
    .basic-profile-body .step-indicator {
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }
    .basic-profile-body .step-indicator::before {
        left: 10px !important;
        right: 10px !important;
    }
    .basic-profile-body .step-progress-bar {
        left: 10px !important;
    }
    
    /* Layout option grids as 2-column flow on mobile to prevent clipping */
    .basic-profile-body .floorplan-options-container,
    .basic-profile-body .possession-options-container,
    .basic-profile-body .planning-options-container {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .basic-profile-body .floorplan-option-box {
        flex: 1 1 calc(50% - 8px) !important;
        padding: 12px 8px !important;
        font-size: 0.85rem !important;
    }
    
    .basic-profile-body .possession-option-box {
        flex: 1 1 calc(50% - 8px) !important;
        padding: 12px 6px !important;
        font-size: 0.82rem !important;
        min-height: 52px !important;
    }
    
    .basic-profile-body .planning-option-box {
        flex: 1 1 calc(33.33% - 8px) !important;
        padding: 12px 4px !important;
        font-size: 0.85rem !important;
    }
    
    .basic-profile-body .btn-gold-custom,
    .basic-profile-body .btn-outline-custom {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Modular Kitchen Cost Calculator Mobile View Optimization */
@media (max-width: 991px) {
    #calculator {
        padding-bottom: 85px !important; /* To prevent content overlap with sticky price bar */
    }
}

@media (max-width: 768px) {
    .kitchen-calculator-hero {
        height: auto !important;
        min-height: 42vh !important;
        padding: 100px 0 50px 0 !important;
    }
    
    .kitchen-calculator-hero .hero-content {
        padding-left: 0 !important;
        text-align: center;
    }
    
    .kitchen-calculator-hero .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .kitchen-calculator-hero .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
    }
    
    .kitchen-calculator-hero .hero-text {
        font-size: 0.95rem !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    #calculator .glass-card {
        padding: 24px 16px !important;
    }

    #calculator h3 {
        font-size: 1.5rem !important;
    }
    
    #calculator svg {
        height: auto !important;
        max-height: 150px !important;
    }
    
    #wallAContainer, #wallBContainer, #wallCContainer {
        margin-bottom: 15px !important;
    }
}

/* Modern Home Page Consultation Popup Modal */
.home-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.home-popup-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.home-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 850px;
    background: rgba(5, 67, 52, 0.85); /* Deep green with opacity for glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.home-popup-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.home-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: all 0.3s ease;
}

.home-popup-close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.home-popup-container {
    display: flex;
    min-height: 520px;
}

.home-popup-form-side {
    flex: 1.1;
    padding: 40px 45px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-popup-image-side {
    flex: 0.9;
    position: relative;
    overflow: hidden;
    background-color: #042e24;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.home-popup-modal:hover .popup-image {
    transform: scale(1.03);
}

.popup-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.popup-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.popup-label {
    color: var(--gold) !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    color: var(--white) !important;
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.popup-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.popup-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.btn-popup-submit {
    background: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    color: #054334 !important; /* Muted deep green text for gold button */
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
}

.btn-popup-submit:hover {
    background: transparent !important;
    color: var(--gold) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.popup-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.popup-disclaimer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-disclaimer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive styles for Popup Modal */
@media (max-width: 768px) {
    .home-popup-modal {
        width: 92%;
        border-radius: 20px;
    }
    
    .home-popup-container {
        min-height: auto;
    }
    
    .home-popup-image-side {
        display: none; /* Hide image on mobile for better usability */
    }
    
    .home-popup-form-side {
        flex: 1;
        padding: 35px 25px 30px 25px;
    }
    
    .popup-title {
        font-size: 1.6rem;
    }
    
    .popup-subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }
    
    .popup-input {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
    
    .btn-popup-submit {
        padding: 10px 0 !important;
        font-size: 0.9rem !important;
    }
    
    .home-popup-close-btn {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
}