/* ==========================================================================
   ETAC Modern Premium Design System (Tile & Stone Solutions Showcase)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

html {
    font-size: 13.5px !important;
}

:root {
    --primary-color: #2563eb;       /* Royal Blue */
    --primary-hover: #1d4ed8;       /* Deep Blue */
    --primary-glow: rgba(37, 99, 235, 0.4);
    --accent-gold: #60a5fa;         /* Ice Blue */
    --accent-blue: #3b82f6;
    
    --bg-dark-obsidian: #05080f;     /* Deep Black */
    --bg-dark-card: #0b1120;        /* Charcoal Black */
    --border-dark: rgba(255, 255, 255, 0.1);

    --bg-light: #f8fafc;            /* White / Light Slate */
    --bg-light-gray: #f1f5f9;
    --bg-light-card: #ffffff;
    --border-light: #cbd5e1;

    --text-primary-dark: #ffffff;
    --text-secondary-dark: #94a3b8;
    --text-primary-light: #0f172a;
    --text-secondary-light: #475569;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 8px 24px -5px var(--primary-glow);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary-light);
    background-color: var(--bg-light);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary-light);
}

.display-3 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.display-4 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

/* Global Section Padding Scale */
section.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Top Utility Bar */
.top-utility-bar {
    background: #374151;
    border-bottom: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 0.3rem 0;
}
.top-utility-bar span {
    color: #ffffff;
    font-weight: 700;
}
.top-utility-bar a {
    color: rgba(255,255,255,0.85);
}
.top-utility-bar a:hover {
    color: #ffffff;
}

/* Glassmorphism Header & Navigation */
.navbar-modern {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0.5rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-modern .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: var(--transition-smooth);
}
.navbar-brand-img:hover {
    transform: scale(1.05);
}

.nav-link-modern {
    color: #374151 !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.4rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    letter-spacing: 0.01em;
}
.nav-link-modern:hover, .nav-link-modern.active {
    color: #2563eb !important;
    background: rgba(37, 99, 235, 0.06);
}
.nav-link-modern.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: var(--radius-full);
}

/* Vibrant Blue Primary Buttons System */
.btn-primary-modern {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}
.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

