/* ==========================================
   Decor World — Ultra Luxury Corporate CSS
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #222222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

/* ==========================================
   ELEVATED FLOATING HEADER
   ========================================== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Elevated Shadow (Utha hua look) */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 2px solid #f0f0f0;
}

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

/* Deep Clear Logo */
.logo img {
    height: 65px; /* Logo ko bada aur deep banaya gaya hai */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Corporate Navbar */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

/* Red Line Hover Effect */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #E50914;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: #E50914;
}

/* Right Side Wrapper */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Red WhatsApp Button */
.btn-consultation {
    background: linear-gradient(135deg, #E50914 0%, #b80710 100%);
    color: #ffffff !important;
    padding: 10px 22px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px; /* Modern Rounded Pill Button */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    white-space: nowrap;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    background: #111111;
}

.btn-consultation i {
    font-size: 16px;
}

/* Hamburger Icon */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #111111;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

/* ==========================================
   PREMIUM CORPORATE FOOTER
   ========================================== */
.main-footer {
    background-color: #0d0d0d; /* Pure Dark Luxurious Charcoal */
    color: #ffffff;
    padding-top: 65px;
    margin-top: 80px;
    border-top: 4px solid #E50914;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #E50914;
}

/* Col 1: Logo & Social */
.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    background-color: #ffffff; /* Contrast card for logo visibility */
    padding: 6px 14px;
    border-radius: 4px;
}

.footer-about p {
    color: #bbbbbb;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #E50914;
    border-color: #E50914;
    transform: translateY(-4px);
}

/* Col 2: Quick Links */
.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #bbbbbb;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    color: #E50914;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-links ul li a:hover i {
    transform: translateX(4px);
}

/* Col 3: Contact Details */
.footer-contact ul li {
    color: #bbbbbb;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-red {
    color: #E50914 !important;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.icon-green {
    color: #25D366 !important;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-contact ul li a {
    color: #bbbbbb;
}

.footer-contact ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Col 4: Address & Map */
.footer-map p {
    color: #bbbbbb;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.map-container iframe {
    display: block;
}

/* Bottom Strip */
.footer-bottom {
    background-color: #050505;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

.footer-bottom p span {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE FIXES
   ========================================== */
@media screen and (max-width: 992px) {
    .header-right {
        gap: 10px;
    }

    .hamburger-btn {
        display: block; /* Show hamburger button */
    }

    .btn-consultation {
        font-size: 11px;
        padding: 8px 14px;
    }

    .btn-consultation span {
        display: inline-block; /* Keep text visible on mobile */
    }

    /* Mobile Dropdown Navigation */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
        display: none;
        padding: 25px 0;
        border-top: 3px solid #E50914;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-menu ul li a {
        font-size: 15px;
    }

    /* Footer Tablet (2 Columns) */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media screen and (max-width: 576px) {
    .logo img {
        height: 48px; /* High visibility on small screens */
    }

    .btn-consultation {
        font-size: 10px;
        padding: 7px 10px;
        gap: 4px;
    }

    /* Footer Mobile (Stacked 1 Column) */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


















/* ==========================================
   Decor World — Cursive Luxury Hero & Responsive Video CSS
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    max-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

/* Background Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
}

/* Ultra Light Overlay so Video is Crisply Visible */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

/* Content Container Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-text-box {
    max-width: 750px; /* Reduced box width so text doesn't block video */
    margin: 0 auto;
    color: #ffffff;
}

/* Cursive Luxury Subtitle */
.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: luxuryFadeUp 0.8s ease forwards;
}

/* Cursive Luxury Main Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px; /* Elegant Size */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    opacity: 0;
    animation: luxuryFadeUp 0.8s ease forwards;
}

/* Compact Description */
.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #f0f0f0;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    animation: luxuryFadeUp 0.8s ease forwards;
}

/* Button Group */
.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    animation: luxuryFadeUp 0.8s ease forwards;
}

.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }
.anim-delay-4 { animation-delay: 0.8s; }

@keyframes luxuryFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-hero-contact {
    background: linear-gradient(135deg, #E50914 0%, #b80710 100%);
    color: #ffffff !important;
    padding: 11px 26px;
    font-size: 12.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-contact i {
    font-size: 15px;
    color: #25D366;
}

.btn-hero-contact:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-2px);
}

