/* NOVALAC INDUSTRIES - PROFESSIONAL INDUSTRIAL PAINT THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PREMIUM PROFESSIONAL PAINT PALETTE */
    --primary: #1B4965;
    /* Deep Navy Blue - Trust & Professionalism */
    --secondary: #C8963E;
    /* Elegant Gold - Premium Quality */
    --accent: #8B2635;
    /* Rich Burgundy - Sophistication */
    --steel-blue: #5FA8D3;
    /* Professional Steel Blue */
    --dark-slate: #1A2332;
    /* Dark Slate for contrast */
    --warm-white: #FAF9F6;
    /* Warm white background */
    --light-gold: #E8D4A2;
    /* Light gold accents */
    --navy-light: #2E5F7E;
    /* Light navy for hover */

    /* Supporting Colors */
    --charcoal: #1a1a2e;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-light: #E5E7EB;

    /* Professional Gradients */
    --gradient-premium: linear-gradient(135deg, #1B4965, #5FA8D3);
    --gradient-gold: linear-gradient(135deg, #C8963E, #E8D4A2);
    --gradient-elegant: linear-gradient(135deg, #1B4965, #8B2635);
    --gradient-professional: linear-gradient(135deg, #1B4965, #C8963E, #5FA8D3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Industrial Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 40, 73, 0.01) 2px, rgba(26, 40, 73, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(26, 40, 73, 0.01) 2px, rgba(26, 40, 73, 0.01) 4px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

section {
    padding: 6rem 0;
    position: relative;
}

/* Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}



/* Navigation - Professional Industrial */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 40, 73, 0.08);
    z-index: 1000;
    transition: 0.3s;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-brand i {
    font-size: 1.8rem;
    color: var(--secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo-brand span {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo-brand:hover i {
    transform: rotate(-15deg) scale(1.1);
    color: var(--primary);
}

.logo-brand:hover span {
    color: var(--secondary);
}

/* Legacy logo styles for backwards compatibility */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-paint {
    width: 55px;
    height: 55px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 25px rgba(27, 73, 101, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-paint i {
    font-size: 1.6rem;
    color: #fff;
}

.logo-text span {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

.logo-text small {
    display: block;
    font-size: 0.65rem;
    color: var(--secondary);
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: 0.3s;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.btn-colorful-nav {
    padding: 0.75rem 2rem;
    background: var(--gradient-gold);
    color: var(--dark-slate);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(200, 150, 62, 0.3);
}

.btn-colorful-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 150, 62, 0.5);
    background: var(--secondary);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero - Professional Industrial Theme */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--cream);
    background-image: url('images/gallery/background-image.jpg');
    background-size: auto 90%;
    /* Use auto width, 90% height to keep it contained but "original-ish" scaling if large, or cover if huge. User said 'original height', 'auto' is safest for 'original'. Let's strictly follow 'original height' -> 'auto' */
    background-size: auto;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 0;
}

/* Page Header for Products */
.page-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary), var(--navy-light));
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/gallery/background-image.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header .header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Sticky Filter Bar */
.sticky-filter {
    position: sticky;
    top: 90px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-section {
    padding: 6rem 0;
    background: var(--warm-white);
    text-align: center;
}

.cta-box {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-professional);
}

.footer {
    background: var(--dark-slate);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 10;
    /* Ensure footer is above other elements */
}

.footer-credits {
    margin-top: 10px;
    font-size: 0.875rem;
    opacity: 0.9;
    position: relative;
    z-index: 20;
}

.footer-credits a {
    color: var(--secondary) !important;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    z-index: 21;
    transition: 0.3s;
    border-bottom: 1px dotted var(--secondary);
}

.footer-credits a:hover {
    color: #fff !important;
    border-bottom: 1px solid #fff;
}



.paint-drips {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.drip {
    position: absolute;
    top: 0;
    width: 25px;
    height: 0;
    animation: drip 3s ease-in-out infinite;
    border-radius: 0 0 50% 50%;
}

.drip:nth-child(1) {
    background: linear-gradient(180deg, var(--primary), var(--navy-light));
}

.drip:nth-child(2) {
    background: linear-gradient(180deg, var(--secondary), var(--light-gold));
}

.drip:nth-child(3) {
    background: linear-gradient(180deg, var(--steel-blue), var(--primary));
}

.drip:nth-child(4) {
    background: linear-gradient(180deg, var(--secondary), var(--accent));
}

.drip:nth-child(5) {
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

@keyframes drip {
    0% {
        height: 0;
    }

    50% {
        height: 250px;
    }

    100% {
        height: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-colorful {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(27, 73, 101, 0.08);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0;
    width: fit-content;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.badge-colorful::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 62, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.color-dot {
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(200, 150, 62, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.btn-subsidiaries {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-subsidiaries::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-subsidiaries:hover::before {
    left: 100%;
}

.btn-subsidiaries:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(27, 73, 101, 0.4);
    border-color: var(--gradient-gold);
}

.btn-subsidiaries i:last-child {
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.hero-logo-container {
    margin: 1.5rem 0 2rem 0;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 73, 101, 0.15);
    display: inline-block;
    border: 1px solid rgba(27, 73, 101, 0.08);
}

.hero-logo-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.02);
}

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

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

.hero-title {
    font-family: "Playfair Display", serif;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-sm {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
}

.title-lg {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0.5rem 0;
}

.title-gradient {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    background-size: 200% 200%;
    animation: professionalGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes industrialGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-desc {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-premium);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 0.875rem;
    box-shadow: 0 8px 25px rgba(27, 73, 101, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 73, 101, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    font-size: 0.875rem;
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-premium);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    color: #fff;
    border-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00D4AA, #00BFFF);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.15);
}

.stat h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700, #00D4AA);
    background-size: 300% 300%;
    animation: rainbowText 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes rainbowText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes rainbowSlide {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.stat p {
    color: #555;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-right {
    position: relative;
    height: 600px;
}

.paint-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.paint-bucket {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    font-size: 5rem;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: tilt 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

@keyframes tilt {

    0%,
    100% {
        transform: translateX(-50%) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) rotate(15deg);
    }
}

.color-splash {
    position: absolute;
    border-radius: 50%;
    animation: splash 3s ease-in-out infinite;
}

.splash-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 30%;
    left: 20%;
}

.splash-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--cyan-pop) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.splash-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes splash {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.floating-colors {
    position: absolute;
    width: 100%;
    height: 100%;
}

.color-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.color-circle:nth-child(1) {
    top: 10%;
    left: 10%;
}

.color-circle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.color-circle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 1s;
}

.color-circle:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.color-circle:nth-child(5) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.color-circle:nth-child(6) {
    bottom: 30%;
    right: 20%;
    animation-delay: 2.5s;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse-colorful {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.mouse-colorful::before {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}


/* Section Headers - Ultra Vibrant */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.tag-colorful {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #FF3366, #FFD700, #00D4AA) 1;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #FF3366;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.tag-colorful i {
    color: #FFD700;
}

.section-head h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.2;
}

.section-head h2 span:first-child {
    display: block;
    color: #333;
}

.gradient-text {
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700, #00D4AA, #00BFFF);
    background-size: 400% 400%;
    animation: rainbowText 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-head p {
    color: #555;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* REALISTIC 3D ROOM VISUALIZER - COMPLETE REDESIGN */
.visualizer {
    background: linear-gradient(to bottom, #fff, rgba(255, 107, 107, 0.05));
}

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

.room-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.room-btn {
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.room-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.room-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.room-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.room-btn:hover i,
.room-btn.active i {
    color: #fff;
}

.visualizer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Room Preview Container */
.room-preview {
    position: relative;
    min-height: 420px;
    max-height: 420px;
    background: linear-gradient(180deg, #87CEEB 0%, #B0E2FF 40%, #F0F8FF 100%);
    border-radius: 15px;
    overflow: hidden;
    perspective: 1500px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1), 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

/* Hero background with translucent paint feel */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 245, 245, 0.8) 0%, rgba(255, 255, 255, 0.4) 90%),
        linear-gradient(135deg, #fff5f5 0%, #f0f7ff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-image-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-ambassador-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
    transform: translateY(-80px);
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, #ffd1dc, #ff9eb5);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.2;
    z-index: 1;
    animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.floating-badge {
    position: absolute;
    top: 20%;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-badge i {
    color: #FFD700;
    font-size: 1.2rem;
}

.floating-badge span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.room-view {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.room-view.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== EXTERIOR HOUSE - REALISTIC 3D ===== */
.exterior-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sky {
    position: absolute;
    top: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(180deg, #87CEEB 0%, #B0E2FF 100%);
}

.house-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-20deg) scale(0.65);
    width: 450px;
    height: 400px;
    margin-top: 10px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.house-3d:hover {
    transform: rotateX(10deg) rotateY(-20deg) scale(0.68);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

/* Roof 3D */
.roof-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) translateZ(10px);
    width: 0;
    height: 0;
    border-left: 260px solid transparent;
    border-right: 260px solid transparent;
    border-bottom: 140px solid #8B4513;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.roof-front {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%) translateZ(70px);
    width: 0;
    height: 0;
    border-left: 240px solid transparent;
    border-right: 240px solid transparent;
    border-bottom: 130px solid #A0522D;
    filter: brightness(1.1);
}

/* Walls 3D with Click Interaction */
.wall-main {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateZ(50px);
    width: 400px;
    height: 300px;
    background: linear-gradient(to bottom, #FFE4B5 0%, #FFDAB9 100%);
    border: 3px solid #DEB887;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
}

.wall-main:hover {
    transform: translateX(-50%) translateZ(60px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(255, 107, 107, 0.1);
}

.wall-left {
    position: absolute;
    top: 40px;
    left: 10px;
    width: 80px;
    height: 300px;
    background: linear-gradient(to right, #F5DEB3, #FFDEAD);
    transform: rotateY(-70deg) translateZ(-30px);
    transform-origin: left;
    box-shadow: inset 10px 0 25px rgba(0, 0, 0, 0.3);
}

.wall-right {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 80px;
    height: 300px;
    background: linear-gradient(to left, #F5DEB3, #FFDEAD);
    transform: rotateY(70deg) translateZ(-30px);
    transform-origin: right;
    box-shadow: inset -10px 0 25px rgba(0, 0, 0, 0.3);
}

/* Door & Windows */
.door-main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(55px);
    width: 100px;
    height: 180px;
    background: linear-gradient(to bottom, #654321 0%, #8B4513 50%, #654321 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.5);
}

.door-main::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
}

.door-knob {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.window-3d {
    position: absolute;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E2FF 100%);
    border: 6px solid #fff;
    border-radius: 6px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateZ(55px);
}

.window-1 {
    top: 90px;
    left: 60px;
}

.window-2 {
    top: 90px;
    right: 60px;
}

.window-pane {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(135, 206, 235, 0.3));
    position: relative;
    overflow: hidden;
}

.window-pane::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
    animation: windowGlare 3s infinite;
}

@keyframes windowGlare {

    0%,
    100% {
        transform: translateX(-100%) translateY(-100%);
    }

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

.window-frame-h {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.window-frame-v {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, #90EE90 0%, #228B22 100%);
}

.grass-layer {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #90EE90, #7CCD7C 3px, #90EE90 6px);
    opacity: 0.8;
}

.pathway {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60%;
    background: linear-gradient(to bottom, #D2B48C 0%, #BC9A6B 100%);
    border-radius: 60% 60% 0 0;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===== LIVING ROOM - REALISTIC 3D ===== */
.room-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(5deg) rotateY(-10deg) scale(0.68);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.room-3d:hover {
    transform: perspective(1200px) rotateX(5deg) rotateY(-10deg) scale(0.71);
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.3));
}

/* Room Walls with Click Interaction */
.room-back-wall {
    position: absolute;
    top: 8%;
    left: 12%;
    width: 76%;
    height: 58%;
    background: linear-gradient(to bottom, #F5F5DC 0%, #EEE8D5 100%);
    border: 3px solid #D3CFC4;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
}

.room-back-wall:hover {
    transform: scale(1.02) translateZ(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 70px rgba(76, 205, 196, 0.1);
}

.room-left-wall {
    position: absolute;
    top: 8%;
    left: 12%;
    width: 20%;
    height: 58%;
    background: linear-gradient(to right, #E8E8E0 0%, #F0F0E8 100%);
    transform: rotateY(-75deg);
    transform-origin: left;
    box-shadow: inset 12px 0 30px rgba(0, 0, 0, 0.2);
}

.room-right-wall {
    position: absolute;
    top: 8%;
    right: 12%;
    width: 20%;
    height: 58%;
    background: linear-gradient(to left, #E8E8E0 0%, #F0F0E8 100%);
    transform: rotateY(75deg);
    transform-origin: right;
    box-shadow: inset -12px 0 30px rgba(0, 0, 0, 0.2);
}

.room-floor {
    position: absolute;
    bottom: 12%;
    left: 12%;
    width: 76%;
    height: 35%;
    background: linear-gradient(to bottom, #D2B48C 0%, #BC9A6B 100%);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.05) 50px, rgba(0, 0, 0, 0.05) 51px);
    border: 2px solid #A0826D;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3), inset 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: rotateX(65deg);
    transform-origin: bottom;
}

.room-ceiling {
    position: absolute;
    top: 8%;
    left: 12%;
    width: 76%;
    height: 18%;
    background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
    transform: rotateX(-65deg);
    transform-origin: top;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Living Room Furniture - Interactive */
.furniture-living {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.furniture-living>* {
    pointer-events: all;
}

.sofa-3d {
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 110px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    cursor: pointer;
}

.sofa-3d:hover {
    transform: translateX(-50%) scale(1.08) translateY(-8px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.sofa-back {
    width: 100%;
    height: 65px;
    background: linear-gradient(to bottom, #4A4A4A 0%, #2A2A2A 100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.sofa-back::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    right: 15px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 8px;
}

.sofa-seat {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;
    background: linear-gradient(to bottom, #555 0%, #333 100%);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 3px 10px rgba(255, 255, 255, 0.1);
}

.sofa-arm {
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 75px;
    background: linear-gradient(to bottom, #3A3A3A 0%, #2A2A2A 100%);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.sofa-arm-left {
    left: -25px;
}

.sofa-arm-right {
    right: -25px;
}

.coffee-table {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 25px;
    background: linear-gradient(to bottom, #8B4513 0%, #654321 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 3px 8px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.coffee-table:hover {
    transform: translateX(-50%) scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.coffee-table::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 15%;
    right: 15%;
    height: 15px;
    background: linear-gradient(to bottom, #654321, #4A3010);
    border-radius: 0 0 5px 5px;
}

.tv-unit {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 110px;
    background: linear-gradient(to bottom, #222 0%, #111 100%);
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tv-unit:hover {
    transform: translateX(-50%) scale(1.05) translateY(-5px);
}

.tv-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
    border: 4px solid #333;
    border-radius: 6px;
    box-shadow: inset 0 0 40px rgba(0, 150, 255, 0.4), 0 0 30px rgba(0, 150, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: tvGlow 2s infinite;
}

@keyframes tvGlow {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.plant-pot {
    position: absolute;
    bottom: 32%;
    right: 22%;
    width: 45px;
    height: 70px;
    background: linear-gradient(to bottom, #228B22 0%, #006400 100%);
    border-radius: 50% 50% 12px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.plant-pot:hover {
    transform: scale(1.1) translateY(-5px) rotate(5deg);
}

.plant-pot::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 22px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    border-radius: 0 0 12px 12px;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
}

.plant-pot::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #2E8B57, #228B22);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.rug-floor {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 130px;
    background: repeating-linear-gradient(90deg, #DC143C 0%, #8B0000 15px, #DC143C 30px);
    border: 6px solid #8B0000;
    border-radius: 12px;
    opacity: 0.75;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ===== BEDROOM - REALISTIC 3D ===== */
.bedroom-3d .room-back-wall {
    background: linear-gradient(to bottom, #F0EAD6 0%, #E8DCC8 100%);
}

.furniture-bedroom {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.furniture-bedroom>* {
    pointer-events: all;
}

.bed-3d {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 150px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    cursor: pointer;
}

.bed-3d:hover {
    transform: translateX(-50%) scale(1.05) translateY(-8px);
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.bed-base {
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, #8B4513 0%, #654321 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.bed-mattress {
    position: absolute;
    top: -45px;
    left: 5%;
    width: 90%;
    height: 65px;
    background: linear-gradient(to bottom, #FFF 0%, #F0F0F0 100%);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.bed-mattress::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.bed-pillow {
    position: absolute;
    top: -62px;
    width: 70px;
    height: 40px;
    background: linear-gradient(to bottom, #FFF 0%, #F8F8F8 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.bed-pillow-1 {
    left: 18%;
}

.bed-pillow-2 {
    right: 18%;
}

.bed-headboard {
    position: absolute;
    top: -90px;
    left: 5%;
    width: 90%;
    height: 55px;
    background: linear-gradient(to bottom, #654321 0%, #8B4513 50%, #654321 100%);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.bed-headboard::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    right: 15px;
    bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
}

.nightstand-3d {
    position: absolute;
    bottom: 27%;
    width: 70px;
    height: 90px;
    background: linear-gradient(to bottom, #8B4513 0%, #654321 100%);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nightstand-3d:hover {
    transform: scale(1.1) translateY(-5px);
}

.nightstand-left {
    left: 12%;
}

.nightstand-right {
    right: 12%;
}

.nightstand-3d::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nightstand-lamp {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: linear-gradient(to bottom, #FFD700 0%, #FFA500 100%);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
}

.nightstand-lamp::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 15px;
    background: #8B4513;
    border-radius: 0 0 5px 5px;
}

.wardrobe {
    position: absolute;
    bottom: 38%;
    right: 17%;
    width: 110px;
    height: 200px;
    background: linear-gradient(to right, #654321 0%, #8B4513 50%, #654321 100%);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wardrobe:hover {
    transform: scale(1.05) translateY(-8px);
}

.wardrobe::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 3px;
    height: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.wardrobe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
    width: 8px;
    height: 20px;
    background: #FFD700;
    border-radius: 3px;
    box-shadow: 120px 0 0 #FFD700, 0 2px 5px rgba(0, 0, 0, 0.5), 120px 2px 5px rgba(0, 0, 0, 0.5);
}

/* ===== KITCHEN - REALISTIC 3D ===== */
.kitchen-3d .room-back-wall {
    background: linear-gradient(to bottom, #FFFAF0 0%, #FFF8E7 100%);
}

.furniture-kitchen {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.furniture-kitchen>* {
    pointer-events: all;
}

.kitchen-cabinets-upper {
    position: absolute;
    top: 17%;
    left: 17%;
    width: 66%;
    height: 90px;
    background: linear-gradient(to bottom, #8B4513 0%, #654321 100%);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kitchen-cabinets-upper:hover {
    transform: translateY(-5px) scale(1.02);
}

.kitchen-cabinets-lower {
    position: absolute;
    bottom: 28%;
    left: 17%;
    width: 66%;
    height: 110px;
    background: linear-gradient(to bottom, #654321 0%, #8B4513 100%);
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kitchen-cabinets-lower:hover {
    transform: translateY(-5px) scale(1.02);
}

.kitchen-countertop {
    position: absolute;
    bottom: 35%;
    left: 17%;
    width: 66%;
    height: 28px;
    background: linear-gradient(to bottom, #C0C0C0 0%, #A9A9A9 100%);
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 3px 8px rgba(255, 255, 255, 0.3);
}

.kitchen-sink {
    position: absolute;
    bottom: 36%;
    left: 27%;
    width: 90px;
    height: 45px;
    background: radial-gradient(ellipse, #E8E8E8 0%, #C0C0C0 100%);
    border-radius: 45%;
    box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kitchen-sink:hover {
    transform: scale(1.1);
}

.sink-faucet {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 35px;
    background: linear-gradient(to right, #C0C0C0 0%, #A9A9A9 100%);
    border-radius: 5px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

.sink-faucet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: #C0C0C0;
    border-radius: 50%;
}

.kitchen-stove {
    position: absolute;
    bottom: 36%;
    right: 22%;
    width: 110px;
    height: 70px;
    background: linear-gradient(to bottom, #222 0%, #111 100%);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.kitchen-stove:hover {
    transform: scale(1.05) translateY(-3px);
}

.refrigerator {
    position: absolute;
    bottom: 31%;
    right: 14%;
    width: 100px;
    height: 200px;
    background: linear-gradient(to bottom, #F5F5F5 0%, #E0E0E0 100%);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(0, 0, 0, 0.05);
    border: 3px solid #CCC;
    transition: all 0.3s ease;
    cursor: pointer;
}

.refrigerator:hover {
    transform: scale(1.05) translateY(-8px);
}

.refrigerator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #BBB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== BATHROOM - REALISTIC 3D ===== */
.bathroom-3d .room-back-wall {
    background: linear-gradient(to bottom, #E6F3FF 0%, #D4E9FF 100%);
}

.furniture-bathroom {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.furniture-bathroom>* {
    pointer-events: all;
}

.bathtub-3d {
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 200px;
    height: 100px;
    background: linear-gradient(to bottom, #FFF 0%, #F0F0F0 100%);
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), inset 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid #E0E0E0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bathtub-3d:hover {
    transform: scale(1.08) translateY(-8px);
}

.bathtub-inner {
    position: absolute;
    inset: 10px;
    background: linear-gradient(to bottom, #E8F4F8 0%, #D0E8F0 100%);
    border-radius: 40px;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.2);
}

.sink-3d {
    position: absolute;
    bottom: 33%;
    left: 20%;
    width: 110px;
    height: 130px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sink-3d:hover {
    transform: scale(1.1) translateY(-8px);
}

.sink-basin {
    width: 90px;
    height: 45px;
    background: radial-gradient(ellipse, #FFF 0%, #E8E8E8 100%);
    border-radius: 50%;
    box-shadow: inset 0 8px 25px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.4);
}

.sink-faucet-bath {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 35px;
    background: linear-gradient(to right, #C0C0C0 0%, #A9A9A9 100%);
    border-radius: 6px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}

.sink-faucet-bath::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 12px;
    background: #C0C0C0;
    border-radius: 50%;
}

.mirror-bath {
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(200, 230, 255, 0.7) 100%);
    border: 5px solid #C0C0C0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(135, 206, 235, 0.3);
}

.toilet-3d {
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 90px;
    background: linear-gradient(to bottom, #FFF 0%, #F0F0F0 100%);
    border-radius: 35px 35px 18px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.toilet-3d:hover {
    transform: translateX(-50%) scale(1.08) translateY(-8px);
}

.tiles-accent {
    position: absolute;
    top: 50%;
    left: 17%;
    width: 66%;
    height: 90px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0px, rgba(200, 200, 200, 0.4) 50px, rgba(255, 255, 255, 0.4) 100px);
    border-top: 3px solid rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}


/* ===== COLOR CONTROLS PANEL ===== */
.color-controls {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.color-controls h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.color-controls h3 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.color-picker-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.color-picker-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.color-picker-section input[type="color"] {
    width: 100%;
    height: 60px;
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-picker-section input[type="color"]:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.current-color {
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    letter-spacing: 1px;
}

.color-presets h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 600;
}

.preset-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.preset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.preset-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.preset-item:active {
    transform: translateY(-2px) scale(1.02);
}

.preset-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.preset-item:hover .preset-swatch {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.preset-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

.preset-item:hover span {
    color: var(--primary);
}

/* ===== ENHANCED VISUAL IMPROVEMENTS ===== */

/* Better section backgrounds */
.products {
    background: linear-gradient(to bottom, #fff 0%, rgba(78, 205, 196, 0.03) 50%, #fff 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1), transparent),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.1), transparent);
    pointer-events: none;
}

.brands {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
}

.showcase {
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 230, 109, 0.05) 100%);
}

/* ===== PRODUCTS PAGE SECTION ===== */
.products-page-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    min-height: 100vh;
}

/* Filter Container */
.filter-container {
    margin-bottom: 2rem;
}

.sticky-filter {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 150, 62, 0.3);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

/* ===== GLASSMORPHISM PRODUCT CARDS ===== */
.product-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    opacity: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(27, 73, 101, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: rgba(200, 150, 62, 0.3);
}

/* Product Image Container - compact with full image */
.product-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-transform: uppercase;
}

/* Product Info */
.product-info {
    padding: 1.75rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.4;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.product-tags span {
    background: rgba(27, 73, 101, 0.08);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Color Swatches Container */
.product-colors {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: center;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Product Button */
.btn-product {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 14px;
    background: var(--gradient-premium);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(27, 73, 101, 0.25);
}

.btn-product:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 73, 101, 0.35);
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .product-img {
        height: 220px;
        padding: 0.75rem;
    }

    .filter-bar {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

/* Better buttons throughout */
.btn-primary,
.btn-colorful-nav {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-colorful-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-colorful-nav:hover::before {
    width: 300px;
    height: 300px;
}

/* Better scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #f1f1f1, #e0e0e0);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Floating animation for decorative elements */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.color-dot {
    animation: floatSlow 4s ease-in-out infinite;
}

/* Loading animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ===== BRANDS SECTION - ULTRA VIBRANT ===== */
.brands {
    background: linear-gradient(180deg, #FFF 0%, rgba(0, 212, 170, 0.03) 50%, #FFF 100%);
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.04) 0%, transparent 25%);
    pointer-events: none;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.brand-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00D4AA, #00BFFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 51, 102, 0.15);
    border-color: rgba(255, 51, 102, 0.2);
}

.brand-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.brand-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.brand-card:hover .brand-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.brand-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-brand {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite paused;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.brand-card:hover .btn-brand {
    animation-play-state: running;
}

.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 51, 102, 0.5);
}

/* ===== CERTIFICATES & ACCREDITATIONS - PROFESSIONAL DISPLAY ===== */
.certificates {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.certificates::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(27, 73, 101, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(200, 150, 62, 0.04) 0%, transparent 35%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.certificates-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.certificate-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
}

.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(27, 73, 101, 0.15);
    border-color: var(--secondary);
}

.certificate-preview {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.certificate-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.certificate-info {
    padding: 2rem;
    text-align: center;
}

.certificate-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.certificate-info h3 i {
    color: var(--secondary);
}

.certificate-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-premium);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(27, 73, 101, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.4);
}

/* ===== BRAND AMBASSADOR PRODUCT SHOWCASE ===== */
.ambassador-products {
    background: linear-gradient(135deg, var(--warm-white) 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
}

.ambassador-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.ambassador-badge-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark-slate);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ambassador-badge-float i {
    font-size: 1rem;
}

.showcase-products h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.featured-product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.featured-product-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
}

.featured-product-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(27, 73, 101, 0.12);
}

.featured-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-premium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.featured-product-item h4 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.featured-product-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .certificates-display {
        grid-template-columns: 1fr;
    }

    .ambassador-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .certificate-preview {
        height: 300px;
    }
}

/* ===== BRAND AMBASSADOR SECTION - PROFESSIONAL ===== */
.brand-ambassador {
    background: linear-gradient(135deg,
            rgba(255, 51, 102, 0.05) 0%,
            rgba(255, 107, 53, 0.03) 15%,
            rgba(255, 215, 0, 0.05) 30%,
            rgba(0, 212, 170, 0.03) 45%,
            rgba(0, 191, 255, 0.05) 60%,
            rgba(139, 92, 246, 0.03) 75%,
            rgba(255, 105, 180, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.brand-ambassador::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 30%);
    border-radius: 50%;
    pointer-events: none;
    animation: colorPulse 10s ease-in-out infinite;
}

@keyframes colorPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    25% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) rotate(0deg);
        opacity: 0.9;
    }

    75% {
        transform: scale(1.15) rotate(-5deg);
        opacity: 1;
    }
}

.brand-ambassador::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 30%);
    border-radius: 50%;
    pointer-events: none;
    animation: colorPulse 10s ease-in-out infinite 3s;
}

.ambassador-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ambassador-left {
    position: relative;
}

.ambassador-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700, #00D4AA);
    background-size: 300% 300%;
    color: #fff;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4), 0 0 40px rgba(0, 212, 170, 0.2);
    animation: gradientShift 5s ease infinite;
    position: relative;
    overflow: hidden;
}

.ambassador-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.ambassador-badge i {
    font-size: 1.2rem;
}

.ambassador-left h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.ambassador-name {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.ambassador-quote {
    background: linear-gradient(135deg, #FFF 0%, #FFF8F8 50%, #F0FFFF 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid transparent;
    border-image: linear-gradient(180deg, #FF3366, #FFD700, #00D4AA) 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 51, 102, 0.1),
        -5px 0 20px rgba(255, 51, 102, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ambassador-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    font-family: "Playfair Display", serif;
    z-index: 0;
}

.ambassador-quote::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1), transparent);
    border-radius: 50%;
}

.ambassador-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.ambassador-signature {
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: #333;
}

.ambassador-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFF 0%, #FFF9F9 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:nth-child(1) {
    border-color: rgba(255, 107, 107, 0.3);
}

.feature-item:nth-child(2) {
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-item:nth-child(3) {
    border-color: rgba(255, 230, 109, 0.3);
}

.feature-item:nth-child(4) {
    border-color: rgba(168, 230, 207, 0.3);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    position: relative;
}

.feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FF3366, #FF6B35);
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #00D4AA, #00BFFF);
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #FFD700, #FF6B35);
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #8B5CF6, #FF69B4);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: inherit;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.feature-item p {
    margin: 0;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
}

.ambassador-right {
    position: relative;
}

/* Colorful paint splashes background */
.ambassador-right::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FF3366 0%, #FF6B35 50%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    animation: blobFloat 10s ease-in-out infinite;
    z-index: 0;
    opacity: 0.5;
}

.ambassador-right::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00D4AA 0%, #00BFFF 50%, transparent 70%);
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    animation: blobFloat 12s ease-in-out infinite 3s;
    z-index: 0;
    opacity: 0.4;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
        border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%;
    }

    75% {
        transform: translate(20px, 20px) rotate(270deg);
        border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    }
}

.ambassador-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.ambassador-image-wrapper:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.ambassador-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(0, 212, 170, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ambassador-image-wrapper:hover::before {
    opacity: 1;
}

.ambassador-image-wrapper {
    border: 5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #FF3366, #FFD700, #00D4AA, #00BFFF) border-box;
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% {
        background: linear-gradient(#fff, #fff) padding-box,
            linear-gradient(0deg, #FF3366, #FFD700, #00D4AA, #00BFFF) border-box;
    }

    25% {
        background: linear-gradient(#fff, #fff) padding-box,
            linear-gradient(90deg, #FFD700, #00D4AA, #00BFFF, #FF3366) border-box;
    }

    50% {
        background: linear-gradient(#fff, #fff) padding-box,
            linear-gradient(180deg, #00D4AA, #00BFFF, #FF3366, #FFD700) border-box;
    }

    75% {
        background: linear-gradient(#fff, #fff) padding-box,
            linear-gradient(270deg, #00BFFF, #FF3366, #FFD700, #00D4AA) border-box;
    }

    100% {
        background: linear-gradient(#fff, #fff) padding-box,
            linear-gradient(360deg, #FF3366, #FFD700, #00D4AA, #00BFFF) border-box;
    }
}

.ambassador-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.ambassador-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Paint drops animation */
.paint-drops {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.paint-drop {
    position: absolute;
    width: var(--drop-size);
    height: var(--drop-size);
    background: radial-gradient(circle at 30% 30%, var(--drop-color), transparent);
    border-radius: 50%;
    filter: blur(2px);
    animation: paintDropFloat 6s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes paintDropFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.7;
    }
}

/* Color bursts */
.color-burst {
    position: absolute;
    width: 150px;
    height: 150px;
    background: conic-gradient(from 0deg,
            #FF6B6B 0deg 60deg,
            transparent 60deg 120deg,
            #4ECDC4 120deg 180deg,
            transparent 180deg 240deg,
            #FFE66D 240deg 300deg,
            transparent 300deg 360deg);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: colorBurstSpin 20s linear infinite;
    z-index: 0;
}

.color-burst-1 {
    top: -30px;
    right: 10%;
}

.color-burst-2 {
    bottom: 15%;
    left: -30px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.color-burst-3 {
    top: 50%;
    right: -40px;
    width: 120px;
    height: 120px;
    animation-duration: 18s;
}

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

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

/* ===== GALLERY SECTION - ULTRA VIBRANT ===== */
.gallery {
    background: linear-gradient(180deg, #fff 0%, rgba(139, 92, 246, 0.03) 50%, #fff 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.05), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(255, 51, 102, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 600px;
    border: 5px solid transparent;
    background: #fff;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(255, 215, 0, 0.15), rgba(0, 212, 170, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(255, 51, 102, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 51, 102, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.6s ease;
    filter: brightness(1.08) contrast(1.08) saturate(1.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(255, 51, 102, 0.4) 70%, transparent);
    padding: 2.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===== CONTACT SECTION - ULTRA VIBRANT ===== */
.contact {
    background: linear-gradient(180deg, #fff 0%, rgba(0, 191, 255, 0.03) 50%, #fff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(255, 51, 102, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.04) 0%, transparent 25%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00D4AA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.15);
    border-color: rgba(255, 51, 102, 0.2);
}

.info-card i {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
    position: relative;
}

.info-card i::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: inherit;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.4;
    z-index: -1;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.btn-submit i {
    font-size: 1.125rem;
}

/* ===== FOOTER - ULTRA VIBRANT ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #fff;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF3366, #FF6B35, #FFD700, #00D4AA, #00BFFF, #8B5CF6, #FF3366);
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    color: #fff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00D4AA);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-logo i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
    animation: float 4s ease-in-out infinite;
}

.footer-logo span {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FF3366, #FFD700, #00D4AA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-col a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 0.65rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 12px;
}

.footer-col a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col a:hover::before {
    opacity: 1;
}

.footer-social {
    margin-top: 1.75rem;
}

.social-title {
    font-weight: 600;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 0.875rem;
}

.social-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px;
    min-height: 45px;
    background: linear-gradient(135deg, #FF3366, #FF6B35);
    border-radius: 50% !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.social-icon i {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 20px;
}

.social-icon:nth-child(2) {
    background: linear-gradient(135deg, #8B5CF6, #FF69B4);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.social-icon:nth-child(3) {
    background: linear-gradient(135deg, #00BFFF, #00D4AA);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.social-icon:nth-child(4) {
    background: linear-gradient(135deg, #FF3366, #FFD700);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.footer-credits {
    margin-top: 0.4rem;
}

.footer-credits strong {
    background: linear-gradient(135deg, #FF3366, #FFD700, #00D4AA);
    background-size: 200% 200%;
    animation: rainbowText 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ===== BACK TO TOP BUTTON - ULTRA VIBRANT ===== */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.btn-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF3366, #FFD700, #00D4AA, #00BFFF);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.6;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 45px rgba(255, 51, 102, 0.6);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.modal-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.modal-content textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-content input[readonly] {
    background: #f5f5f5;
    color: #666;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .visualizer-main {
        grid-template-columns: 1fr;
    }

    .room-preview {
        min-height: 400px;
    }

    .house-3d {
        transform: rotateX(10deg) rotateY(-20deg) scale(0.7);
    }

    .room-3d {
        transform: perspective(1200px) rotateX(5deg) rotateY(-10deg) scale(0.7);
    }

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

    .color-controls {
        padding: 1.5rem;
    }

    .room-selector {
        gap: 0.5rem;
    }

    .room-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .room-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .room-preview {
        min-height: 350px;
    }

    .house-3d {
        transform: rotateX(10deg) rotateY(-20deg) scale(0.5);
    }

    .room-3d {
        transform: perspective(1200px) rotateX(5deg) rotateY(-10deg) scale(0.5);
    }

    .preset-grid {
        grid-template-columns: 1fr;
    }

    .room-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== PRODUCTS SECTION - ULTRA VIBRANT ===== */
.products {
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 51, 102, 0.03) 50%, #FFF 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF3366, #FFD700, #00D4AA, #00BFFF, #8B5CF6);
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite paused;
    transform-origin: left;
}

.product-card:hover::before {
    animation-play-state: running;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 51, 102, 0.2);
    border-color: rgba(255, 51, 102, 0.3);
}

/* Product image styles are defined earlier - duplicate removed */

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.product-info {
    padding: 1.8rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-tags span {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.08), rgba(255, 215, 0, 0.08));
    color: #FF3366;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
}

.product-tags span:hover {
    background: linear-gradient(135deg, #FF3366, #FFD700);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-product {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-product:hover::before {
    left: 100%;
}

.btn-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.5);
}

.btn-product:active {
    transform: translateY(-1px);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.filter-btn {
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.1), transparent);
    transition: 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: #FF3366;
    color: #FF3366;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #FF3366, #FF6B35, #FFD700);
    background-size: 200% 200%;
    animation: gradientPulse 3s ease infinite;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 51, 102, 0.4);
}

/* ===== ADDITIONAL RESPONSIVE STYLES ===== */
/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.6;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-slate);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== ABOUT US SECTION ===== */
.about-section {
    background: linear-gradient(180deg, var(--warm-white) 0%, rgba(27, 73, 101, 0.03) 50%, var(--warm-white) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.about-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.15);
    border-left-color: var(--secondary);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-premium);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(27, 73, 101, 0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-stat:hover::before {
    transform: scaleX(1);
}

.about-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 73, 101, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.about-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(27, 73, 101, 0.1);
}

.about-feature i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.about-feature span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== DEALER LOCATOR ===== */
.dealer-locator {
    background: linear-gradient(180deg, var(--warm-white) 0%, rgba(200, 150, 62, 0.03) 50%, var(--warm-white) 100%);
}

.dealer-search {
    max-width: 700px;
    margin: 3rem auto;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box i {
    color: var(--primary);
    font-size: 1.25rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.btn-search {
    padding: 0.75rem 2rem;
    background: var(--gradient-premium);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(27, 73, 101, 0.3);
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dealer-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.dealer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 73, 101, 0.15);
    border-top-color: var(--secondary);
}

/* Revamped Dealers Grid with Map */
.dealers-grid-revamped {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
}

.dealer-map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 400px;
    position: relative;
}

.featured-card {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom, #fff, #f8fbff);
}

.dealer-location {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

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

    .dealer-map-container {
        min-height: 350px;
        order: -1;
        /* Show map first on mobile/tablet */
    }
}



.dealer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.dealer-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.dealer-header h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.dealer-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.dealer-info i {
    color: var(--secondary);
    width: 20px;
}

.btn-direction {
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-gold);
    color: var(--dark-slate);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-direction:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 150, 62, 0.3);
}

.dealer-card-cta {
    background: var(--gradient-professional);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dealer-cta-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.dealer-cta-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dealer-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--warm-white);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.12);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(27, 73, 101, 0.02) 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.05) 0%, rgba(200, 150, 62, 0.05) 100%);
}

.faq-question h3 {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--secondary);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {

    .ambassador-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ambassador-right {
        order: -1;
    }

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

    .footer-about {
        grid-column: 1 / -1;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right {
        height: 400px;
    }

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

    .ambassador-left h2 {
        font-size: 2.25rem;
    }

    .ambassador-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .title-lg {
        font-size: 3.5rem;
    }

    .title-gradient {
        font-size: 2.5rem;
    }

    .about-stats-grid,
    .about-features {
        grid-template-columns: 1fr;
    }

    .dealers-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
        padding: 1.5rem;
    }

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

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .title-lg {
        font-size: 2.5rem;
    }

    .title-gradient {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .ambassador-left h2 {
        font-size: 1.75rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .btn-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== AMBASSADOR SPOTLIGHT - MAGAZINE STYLE ===== */
.ambassador-spotlight {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2742 50%, #0f1d30 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Paint Blobs */
.paint-blob {
    position: absolute;
    border-radius: 50% 40% 60% 45%;
    filter: blur(60px);
    opacity: 0.4;
    animation: blobMorph 15s ease-in-out infinite;
}

.paint-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #FF3366, #FF6B35);
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.paint-blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00D4AA, #00BFFF);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.paint-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700, #FF6B35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 50% 40% 60% 45%;
        transform: rotate(0deg) scale(1);
    }

    33% {
        border-radius: 60% 50% 40% 55%;
        transform: rotate(120deg) scale(1.1);
    }

    66% {
        border-radius: 45% 60% 50% 40%;
        transform: rotate(240deg) scale(0.95);
    }
}

/* Spotlight Content Grid */
.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Visual */
.spotlight-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.paint-splash-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 51, 102, 0.3) 0%,
            rgba(255, 215, 0, 0.2) 50%,
            rgba(0, 212, 170, 0.3) 100%);
    z-index: 1;
}

.ambassador-photo {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.visual-frame:hover .ambassador-photo {
    transform: scale(1.03);
}

.gold-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: #1a1a1a;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    z-index: 10;
    text-transform: uppercase;
}

.gold-badge i {
    font-size: 1.2rem;
}

/* Right Side - Text Content */
.spotlight-text {
    color: #fff;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spotlight-tag i {
    font-size: 0.9rem;
}

.spotlight-title {
    margin-bottom: 2.5rem;
}

.spotlight-title .title-small {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.spotlight-title .title-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Quote Block */
.spotlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border-left: 4px solid #FFD700;
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    line-height: 0;
    vertical-align: middle;
}

/* Signature Line */
.signature-line {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.25rem;
}

.signature-text {
    display: flex;
    flex-direction: column;
}

.sig-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.sig-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Trust Highlights */
.trust-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Spotlight Button */
.btn-spotlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-spotlight i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .spotlight-title .title-name {
        font-size: 3rem;
    }

    .spotlight-quote {
        font-size: 1.25rem;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .ambassador-spotlight {
        padding: 5rem 0;
    }

    .spotlight-title .title-name {
        font-size: 2.5rem;
    }

    .spotlight-quote {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }

    .trust-highlights {
        gap: 1rem;
    }

    .highlight-item {
        font-size: 0.85rem;
    }

    .gold-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        bottom: 20px;
        left: 20px;
    }
}

/* ===== HERO AMBASSADOR CALLOUT ===== */
.hero-ambassador-callout {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: slideInRight 1s ease-out 0.5s both;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-ambassador-callout:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.callout-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFD700, #FF6B35, #FF3366);
    border-radius: 60px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.hero-ambassador-callout:hover .callout-glow {
    opacity: 0.5;
}

.callout-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.callout-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.callout-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
}

.callout-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.callout-cta {
    font-size: 0.75rem;
    color: #FFD700;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.callout-cta i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.hero-ambassador-callout:hover .callout-cta i {
    transform: translateX(5px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-ambassador-callout {
        bottom: 20px;
        right: 20px;
        padding: 0.6rem 1rem 0.6rem 0.6rem;
    }

    .callout-photo {
        width: 45px;
        height: 45px;
    }

    .callout-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-ambassador-callout {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        justify-content: center;
    }
}

/* ===== CERTIFICATES & TESTIMONIALS OVERHAUL ===== */
.certificates {
    background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
    position: relative;
    overflow: hidden;
}

.certificates-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Custom Certificate Visual (No Iframe) */
.certificate-wrapper {
    position: relative;
    perspective: 1000px;
}

.certificate-card-visual {
    background: #fff;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
    outline: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    background-image: radial-gradient(#f0f0f0 1px, transparent 1px);
    background-size: 20px 20px;
}

.certificate-card-visual::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid #FFD700;
    pointer-events: none;
}

.certificate-card-visual::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid #FFD700;
    pointer-events: none;
}

.cert-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.cert-logo {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cert-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

.cert-body {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.cert-body p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.cert-company {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
    display: block;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}

.cert-seal {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: 4px solid #fff;
    outline: 2px dashed #FFA500;
    position: relative;
}

.cert-seal::after {
    content: '★ QUALITY ★';
    position: absolute;
    font-size: 0.6rem;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

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

.signature-img {
    font-family: 'Playfair Display', serif;
    /* Fallback for signature */
    font-size: 1.5rem;
    color: var(--primary);
    font-style: italic;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
    display: block;
    width: 150px;
}

.signature-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    margin-top: 0.5rem;
    display: block;
}

.certificate-card-visual:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials-wrapper {
    padding-left: 2rem;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #FFD700;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.test-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.test-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.test-quote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.author-info span {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 992px) {
    .certificates-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-wrapper {
        padding-left: 0;
    }
}

/* ===========================
   GROUP SUBSIDIARIES SECTION
   =========================== */

.subsidiaries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg,
            rgba(27, 73, 101, 0.02) 0%,
            rgba(200, 150, 62, 0.03) 50%,
            rgba(95, 168, 211, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.subsidiaries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(27, 73, 101, 0.02) 35px, rgba(27, 73, 101, 0.02) 70px);
    pointer-events: none;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* Premium Subsidiary Card */
.subsidiary-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(27, 73, 101, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--steel-blue),
            var(--secondary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(27, 73, 101, 0.3),
            rgba(200, 150, 62, 0.3),
            rgba(95, 168, 211, 0.3));
    border-radius: 30px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.subsidiary-card:hover .card-glow {
    opacity: 1;
}

.subsidiary-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(27, 73, 101, 0.15),
        0 0 0 1px rgba(27, 73, 101, 0.2);
}

/* Real Estate Card Specific Styling */
.real-estate-card .subsidiary-icon {
    background: linear-gradient(135deg, var(--primary), var(--steel-blue));
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.3);
}

.real-estate-card:hover {
    border-color: var(--steel-blue);
}

/* Clothing Division Card Specific Styling */
.clothing-card .subsidiary-icon {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
}

.clothing-card:hover {
    border-color: var(--secondary);
}

/* Subsidiary Icon */
.subsidiary-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.subsidiary-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.subsidiary-card:hover .subsidiary-icon {
    transform: scale(1.1) rotate(5deg);
}

.subsidiary-card:hover .subsidiary-icon i {
    transform: scale(1.2);
}

/* Subsidiary Content */
.subsidiary-content {
    position: relative;
}

.subsidiary-industry {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.1), rgba(200, 150, 62, 0.1));
    border: 1px solid rgba(27, 73, 101, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.subsidiary-card:hover .subsidiary-industry {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.subsidiary-name {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.subsidiary-card:hover .subsidiary-name {
    color: var(--steel-blue);
}

.subsidiary-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

/* Location Details */
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(27, 73, 101, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-item i {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.location-item:hover i {
    transform: scale(1.2);
}

.location-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(27, 73, 101, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.08), rgba(200, 150, 62, 0.08));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.card-badge i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.subsidiary-card:hover .card-badge {
    background: var(--gradient-premium);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

.subsidiary-card:hover .card-badge i {
    color: #fff;
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .subsidiary-card {
        padding: 2.5rem;
    }

    .subsidiary-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .subsidiaries-section {
        padding: 4rem 0;
    }

    .subsidiary-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .subsidiary-icon {
        width: 70px;
        height: 70px;
    }

    .subsidiary-icon i {
        font-size: 2rem;
    }

    .subsidiary-name {
        font-size: 1.5rem;
    }

    .location-details {
        padding: 1.25rem;
    }

    .location-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .subsidiary-card {
        padding: 1.5rem;
    }

    .subsidiary-name {
        font-size: 1.35rem;
    }

    .subsidiary-tagline {
        font-size: 0.9rem;
    }

    .location-item span {
        font-size: 0.875rem;
    }
}

/* ========== YOUTUBE AD SECTION ========== */
.youtube-ad-section {
    background: linear-gradient(135deg, var(--warm-white) 0%, #f5f5f5 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.youtube-ad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(27, 73, 101, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 150, 62, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.video-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(27, 73, 101, 0.15),
        0 0 0 1px rgba(27, 73, 101, 0.05),
        0 0 40px rgba(200, 150, 62, 0.1);
    background: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(27, 73, 101, 0.2),
        0 0 0 1px rgba(200, 150, 62, 0.2),
        0 0 60px rgba(200, 150, 62, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== CONTRACTORS AND PAINTER MEETS SECTION ========== */
.contractors-meets {
    background: #fff;
    padding: 6rem 0;
    position: relative;
}

.meets-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.meets-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.meets-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.meets-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 73, 101, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.meets-overlay i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.meets-overlay p {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

.meets-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(27, 73, 101, 0.2),
        0 0 0 2px var(--secondary);
}

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

.meets-item:hover .meets-overlay {
    transform: translateY(0);
}

.meets-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary), var(--navy-light));
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(27, 73, 101, 0.15);
}

.cta-content i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cta-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========== MAP TOGGLE IN CONTACT SECTION ========== */
.map-toggle-card {
    background: linear-gradient(135deg, var(--gradient-premium));
}

.map-toggle-card i,
.map-toggle-card h3 {
    color: #fff;
}

.btn-toggle-map {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-toggle-map:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 62, 0.3);
}

.btn-toggle-map i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-toggle-map:hover i {
    transform: scale(1.1);
}

/* Map Section */
.map-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(27, 73, 101, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-section.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-close-map {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.btn-close-map:hover {
    background: #6d1f2a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

.offices-and-map {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 3rem;
}

.office-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.15);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(27, 73, 101, 0.1);
}

.office-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.office-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.office-info {
    margin-bottom: 1.25rem;
}

.office-location {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.office-info p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.office-info i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-direction {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-premium);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(27, 73, 101, 0.2);
}

.btn-direction:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 62, 0.3);
}

.interactive-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-height: 400px;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .meets-gallery {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .offices-and-map {
        grid-template-columns: 1fr;
    }

    .interactive-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .youtube-ad-section {
        padding: 4rem 0;
    }

    .video-wrapper {
        margin-top: 2rem;
    }

    .meets-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .map-section {
        padding: 1.5rem;
    }

    .btn-close-map {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .office-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .meets-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .meets-cta {
        margin-top: 3rem;
    }

    .cta-content i {
        font-size: 2.5rem;
    }

    .cta-content h3 {
        font-size: 1.35rem;
    }

    .office-header h3 {
        font-size: 1.1rem;
    }

    .office-info p {
        font-size: 0.85rem;
    }
}