/* High-Impact Black & Blue Hero Section */
.hero-section {
    background: radial-gradient(circle at 70% 30%, #0b1329 0%, #030712 100%);
    padding: 4.5rem 0 5rem 0 !important;
    position: relative;
    overflow: hidden;
    color: var(--text-primary-dark);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    100% { transform: scale(1.15) translate(20px, -15px); opacity: 1; }
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-showcase-card {
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    transition: var(--transition-smooth);
    animation: heroFloat 6s ease-in-out infinite;
    width: 100%;
}
.hero-showcase-card:hover {
    transform: translateY(-3px);
}

.hero-slider {
    position: relative;
    overflow: visible;
    min-height: 420px;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Slider Animations */
.hero-slide-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.hero-slide-item:first-child {
    opacity: 1;
    transform: scale(1);
    position: relative;
}
.hero-slide-item.slide-animate {
    opacity: 1;
    transform: scale(1);
    position: relative;
}
.hero-slide-item img {
    transition: transform 0.6s ease;
}
.hero-slide-item.slide-animate img {
    animation: imgReveal 0.8s ease forwards;
}
@keyframes imgReveal {
    0% { opacity: 0; transform: translateY(15px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-stats-wrapper {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}
.hero-stats-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    margin-bottom: 0.15rem !important;
}
.hero-stats-wrapper .text-muted {
    color: #cbd5e1 !important;
}
.hero-stats-wrapper .row > div {
    position: relative;
}
.hero-stats-wrapper .row > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #ffffff;
}

/* Hero Product Wrapper with Feature Icons */
.hero-product-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icons-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    line-height: 1.2;
    opacity: 0.85;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #60a5fa;
    backdrop-filter: blur(8px);
}

/* Hero Heading */
.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Hero Stat Icons */
.hero-stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* YouTube Lazy Load */
.youtube-lazy {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000 url('https://img.youtube.com/vi/2_R5BfC9YCI/maxresdefault.jpg') center/cover no-repeat;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.youtube-lazy::after {
    content: '\f16a';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: #ff0000;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 2;
}
.youtube-lazy:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
.youtube-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Certification Logos */
.hero-cert-img {
    height: 55px;
    width: auto;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
    transition: var(--transition-smooth);
}
.hero-cert-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Tile & Stone Solutions Showcase (Slick Slider - Properly Spaced)
   ========================================================================== */
.solutions-section-wrapper {
    background-color: #e8edf3;
    padding: 3rem 0 2rem 0 !important;
}
.solutions-section-wrapper .container {
    max-width: 1200px;
}

/* Left title column */
.solutions-section-wrapper .solutions-title-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #dde3ec;
    border-radius: 14px;
    min-height: 340px;
}
.solutions-section-wrapper .solutions-title-col h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}
.solutions-title-icon {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.solutions-how-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    border: 2px solid #e2e8f0;
}
.solutions-how-badge span.plus {
    font-size: 1.3rem;
    line-height: 1;
    color: #dc2626;
}

/* Main content slider card */
.slider-content {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #d1dae8;
    box-shadow: 0 12px 40px -8px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Slide inner layout */
.solution-slide-inner {
    display: flex;
    min-height: 340px;
}
.solution-slide-left {
    flex: 0 0 38%;
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    border-right: none;
    position: relative;
    display: flex;
    flex-direction: column;
}
.solution-slide-left::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #dc2626, #dc2626, transparent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}
.solution-slide-right {
    flex: 1;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
}
.solution-slide-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.solution-slide-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}
.solution-slide-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.solution-slide-desc {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}
.solution-slide-subtitle {
    font-size: 0.78rem;
    font-weight: 400;
    color: #334155;
    margin-bottom: 4px;
}
.solution-slide-list {
    font-size: 0.78rem;
    color: #64748b;
    padding-left: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* Product recommendation cards */
.solution-rec-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.solution-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 0.85rem;
}
.solution-product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.solution-product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.solution-product-grid.cols-1 { grid-template-columns: repeat(1, 1fr); }
.solution-product-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem 0.4rem 0.5rem;
    text-align: center;
    transition: all 0.2s ease;
}
.solution-product-card:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
}
.solution-product-card img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 0.35rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.solution-product-card .prod-name {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    display: block;
}
.solution-product-card .prod-sub {
    font-size: 0.6rem;
    color: #64748b;
    line-height: 1.3;
    display: block;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Video section */
.solution-video-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.solution-video-wrap {
    border-radius: 10px;
    overflow: hidden;
    width: 65%;
    max-width: 400px;
    margin: 0 auto;
    min-height: 180px;
    max-height: 220px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.solution-video-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: block;
    border: 0;
}

/* Nav arrows */
.slick-prev-l, .slick-next-r {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 64px;
    background: #1e293b;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 6px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.slick-prev-l { left: 0; border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
.slick-next-r { right: 0; border-top-right-radius: 6px; border-bottom-right-radius: 6px; }
.slick-prev-l:hover, .slick-next-r:hover {
    background: #dc2626;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
    transform: translateY(-50%) scale(1.05);
}
.slick-prev-l:active, .slick-next-r:active {
    transform: translateY(-50%) scale(0.97);
}

/* Thumbnail strip */
.solutions-thumb-strip {
    margin-top: 0.85rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #d1dae8;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}
.solution-thumb {
    padding: 0 5px;
    cursor: pointer;
    outline: none;
}
.solution-thumb .solution-image {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.25s ease;
    aspect-ratio: 4/3;
}
.solution-thumb .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s ease;
}
.solution-thumb.slick-current .solution-image,
.solution-thumb:hover .solution-image {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.solution-thumb.slick-current .solution-image img {
    transform: scale(1.05);
}

/* Responsive: stack slide columns on mobile */
@media (max-width: 767px) {
    .solution-slide-inner {
        flex-direction: column;
        min-height: auto;
    }
    .solution-slide-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e8edf5;
        padding: 1rem;
    }
    .solution-slide-right {
        padding: 1rem;
    }
    .solution-slide-img img {
        height: 180px;
    }
    .solution-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .solution-product-grid.cols-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .solutions-section-wrapper .solutions-title-col {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 1rem;
    }
}


/* Clean Light Visualizer Studio (Blue, Black & White) */
.visualizer-section-clean {
    background-color: var(--bg-light-gray);
    padding: 2.5rem 0 !important;
}

.visualizer-clean-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.07);
}

@media (max-width: 767.98px) {
    .visualizer-section-clean {
        padding: 1.5rem 0 !important;
    }
    .visualizer-clean-card {
        padding: 0.85rem;
    }
    #colorwrapper {
        min-height: 200px !important;
    }
}

.clean-tab-bar {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 5px;
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}
.clean-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.84rem;
    color: #475569;
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.clean-tab-btn:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}
.clean-tab-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-glow);
}