.btn-hero-explore {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 11px 26px;
    font-size: 12.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-explore:hover {
    background-color: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   UPDATED MOBILE RESPONSIVENESS FIXES
   ========================================== */
@media screen and (max-width: 768px) {
    /* Fixed Aspect Ratio to prevent video stretching on mobile screens */
    .hero-section {
        height: auto;
        min-height: initial;
        max-height: initial;
        aspect-ratio: 4 / 3; /* Automatically calculates correct height based on phone width */
        padding: 20px 0;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 6px;
    }

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

    .hero-desc {
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 8px;
        max-width: 260px;
        margin: 0 auto;
    }

    .btn-hero-contact,
    .btn-hero-explore {
        width: 100%;
        justify-content: center;
        padding: 8px 16px;
        font-size: 10px;
    }
}













/* ==========================================
   Decor World — Animated Luxury Highlight Strip
   ========================================== */

.brand-strip-section {
    background: #0a0a0a; /* Dark Luxury Theme */
    padding: 45px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Glassmorphism Luxury Card Styling */
.strip-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Card Subtle Red Highlight Line on Hover */
.strip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #E50914; /* Decor World Red Accent */
    opacity: 0.6;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.strip-card:hover::before {
    width: 100%;
    opacity: 0.08;
}

.strip-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 12px 25px rgba(229, 9, 20, 0.15);
}

/* Animated Icon Box */
.card-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.strip-card:hover .card-icon-box {
    background: #E50914;
    color: #ffffff;
    transform: rotateY(180deg);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

/* Typography & Numbers */
.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.counter-number span {
    color: #E50914;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {
    .brand-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .brand-strip-section {
        padding: 30px 0;
    }

    .brand-strip-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .strip-card {
        padding: 18px 16px;
    }

    .counter-number {
        font-size: 26px;
    }

    .counter-label {
        font-size: 11px;
    }
}













/* ==========================================
   Decor World — Luxury About & Philosophy Styling
   ========================================== */

.about-philosophy-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

/* Left Image Box */
.about-image-wrapper {
    position: relative;
}

.about-image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image-box:hover img {
    transform: scale(1.04);
}

/* Floating Badge Animation */
.floating-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: #111111;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-left: 4px solid #E50914;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    font-size: 28px;
    color: #E50914;
}

.floating-badge h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.floating-badge p {
    font-size: 12px;
    color: #aaaaaa;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Content Box */
.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #E50914;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Features Checklist */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #E50914;
    font-size: 16px;
}

.feature-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

/* Luxury Discover Button */
.btn-about-more {
    background-color: #111111;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-about-more:hover {
    background-color: #E50914;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.35);
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 992px) {
    .about-philosophy-section {
        padding: 70px 0;
    }

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

    .floating-badge {
        right: 15px;
        bottom: -20px;
        padding: 15px 20px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
    }

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
















/* ==========================================
   Decor World — High-Converting Services & Form CSS
   ========================================== */

.services-lead-section {
    padding: 90px 0;
    background-color: #f8f9fa;
    position: relative;
}

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

.red-divider {
    width: 60px;
    height: 3px;
    background-color: #E50914;
    margin: 12px auto 0;
    border-radius: 2px;
}

.services-form-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Services Cards Left Grid */
.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
    border-color: rgba(229, 9, 20, 0.3);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E50914;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #E50914;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #E50914;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Right Side Ad Lead Form */
.lead-form-wrapper {
    position: sticky;
    top: 100px;
}

.lead-form-card {
    background: #111111; /* Dark Luxury Premium Card */
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-top: 4px solid #E50914;
}

.badge-free {
    background: rgba(229, 9, 20, 0.2);
    color: #E50914;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: #aaaaaa;
    margin-bottom: 25px;
}

/* Input Fields Styling */
.ad-lead-form .form-group {
    margin-bottom: 16px;
}

.ad-lead-form input,
.ad-lead-form select {
    width: 100%;
    padding: 13px 16px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.ad-lead-form select option {
    background: #111111;
    color: #ffffff;
}

.ad-lead-form input:focus,
.ad-lead-form select:focus {
    border-color: #E50914;
}

/* Form Submit CTA Button */
.btn-submit-lead {
    width: 100%;
    background: linear-gradient(135deg, #E50914 0%, #b80710 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-submit-lead:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

.form-footer-trust p {
    font-size: 11.5px;
    color: #888888;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
}

.form-footer-trust i {
    color: #25D366;
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 992px) {
    .services-form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lead-form-wrapper {
        position: relative;
        top: 0;
    }
}

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

    .lead-form-card {
        padding: 25px 20px;
    }
}















/* ==========================================
   Decor World — Luxury Portfolio Showcase CSS
   ========================================== */

.portfolio-showcase-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Dark Gradient Overlay with Text */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
    transition: background 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(180deg, rgba(229, 9, 20, 0.2) 0%, rgba(0,0,0,0.9) 100%);
}

.project-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #E50914;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: #dddddd;
    margin: 0;
}

.portfolio-overlay p i {
    color: #E50914;
    margin-right: 4px;
}

.portfolio-btn-wrapper {
    text-align: center;
}

.btn-portfolio-more {
    background-color: #111111;
    color: #ffffff !important;
    padding: 14px 34px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-portfolio-more:hover {
    background-color: #E50914;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.35);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .portfolio-img-box {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-img-box {
        height: 250px;
    }

    .portfolio-overlay h3 {
        font-size: 20px;
    }
}





















/* ==========================================
   Decor World — High-Contrast Luxury Review Ticker CSS
   ========================================== */

.review-ticker-section {
    padding: 70px 0;
    background-color: #f4f5f7; /* Light Background for High Contrast */
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    margin-top: 30px;
}

/* Side Fading Shadow Effects for Smooth Edge Look */
.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f4f5f7 0%, rgba(244, 245, 247, 0) 100%);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f4f5f7 0%, rgba(244, 245, 247, 0) 100%);
}

/* Continuous Infinite Track Animation */
.ticker-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: infiniteScroll 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused; /* Hover karne par animation ruk jayega */
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* High-Contrast Luxury Dark Cards */
.ticker-card {
    background: #111111; /* Dark Corporate Charcoal Card */
    border: 1px solid #222222;
    border-top: 3px solid #E50914; /* Decor World Red Top Accent */
    border-radius: 14px;
    padding: 22px 24px;
    width: 340px;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Deep Shadow */
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ticker-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #E50914;
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25); /* Luxury Red Glow on Hover */
}

/* Metallic Gold Rating Stars */
.ticker-card .stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Clean & Highly Readable Review Text */
.ticker-card p {
    font-size: 13.5px;
    color: #e0e0e0;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

/* Client Details Footer */
.client-detail {
    font-size: 12px;
    color: #aaaaaa;
    border-top: 1px solid #252525;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-detail strong {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.client-detail span {
    color: #E50914; /* Red Location Tag */
    font-weight: 500;
}

/* Mobile Screen Responsiveness */
@media screen and (max-width: 576px) {
    .ticker-card {
        width: 280px;
        padding: 18px 20px;
    }

    .ticker-card p {
        font-size: 12.5px;
    }
}















/* ==========================================
   Decor World — Our Process Section CSS
   ========================================== */

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 30px 22px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #111111;
    transition: background 0.3s ease;
}

.process-card:hover::before {
    background: #E50914;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    transition: color 0.3s ease;
}

.process-card:hover .step-number {
    color: rgba(229, 9, 20, 0.15);
}

.process-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: #E50914;
    color: #ffffff;
}

.process-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-card {
        padding: 22px 20px;
    }
}
















/* ==========================================
   Decor World — Final CTA Banner Styling
   ========================================== */

.final-cta-section {
    padding: 60px 0 90px;
    background-color: #ffffff;
}

.cta-banner-card {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 6px solid #E50914;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-content p {
    font-size: 14.5px;
    color: #cccccc;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* WhatsApp Green Luxury Button */
.btn-cta-whatsapp {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-whatsapp i {
    font-size: 18px;
}

.btn-cta-whatsapp:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Call Button */
.btn-cta-call {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-call:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-whatsapp, 
    .btn-cta-call {
        width: 100%;
        justify-content: center;
    }
}


























/* ==========================================
   Decor World — Ultra Luxury About Us Hero FX
   ========================================== */

.about-hero-section {
    position: relative;
    padding: 110px 0 90px;
    background: #09090b; /* Ultra Dark Luxury Tone */
    color: #ffffff;
    overflow: hidden;
}

/* Ambient Glow FX */
.glow-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.orb-left {
    top: -50px;
    left: -100px;
    background: rgba(229, 9, 20, 0.25);
}

.orb-right {
    bottom: -50px;
    right: -100px;
    background: rgba(255, 215, 0, 0.12);
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Left Content Animations */
.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.4);
    color: #E50914;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fadeInUp 0.9s ease forwards;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.highlight-red {
    color: #E50914;
    background: linear-gradient(135deg, #E50914 0%, #ff4d58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 16px;
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 580px;
    animation: fadeInUp 1s ease forwards;
}

/* Mini Stats */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 14px;
    width: fit-content;
    animation: fadeInUp 1.1s ease forwards;
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    margin: 4px 0 0;
    letter-spacing: 0.5px;
}

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

/* Right Side 3D Visual Stage */
.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-image-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: zoomIn 1s ease forwards;
}

.glass-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.glass-image-card:hover img {
    transform: scale(1.06);
}

/* Floating Cards Animation */
.floating-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.card-badge {
    top: 40px;
    left: -30px;
    border-left: 3px solid #E50914;
    animation: floatAnim 4s ease-in-out infinite;
}

.card-turnkey {
    bottom: 40px;
    right: -20px;
    border-left: 3px solid #FFD700;
    animation: floatAnim 4s ease-in-out infinite 2s;
}

.floating-card i {
    font-size: 22px;
}

.card-badge i { color: #E50914; }
.card-turnkey i { color: #FFD700; }

.floating-card strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.floating-card span {
    font-size: 11px;
    color: #aaaaaa;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-main-title { font-size: 38px; }
    .card-badge { left: 10px; }
    .card-turnkey { right: 10px; }
}

@media screen and (max-width: 576px) {
    .about-hero-section { padding: 80px 0 60px; }
    .hero-main-title { font-size: 30px; }
    .hero-subtext { font-size: 14px; }
    
    .hero-mini-stats {
        width: 100%;
        justify-content: space-around;
        gap: 10px;
        padding: 14px 10px;
    }
    
    .stat-item h4 { font-size: 20px; }
    .stat-item p { font-size: 9px; }
}
















/* ==========================================
   Decor World — Founder's Vision & Message CSS
   ========================================== */

.founder-vision-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Image Styling */
.founder-image-wrapper {
    position: relative;
}

.founder-img-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid #eef0f2;
}

.founder-img-box img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.founder-img-box:hover img {
    transform: scale(1.03);
}

.founder-badge-card {
    position: absolute;
    bottom: -25px;
    left: 25px;
    background: #111111;
    color: #ffffff;
    padding: 16px 26px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border-left: 4px solid #E50914;
}

.founder-badge-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.founder-badge-card p {
    font-size: 12px;
    color: #aaaaaa;
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Content Styling */
.red-divider-left {
    width: 50px;
    height: 3px;
    background-color: #E50914;
    margin: 10px 0 25px;
    border-radius: 2px;
}

.quote-box {
    background: #fdf2f2;
    border-left: 3px solid #E50914;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
}

.quote-box i {
    color: rgba(229, 9, 20, 0.2);
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #222222;
    line-height: 1.6;
    margin: 0;
}

.founder-bio p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 700;
    color: #111111;
}

.btn-founder-wa {
    background: #25D366;
    color: #ffffff !important;
    padding: 11px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-founder-wa:hover {
    background: #111111;
    transform: translateY(-2px);
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-badge-card {
        left: 15px;
        bottom: -20px;
        padding: 14px 20px;
    }

    .founder-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

















/* ==========================================
   Decor World — Core Values Section CSS
   ========================================== */

.values-section {
    padding: 90px 0;
    background-color: #f8f9fa;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.value-card:hover::before {
    background: #E50914;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E50914;
    margin: 0 auto 20px;
    transition: all 0.35s ease;
}

.value-card:hover .value-icon {
    background: #E50914;
    color: #ffffff;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

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

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 25px 20px;
    }
}























/* ==========================================
   Decor World — Standalone "Why Choose Us" & Integrated CTA CSS
   ========================================== */

.why-choose-luxury-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
}

.why-choose-seo-intro {
    max-width: 750px;
    margin: -15px auto 50px;
    text-align: center;
}

.why-choose-seo-intro p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
}