.color-pill-clean {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 0.5rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 100%;
}
.color-pill-clean:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}
.color-dot-clean {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.color-name-clean {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-thumb-clean {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    border: 2px solid #e2e8f0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 3px;
}
.tile-thumb-clean:hover {
    transform: scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.canvas-studio-frame {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.canvas-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem 0.5rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

#colorwrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #ffffff;
    transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#colorwrapper #image,
#colorwrapper #wall,
#colorwrapper .wall-img,
.wall-img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
}

/* Cards & Utilities */
.card-modern {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Simple & Professional Featured Products */
.card-product-clean {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.1rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-product-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.card-product-img-wrap {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.card-product-img-wrap img {
    max-height: 125px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-product-clean:hover .card-product-img-wrap img {
    transform: scale(1.05);
}

.card-product-clean-title {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.85rem;
    margin-bottom: 0.2rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-product-clean-title a {
    color: #0f172a !important;
}

.card-product-clean-title a:hover {
    color: var(--primary-color) !important;
}

.card-product-clean-cat {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Support & Technical Guidance Section (Matching User Mockup) */
.support-header-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #4f46e5;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.support-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.support-card-blue {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.support-card-blue:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.12);
    border-color: #c7d2fe;
}

.support-card-green {
    background: #f4fbf7;
    border: 1px solid #d1fae5;
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.05);
}

.support-card-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.14);
    border-color: #a7f3d0;
}

.support-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.35rem;
}

.icon-circle-blue {
    color: #4f46e5;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
    border: 1px solid #e0e7ff;
}

.icon-circle-green {
    color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    border: 1px solid #d1fae5;
}

.support-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.support-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 380px;
    font-weight: 400;
}

.btn-support-blue {
    background: linear-gradient(135deg, #5b51d8 0%, #3b31b3 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-support-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.5);
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.btn-support-green {
    background: #2d6a4f;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 8px 22px rgba(45, 106, 79, 0.3);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-support-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 106, 79, 0.45);
    background: #1b4332;
}

.icon-box-modern {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(96, 165, 250, 0.15) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    transition: var(--transition-smooth);
}
.card-modern:hover .icon-box-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #ffffff;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Heading Enhancements */
.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.hero-section .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8 !important;
    max-width: 520px;
}
.section-tag {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    display: block;
}

/* Professional Corporate Footer Section */
.footer-modern {
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #94a3b8;
    padding: 3.5rem 0 1.5rem 0;
}

.footer-brand-desc {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 1.15rem;
}

.footer-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #94a3b8 !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #ffffff;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

.footer-contact-text {
    line-height: 1.5;
}

.footer-contact-text a {
    color: #ffffff !important;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.footer-contact-text a:hover {
    color: #ffffff !important;
}

.social-pill {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #94a3b8 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    margin-right: 0.5rem;
}

.social-pill:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.footer-bottom-bar {
    padding-top: 1.75rem;
    margin-top: 2.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-credit-link {
    color: #ffffff !important;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-credit-link:hover {
    color: #60a5fa !important;
}

.footer-bottom-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.footer-bottom-link:hover {
    color: #60a5fa !important;
}

.footer-bottom-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.4rem;
}

/* Corporate Legal Pages Styling (Privacy Policy & Terms of Use) */
.legal-hero {
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.legal-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.25rem;
}

.legal-breadcrumb .breadcrumb-item,
.legal-breadcrumb .breadcrumb-item a {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
}

.legal-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.legal-badge-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.legal-meta-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    display: inline-block;
    text-align: left;
}

.legal-toc-card {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
}

.legal-toc-header {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.legal-toc-link {
    color: #64748b !important;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.legal-toc-link:hover {
    color: #2563eb !important;
    background: #eff6ff;
}

.toc-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.legal-toc-link:hover .toc-num {
    background: #2563eb;
    color: #ffffff;
}

.legal-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.05);
    color: #334155;
    line-height: 1.7;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.legal-number-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.legal-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.legal-highlight-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 1.25rem 0;
    color: #0369a1;
    font-size: 0.88rem;
}

.highlight-icon {
    font-size: 1.25rem;
    color: #0284c7;
    margin-top: 2px;
}

.legal-check-list {
    list-style: none;
    padding-left: 0;
    margin: 1.15rem 0;
}

.legal-check-list li {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.legal-check-list li i {
    margin-top: 3px;
}

.legal-divider {
    border-top: 1px solid #f1f5f9;
    margin: 2.25rem 0;
}

.legal-contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.25rem;
}

/* Contact Page Styling */
.contact-quick-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    height: 100%;
}

.contact-quick-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    border-color: #cbd5e1;
}

.contact-quick-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.18) 100%);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.contact-quick-label {
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.contact-quick-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.contact-quick-val a {
    color: #0f172a !important;
    transition: color 0.2s ease;
}

.contact-quick-val a:hover {
    color: #2563eb !important;
}

.contact-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Contact Form Card & Input Enhancements */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
}

.contact-form-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #2563eb;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-input-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.contact-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-group .input-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 5;
    transition: color 0.2s ease;
}

.contact-input {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 0.7rem 0.9rem 0.7rem 2.4rem !important;
    color: #0f172a !important;
    font-size: 0.84rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02) !important;
    font-weight: 400 !important;
}

.contact-input:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
    background: #ffffff !important;
}

.contact-input-group:focus-within .input-icon {
    color: #2563eb !important;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    width: 100%;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-contact-submit i {
    transition: transform 0.25s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

/* Contact Sidebar Card Enhancements */
.contact-sidebar-card {
    background: linear-gradient(145deg, #0b132b 0%, #080e1e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.contact-sidebar-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-sidebar-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.contact-whatsapp-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 14px;
    padding: 1.15rem;
    backdrop-filter: blur(8px);
}

.whatsapp-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp-action {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    width: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-whatsapp-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #34d399 0%, #047857 100%);
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    margin-top: 2px;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-info-val {
    font-size: 0.84rem;
    color: #e2e8f0;
    line-height: 1.5;
    font-weight: 400;
}

.contact-info-val a {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

.contact-info-val a:hover {
    color: #60a5fa !important;
}