.why-choose-seo-intro strong {
    color: #111111;
}

/* 6 Grid Layout */
.why-choose-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.seo-feature-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.seo-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #E50914;
    transition: width 0.4s ease;
}

.seo-feature-card:hover::before {
    width: 100%;
}

.seo-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.12);
}

.card-icon-glow {
    width: 55px;
    height: 55px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.seo-feature-card:hover .card-icon-glow {
    background: #E50914;
    color: #ffffff;
    transform: scale(1.05);
}

.seo-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.seo-feature-card p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Embedded WhatsApp CTA Card */
.about-embedded-cta {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 6px solid #E50914;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.cta-inner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-inner-content p {
    font-size: 14px;
    color: #bbbbbb;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-wa-gold {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-wa-gold:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
}

.btn-call-luxury {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-call-luxury:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .why-choose-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-embedded-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

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

    .btn-wa-gold, .btn-call-luxury {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .why-choose-grid-v2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .seo-feature-card {
        padding: 25px 20px;
    }
}


















/* ==========================================
   Decor World — FAQ Accordion Styling
   ========================================== */

.about-faq-section {
    padding: 80px 0 100px;
    background-color: #f8f9fa;
}

.faq-accordion-wrapper {
    max-width: 850px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #ffffff;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.faq-question i {
    color: #E50914;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: #fafafa;
    padding: 0 25px;
}

.faq-answer p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Active Open FAQ State */
.faq-item.active {
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.08);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}


















/* ==========================================
   Decor World — Services Hero Section CSS
   ========================================== */

.services-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background-color: #0d0d0d;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.05);
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.85) 100%);
    z-index: 2;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.luxury-badge-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.4);
    color: #E50914;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.9s ease forwards;
}

.text-gradient-red {
    background: linear-gradient(135deg, #E50914 0%, #ff4d58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-services-desc {
    font-size: 15.5px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 560px;
    animation: fadeInUp 1s ease forwards;
}

.hero-services-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1.1s ease forwards;
}

.btn-hero-wa {
    background: #25D366;
    color: #ffffff !important;
    padding: 13px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-wa:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-2px);
}

.btn-hero-scroll {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 13px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-scroll:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
}

/* Right Side 4 Glass Cards Grid */
.services-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 28px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    animation: zoomIn 1s ease forwards;
}

.hero-service-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(229, 9, 20, 0.15);
    border-color: #E50914;
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25);
}

.card-icon {
    font-size: 26px;
    color: #E50914;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.hero-service-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: #ffffff;
}

.hero-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-service-card p {
    font-size: 12px;
    color: #aaaaaa;
    margin: 0;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-services-title { font-size: 36px; }
    .services-hero-cards { gap: 15px; }
}

@media screen and (max-width: 576px) {
    .services-hero-section { padding: 90px 0 60px; }
    .hero-services-title { font-size: 28px; }
    .hero-services-btns { flex-direction: column; }
    .btn-hero-wa, .btn-hero-scroll { width: 100%; justify-content: center; }
}



/* Background Image Update - Clear & Sharp Look */
.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: none; /* Blur hata diya gaya hai taaki image sharp dikhe */
    transform: scale(1);
    z-index: 1;
}

/* Overlay Adjusted for Better Visibility */
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient ko thoda halka kiya hai taaki background room saaf dikhe */
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.65) 60%, rgba(13, 13, 13, 0.45) 100%);
    z-index: 2;
}



/* Mobile Optimization for Services Hero Section */
@media screen and (max-width: 576px) {
    .services-hero-section {
        min-height: auto; /* Fixed Height ko hata diya gaya hai */
        padding: 60px 0 45px; /* Mobile ke liye padding kam kar di hai */
    }

    .hero-services-title {
        font-size: 26px; /* Text size mobile ke hisab se perfect */
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-services-desc {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .services-hero-cards {
        gap: 12px;
        margin-top: 10px;
    }

    .hero-service-card {
        padding: 16px 14px; /* Card ki height/space bhi compact kar di hai */
    }

    .hero-service-card h3 {
        font-size: 14px;
    }
}








/* ==========================================
   Decor World — Section 2: Material Showcase & Calculator Strip CSS
   ========================================== */

.material-quality-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.material-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 30px 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.material-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.mat-icon {
    width: 52px;
    height: 52px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.material-card:hover .mat-icon {
    background: #E50914;
    color: #ffffff;
}

.material-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.material-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mat-badge {
    margin-top: auto;
    background: #f4f5f7;
    color: #111111;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

/* Calculator Redirect Strip */
.calculator-redirect-strip {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-left: 5px solid #E50914;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.strip-text {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}

.strip-text i {
    font-size: 32px;
    color: #E50914;
}

.strip-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin: 0 0 4px;
}

.strip-text p {
    font-size: 13.5px;
    color: #bbbbbb;
    margin: 0;
}

.btn-goto-calc {
    background: #E50914;
    color: #ffffff !important;
    padding: 13px 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    transition: all 0.3s ease;
}

.btn-goto-calc:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-2px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .calculator-redirect-strip {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .strip-text {
        flex-direction: column;
        gap: 10px;
    }

    .btn-goto-calc {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}















/* ==========================================
   Decor World — Ultra-Luxury Corporate Architecture Showcase CSS
   ========================================== */

.corporate-architecture-section {
    padding: 100px 0;
    background: #09090b; /* Deep Dark Corporate Aesthetic */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.architecture-stage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-red-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.4);
    color: #E50914;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.arch-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.text-stroke-gold {
    color: #FFD700;
    background: linear-gradient(135deg, #FFD700 0%, #ffae00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arch-desc {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Feature Bars */
.arch-feature-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arch-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.arch-bar-item:hover {
    background: rgba(229, 9, 20, 0.08);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(8px);
}

.bar-icon {
    width: 44px;
    height: 44px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #E50914;
    flex-shrink: 0;
}

.arch-bar-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.arch-bar-item p {
    font-size: 12.5px;
    color: #888888;
    margin: 0;
    line-height: 1.5;
}

/* Right Visual Stage */
.architecture-visual-stage {
    position: relative;
}

.arch-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.arch-image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.arch-image-frame:hover img {
    transform: scale(1.05);
}

/* Floating Cards */
.arch-float-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.card-top {
    top: 30px;
    left: -25px;
    border-left: 3px solid #FFD700;
}

.card-bottom {
    bottom: 30px;
    right: -20px;
    border-left: 3px solid #E50914;
}

.arch-float-card i {
    font-size: 22px;
}

.card-top i { color: #FFD700; }
.card-bottom i { color: #E50914; }

.arch-float-card strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.arch-float-card span {
    font-size: 11px;
    color: #aaaaaa;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .architecture-stage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .arch-title { font-size: 30px; }
    .card-top { left: 10px; }
    .card-bottom { right: 10px; }
}












/* ==========================================
   Decor World — 6-Step Execution Process CSS
   ========================================== */

.execution-process-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
}

.process-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.timeline-step {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    transition: color 0.3s ease;
}

.timeline-card:hover .timeline-step {
    color: rgba(229, 9, 20, 0.2);
}

.timeline-icon {
    width: 52px;
    height: 52px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    background: #E50914;
    color: #ffffff;
}

.timeline-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .process-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .process-timeline-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .timeline-card {
        padding: 25px 20px;
    }
}
















/* ==========================================
   Decor World — Corporate Lead Generation Section CSS
   ========================================== */

.service-lead-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.lead-wrapper-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef0f2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    overflow: hidden;
}

/* Left Panel */
.lead-info-side {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 55px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-gold-pill {
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
}

.lead-info-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.lead-info-side p {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 30px;
}

.lead-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #dddddd;
}

.highlight-point i {
    color: #25D366;
    font-size: 16px;
}

.direct-phone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 14px;
    width: fit-content;
}

.phone-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #E50914;
}

.direct-phone-card small {
    display: block;
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
}

.direct-phone-card a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
}

/* Right Panel Form */
.lead-form-side {
    padding: 55px 50px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-form-side h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 5px;
}

.form-subtext {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

.input-field-group {
    margin-bottom: 18px;
}

.input-field-group label {
    display: block;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    color: #999999;
    font-size: 14px;
    pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #111111;
    outline: none;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: #E50914;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.btn-submit-whatsapp-lead {
    width: 100%;
    background: #25D366;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-whatsapp-lead:hover {
    background: #111111;
    transform: translateY(-2px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .lead-wrapper-box {
        grid-template-columns: 1fr;
    }

    .lead-info-side,
    .lead-form-side {
        padding: 40px 25px;
    }
}



















/* ==========================================
   Decor World — Masterpiece Portfolio Hero CSS
   ========================================== */

.masterpiece-hero-section {
    position: relative;
    padding: 120px 0 90px;
    background: #08080a; /* Ultra Dark Cinema Tone */
    color: #ffffff;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 3;
}

/* Ambient Glow Background Orbs */
.hero-glow-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}

.orb-red-glow {
    top: -100px;
    left: -120px;
    background: rgba(229, 9, 20, 0.28);
}

.orb-gold-glow {
    top: 50px;
    right: -120px;
    background: rgba(255, 215, 0, 0.15);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 2;
}

/* Center Typography */
.masterpiece-hero-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.badge-gold-luxury {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #FFD700;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 22px;
}

.masterpiece-title {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #ffae00 50%, #E50914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.masterpiece-subtitle {
    font-size: 16px;
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Action CTAs */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.btn-wa-masterpiece {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.35s ease;
}

.btn-wa-masterpiece:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
}

.btn-explore-anchor {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
}

.btn-explore-anchor:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
}

/* Hero Visual Stage Card */
.hero-visual-stage-card {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-visual-stage-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.hero-visual-stage-card:hover img {
    transform: scale(1.04);
}

.stage-glass-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    padding: 22px 30px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-gold {
    color: #FFD700;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.stage-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 3px;
}

.stage-info p {
    font-size: 13px;
    color: #aaaaaa;
    margin: 0;
}

.stage-metric {
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.stage-metric h4 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #25D366;
    margin: 0;
    line-height: 1;
}

.stage-metric span {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
}

/* Floating Badges */
.badge-float {
    position: absolute;
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.float-left-badge {
    top: 40px;
    left: -30px;
    border-left: 4px solid #FFD700;
}

.float-right-badge {
    bottom: 100px;
    right: -30px;
    border-left: 4px solid #E50914;
}

.badge-float i { font-size: 24px; }
.float-left-badge i { color: #FFD700; }
.float-right-badge i { color: #E50914; }

.badge-float strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.badge-float span {
    font-size: 11px;
    color: #aaaaaa;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .masterpiece-title { font-size: 38px; }
    .hero-visual-stage-card img { height: 380px; }
    
    .float-left-badge { left: 10px; top: 20px; }
    .float-right-badge { right: 10px; bottom: 80px; }

    .stage-glass-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .stage-metric {
        border-left: none;
        padding-left: 0;
        text-align: left;
    }
}

@media screen and (max-width: 576px) {
    .masterpiece-hero-section { padding: 90px 0 60px; }
    .masterpiece-title { font-size: 28px; }
    .masterpiece-subtitle { font-size: 14px; }
    .hero-cta-group { flex-direction: column; }
    .btn-wa-masterpiece, .btn-explore-anchor { width: 100%; justify-content: center; }
}













/* ==========================================
   Decor World — Portfolio Main Sections CSS
   ========================================== */

.portfolio-gallery-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.portfolio-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 45px;
    flex-wrap: wrap;
}

.filter-tab {
    background: #f4f5f7;
    border: 1px solid #e0e0e0;
    color: #444444;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: #E50914;
    color: #ffffff;
    border-color: #E50914;
    box-shadow: 0 5px 18px rgba(229, 9, 20, 0.3);
}

/* Gallery Grid & Image Cards */
.portfolio-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.port-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f2;
    transition: all 0.35s ease;
}

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

.port-img-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.port-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.port-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111111;
    color: #ffffff;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    border-left: 3px solid #E50914;
    z-index: 2;
}

.port-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 22px 22px;
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 70%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.port-card-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 4px;
}

.port-card-overlay p {
    font-size: 12.5px;
    color: #cccccc;
    margin-bottom: 14px;
}

.btn-port-wa {
    background: #25D366;
    color: #ffffff !important;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-port-wa:hover {
    background: #ffffff;
    color: #111111 !important;
}

/* Before vs After Section */
.before-after-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.ba-card-grid {
    max-width: 950px;
    margin: 25px auto 0;
}

.ba-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.ba-side {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 300px;
}

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

.ba-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.after-tag {
    background: #25D366;
}

.ba-divider-line {
    width: 44px;
    height: 44px;
    background: #E50914;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

/* Portfolio Action Banner */
.portfolio-cta-banner {
    padding: 50px 0 90px;
    background-color: #ffffff;
}

.p-banner-card {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 6px solid #E50914;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.p-banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.p-banner-text p {
    font-size: 14.5px;
    color: #bbbbbb;
    margin: 0;
}

.p-banner-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-banner-wa {
    background: #25D366;
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-banner-wa:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
}

.btn-banner-call {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-banner-call:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .portfolio-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ba-card {
        grid-template-columns: 1fr;
    }

    .ba-divider-line {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .p-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

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

    .btn-banner-wa, .btn-banner-call {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .portfolio-grid-main {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}






/* Image Fallback & Ratio Lock Fix */
.port-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: #1a1a1a; /* Background fallback in case image loads slow */
    overflow: hidden;
}

.port-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}













/* ==========================================
   Decor World — Corporate Service Lead Form CSS (Footer Position)
   ========================================== */

.service-lead-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}

.lead-wrapper-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef0f2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    overflow: hidden;
    max-width: 1050px;
    margin: 0 auto;
}

/* Left Panel */
.lead-info-side {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 55px 50px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-gold-pill {
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
}

.lead-info-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #ffffff;
}

.lead-info-side p {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 30px;
}

.lead-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #dddddd;
}

.highlight-point i {
    color: #25D366;
    font-size: 16px;
}

.direct-phone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 14px;
    width: fit-content;
}

.phone-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #E50914;
}

.direct-phone-card small {
    display: block;
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
}

.direct-phone-card a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
}

/* Right Panel Form */
.lead-form-side {
    padding: 55px 50px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-form-side h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 5px;
}

.form-subtext {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

.input-field-group {
    margin-bottom: 18px;
}

.input-field-group label {
    display: block;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    color: #999999;
    font-size: 14px;
    pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #111111;
    outline: none;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: #E50914;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.btn-submit-whatsapp-lead {
    width: 100%;
    background: #25D366;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-whatsapp-lead:hover {
    background: #111111;
    transform: translateY(-2px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .lead-wrapper-box {
        grid-template-columns: 1fr;
    }

    .lead-info-side,
    .lead-form-side {
        padding: 40px 25px;
    }
}


















/* ==========================================
   Decor World — Ultra Luxury Estimator Hero CSS
   ========================================== */

.ultra-est-hero {
    position: relative;
    padding: 130px 0 110px;
    background: #08080a;
    color: #ffffff;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

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

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.05);
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.95) 100%);
}

.est-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 2;
}

.orb-crimson { top: -100px; left: -100px; background: rgba(229, 9, 20, 0.28); }
.orb-gold { bottom: -100px; right: -100px; background: rgba(255, 215, 0, 0.18); }

.relative-z {
    position: relative;
    z-index: 3;
}

.ultra-hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.badge-gold-3d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #FFD700;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.ultra-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.text-gold-shimmer {
    background: linear-gradient(135deg, #FFD700 0%, #ffae00 50%, #E50914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra-hero-sub {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

/* Hero Live Quick-Calculator Glass Bar */
.hero-calc-glass-bar {
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 28px 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    max-width: 1050px;
    margin: 0 auto;
    border-top: 4px solid #FFD700;
}

.calc-bar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

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

.pulse-dot-green {
    width: 9px;
    height: 9px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: pulse 1.8s infinite;
}

.live-indicator small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #25D366;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cert-tag {
    font-size: 11px;
    color: #aaaaaa;
}

.cert-tag i { color: #FFD700; margin-right: 4px; }

/* Grid Controls */
.calc-bar-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1fr 1.1fr;
    gap: 20px;
    align-items: center;
}

.calc-bar-item label {
    display: block;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #aaaaaa;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.calc-bar-item label i { color: #E50914; margin-right: 4px; }

.calc-bar-item select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

.calc-bar-item select option {
    background: #111111;
    color: #ffffff;
}

.calc-bar-result small {
    display: block;
    font-size: 10.5px;
    color: #888888;
    text-transform: uppercase;
}

.calc-bar-result h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #25D366;
    margin: 2px 0 0;
}

.btn-hero-wa-calc {
    background: #25D366;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 14px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-wa-calc:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .ultra-hero-title { font-size: 36px; }
    .calc-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media screen and (max-width: 576px) {
    .ultra-est-hero { padding: 90px 0 60px; }
    .ultra-hero-title { font-size: 28px; }
    .calc-bar-grid { grid-template-columns: 1fr; }
    .hero-calc-glass-bar { padding: 20px 18px; }
}















/* ==========================================
   Decor World — Room Breakdown (Clean Light Theme) CSS
   ========================================== */

.room-breakdown-light-section {
    padding: 90px 0 100px;
    background-color: #f8f9fa; /* Clean Pearl Light Theme */
    color: #111111;
    position: relative;
}

.badge-red-sm {
    background: rgba(229, 9, 20, 0.1);
    color: #E50914;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.room-cards-light-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.room-card-light {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-card-light:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 18px 40px rgba(229, 9, 20, 0.12);
}

.room-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.room-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    flex-shrink: 0;
}

.room-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 4px;
}

.sub-spec {
    font-size: 12px;
    color: #777777;
}

.room-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-card-body li {
    font-size: 13.5px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-card-body li i {
    color: #25D366;
    font-size: 15px;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.room-price-tag small {
    display: block;
    font-size: 10.5px;
    color: #888888;
    text-transform: uppercase;
}

.room-price-tag strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #E50914;
    font-weight: 800;
}

.btn-room-wa-light {
    background: #25D366;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-room-wa-light:hover {
    background: #111111;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .room-cards-light-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 576px) {
    .room-card-light { padding: 22px 18px; }
    .room-card-footer { flex-direction: column; align-items: flex-start; gap: 15px; }
    .btn-room-wa-light { width: 100%; justify-content: center; }
}














/* ==========================================
   Decor World — Material Specs & PDF Banner CSS
   ========================================== */

.material-spec-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
    position: relative;
}

/* 4 Pillars Grid */
.spec-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 45px 0 70px;
}

.spec-pillar-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.spec-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.spec-pillar-card:hover .pillar-icon {
    background: #E50914;
    color: #ffffff;
}

.spec-pillar-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.spec-pillar-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Final PDF Estimate CTA Banner */
.pdf-estimate-banner {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-left: 6px solid #FFD700;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.pdf-banner-content {
    max-width: 650px;
}

.pdf-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ffffff;
    font-weight: 700;
    margin: 12px 0 10px;
    line-height: 1.25;
}

.pdf-banner-content p {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.65;
    margin: 0;
}

.pdf-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.btn-pdf-wa {
    background: #25D366;
    color: #ffffff !important;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-pdf-wa:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
}

.btn-pdf-call {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 13px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-pdf-call:hover {
    background: #ffffff;
    color: #111111 !important;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .spec-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pdf-estimate-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .badge-gold-pill {
        margin: 0 auto;
    }

    .pdf-banner-actions {
        width: 100%;
    }

    .btn-pdf-wa, .btn-pdf-call {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .spec-pillars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pdf-banner-content h2 {
        font-size: 24px;
    }
}











/* ==========================================
   Decor World — Ultra Luxury Contact Hero CSS
   ========================================== */

.contact-hero-unique {
    position: relative;
    padding: 130px 0 100px;
    background: #070709; /* Deep Obsidian Charcoal */
    color: #ffffff;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.relative-z {
    position: relative;
    z-index: 3;
}

/* Ambient Lighting Glow FX */
.cnt-orb {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.orb-red-glow {
    top: -100px;
    left: -120px;
    background: rgba(229, 9, 20, 0.28);
}

.orb-gold-glow {
    bottom: -100px;
    right: -120px;
    background: rgba(255, 215, 0, 0.16);
}

.cnt-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    z-index: 2;
}

/* Left Column Typography */
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-crimson-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.4);
    color: #E50914;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.contact-hero-desc {
    font-size: 16px;
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 560px;
}

.contact-hero-btns {
    display: flex;
    gap: 16px;
}

.btn-hero-contact-primary {
    background: #E50914;
    color: #ffffff !important;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 22px rgba(229, 9, 20, 0.45);
    transition: all 0.35s ease;
}

.btn-hero-contact-primary:hover {
    background: #ffffff;
    color: #111111 !important;
    transform: translateY(-3px);
}

.btn-hero-wa-glow {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366 !important;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s ease;
}

.btn-hero-wa-glow:hover {
    background: #25D366;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
}

/* Right Column Glass Stage */
.contact-hero-visual {
    position: relative;
}

.contact-glass-stage {
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    border-top: 4px solid #E50914;
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

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

.pulse-green-dot {
    width: 9px;
    height: 9px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.live-status span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #25D366;
    text-transform: uppercase;
    font-weight: 700;
}

.time-tag {
    font-size: 11px;
    color: #aaaaaa;
}

/* Quick Touch Cards */
.quick-touch-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.touch-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.touch-item:hover {
    background: rgba(229, 9, 20, 0.08);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(6px);
}

.touch-icon {
    width: 42px;
    height: 42px;
    background: rgba(229, 9, 20, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #E50914;
    flex-shrink: 0;
}

.touch-item small {
    display: block;
    font-size: 10.5px;
    color: #888888;
    text-transform: uppercase;
}

.touch-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.stage-footer {
    text-align: center;
    font-size: 11.5px;
    color: #aaaaaa;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-footer i {
    color: #FFD700;
    margin-right: 5px;
}

/* Floating Gold Badge */
.cnt-float-badge {
    position: absolute;
    bottom: -20px;
    left: -25px;
    background: #111111;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #FFD700;
}

.cnt-float-badge i {
    font-size: 22px;
    color: #FFD700;
}

.cnt-float-badge strong {
    display: block;
    font-size: 12.5px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.cnt-float-badge span {
    font-size: 10.5px;
    color: #aaaaaa;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-title { font-size: 38px; }
    .cnt-float-badge { left: 10px; bottom: -15px; }
}

@media screen and (max-width: 576px) {
    .contact-hero-unique { padding: 90px 0 60px; }
    .contact-hero-title { font-size: 28px; }
    .contact-hero-btns { flex-direction: column; }
    .btn-hero-contact-primary, .btn-hero-wa-glow { width: 100%; justify-content: center; }
}













/* ==========================================
   Decor World — Contact Page Main Section CSS
   ========================================== */

.contact-main-section {
    padding: 90px 0 100px;
    background-color: #f8f9fa;
    color: #111111;
}

.badge-red-sm {
    background: rgba(229, 9, 20, 0.1);
    color: #E50914;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 14px;
}

/* 3 Info Cards Grid */
.contact-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 60px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.12);
}

.info-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E50914;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: #E50914;
    color: #ffffff;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

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

.info-card p a {
    color: #111111 !important;
    font-weight: 700;
}

.info-card small {
    font-size: 11.5px;
    color: #888888;
}

/* Form & Map Split Stage */
.form-map-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
}

/* Left Form Panel */
.contact-form-box {
    padding: 45px;
}

.contact-form-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.form-desc {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.input-box {
    display: flex;
    flex-direction: column;
}

.input-box.full-width {
    margin-bottom: 20px;
}

.input-box label {
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #111111;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: #E50914;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.btn-submit-cnt-wa {
    width: 100%;
    background: #25D366;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.btn-submit-cnt-wa:hover {
    background: #111111;
    transform: translateY(-2px);
}

/* Right Map Panel */
.contact-map-box {
    position: relative;
    min-height: 450px;
    width: 100%;
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #111111;
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .contact-info-cards-grid { grid-template-columns: 1fr; gap: 15px; }
    .form-map-split-grid { grid-template-columns: 1fr; }
    .contact-map-box { height: 350px; }
}

@media screen and (max-width: 576px) {
    .contact-form-box { padding: 25px 18px; }
    .form-group-row { grid-template-columns: 1fr; gap: 15px; }
}
























