:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --secondary: #0F172A;
    --slate: #64748B;
    --text: #1E293B;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --decoration-opacity: 0.04;
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    background-image: url('https://www.transparenttextures.com/patterns/canvas-orange.png'); /* Subtle canvas texture */
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px; /* Increased from 50px */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

header.sticky .logo img {
    height: 60px;
}

.menu-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero_final.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

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

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Counter Section */
.counter-section {
    background: var(--secondary);
    padding: 60px 0;
    color: var(--white);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-number {
    font-size: 4rem; /* Increased from 3rem */
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.counter-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

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

.about-image {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.img-floating {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border: 10px solid var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.img-floating img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
    font-size: 20px;
}

/* Services */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title .bar {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-card:hover::after {
    opacity: 0.05;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

/* Color Visualizer */
.color-visualizer-section {
    background: var(--bg-light);
}

.visualizer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr; /* Expanded image area */
    gap: 40px;
    align-items: flex-start;
}

.visualizer-display {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 750px; /* Further increased for premium look */
}

.visualizer-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Digital Visualizer (Premium CSS-Only Design) */
.digital-room {
    position: relative;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 750px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.digital-wall {
    flex: 1;
    background: #ffffff;
    position: relative;
    /* Subtle premium wall texture */
    background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
    box-shadow: inset 0 0 100px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Realistic Wall Details */
.cornice {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 20%, #f9f9f9 40%, #cccccc 80%, #aaaaaa 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 8;
}

.wall-corner-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 40%, transparent 100%);
    z-index: 6;
}

.window-light-effect {
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.2) 40%, transparent 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 7;
    filter: blur(20px);
}

.light-switch {
    position: absolute;
    top: 50%;
    left: 120px;
    width: 40px;
    height: 60px;
    background: #fdfdfd;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2), inset -1px -1px 2px rgba(0,0,0,0.05), inset 1px 1px 2px #ffffff;
    border: 1px solid #e0e0e0;
    z-index: 8;
}
.light-switch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 2px;
    box-shadow: inset 0 2px 2px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
}

.power-outlet {
    position: absolute;
    bottom: 40px;
    left: 120px;
    width: 50px;
    height: 50px;
    background: #fdfdfd;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2), inset -1px -1px 2px rgba(0,0,0,0.05), inset 1px 1px 2px #ffffff;
    border: 1px solid #e0e0e0;
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.power-outlet::before, .power-outlet::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
}

.digital-floor {
    height: 150px;
    background: #3d2b1f;
    position: relative;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.2);
    z-index: 6; /* bring floor above the wall overlay so baseboard is not painted */
}

.baseboard {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 60%, #e0e0e0 100%);
    border-top: 1px solid #f9f9f9;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    z-index: 7;
}

.parquet {
    height: 100%;
    margin-top: 25px;
    background: linear-gradient(90deg, #5d4037 25%, #4e342e 25%, #4e342e 50%, #5d4037 50%, #5d4037 75%, #4e342e 75%);
    background-size: 80px 100%;
    opacity: 0.9;
    /* Wood texture */
    background-image: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
    perspective: 1000px;
    transform-origin: top;
    /* Optional: transform: rotateX(45deg); to make it look 3D but maybe not needed */
}

#wall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 150px); /* Covers only the digital wall area */
    mix-blend-mode: multiply;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 5;
}

.color-palette {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.palette-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-light);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.palette-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    padding: 8px 15px;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 10px;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.tab-btn.active {
    color: var(--white);
    background: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.swatch:hover {
    transform: scale(1.1);
}

.swatch.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.selected-color-info {
    font-size: 1rem;
    color: var(--secondary);
    padding-top: 15px;
    border-top: 1px solid #eee;
}

@media (max-width: 992px) {
    .visualizer-container { grid-template-columns: 1fr; }
    .visualizer-display { height: 400px; }
}

/* Striking Decorations */
.bg-label {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
    user-select: none;
}

.label-right { right: -5%; top: 10%; transform: rotate(5deg); }
.label-left { left: -5%; bottom: 10%; transform: rotate(-5deg); }

.mesh-bg {
    background: var(--mesh-gradient);
    position: relative;
}

.floating-glass {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 100px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.section-divider .shape-fill {
    fill: var(--bg-light);
}

/* Logo visibility improvement */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px; /* Even larger as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.sticky .logo img {
    height: 65px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-items {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #E2E8F0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    background: #F8FAFC;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.w-full { width: 100%; border: none; cursor: pointer; }

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-light);
    max-width: 300px;
}

.footer-links h4, 
.footer-social h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 20px 45px;
    font-size: 18px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Applications (Uygulamalar) */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.specialty-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.specialty-img {
    height: 250px;
    overflow: hidden;
}

.specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.specialty-info {
    padding: 30px;
}

.specialty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.specialty-info p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.7;
}



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

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
}

.customer h4 {
    margin-bottom: 5px;
}

.customer span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
}

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

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

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

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

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--white);
        cursor: pointer;
    }

    header.sticky .menu-toggle {
        color: var(--white);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        padding: 40px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    nav ul li a {
        font-size: 20px;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero { text-align: center; }
    .hero-content { margin: 0 auto; }
    .btn-group { flex-direction: column; }
    .comparison-slider { height: 350px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-item::after { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-logo p { margin: 0 auto; }
    .social-icons { justify-content: center; }
}
/* Artistic Decorations */
.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 15px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="%23f97316" stroke-width="4" stroke-linecap="round"/></svg>') no-repeat center;
    background-size: contain;
}

.paint-splash-bg {
    background: url('../images/art_splash.png') center/contain no-repeat;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    pointer-events: none;
    z-index: 0;
}

.paint-drip-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1200 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0C100,50 200,0 300,50C400,100 500,0 600,50C700,100 800,0 900,50C1000,100 1100,0 1200,50V0H0Z" fill="%23f8fafc"/></svg>') repeat-x;
    background-size: 400px 60px;
    z-index: 10;
}

.art-label {
    position: absolute;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
    user-select: none;
}

.art-label-right { right: -5%; top: 20%; transform: rotate(15deg); }
.art-label-left { left: -5%; bottom: 20%; transform: rotate(-15deg); }

.floating-drop {
    position: absolute;
    width: 20px;
    height: 30px;
    background: var(--primary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.3;
    animation: drip 5s infinite ease-in;
}

@keyframes drip {
    0% { transform: translateY(-20px); opacity: 0; }
    20% { opacity: 0.3; }
    100% { transform: translateY(100px); opacity: 0; }
}

/* Color Visualizer Enhancements */
.palette-info {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    opacity: 0.8;
}

.swatch {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.swatch:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.swatch.active {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.swatch.active::after {
    content: '\\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@keyframes swatchPulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.swatches-grid .swatch:first-child:not(.active) {
    animation: swatchPulse 2s infinite;
}


/* Enhanced Home Feel Details */
.light-switch {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 40px;
    height: 45px;
    background: #f8f8f8;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1), inset -1px -1px 2px rgba(0,0,0,0.05);
    z-index: 10;
}

.light-switch::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 1px solid #eee;
    border-radius: 2px;
}

.wall-corner-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.05), transparent);
    z-index: 6;
}

.window-light-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.3), transparent 70%);
    z-index: 7;
}

.baseboard {
    height: 18px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    width: 100%;
    position: relative;
    box-shadow: 0 -3px 5px rgba(0,0,0,0.05);
}


/* Cornice (Kartonpiyer) Styles */
.cornice {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05), inset 0 -2px 3px rgba(0,0,0,0.02);
    z-index: 12;
    border-bottom: 1px solid #f0f0f0;
}

.cornice::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(rgba(0,0,0,0.08), transparent);
}


/* Power Outlet (Priz) Styles */
.power-outlet {
    position: absolute;
    bottom: 25px;
    left: 15%;
    width: 45px;
    height: 45px;
    background: #fdfdfd;
    border-radius: 8px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.08), inset -1px -1px 2px rgba(0,0,0,0.03);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-outlet::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
}

.power-outlet::after {
    content: ':';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(90deg);
    font-weight: bold;
    color: #ccc;
    font-size: 14px;
    letter-spacing: 2px;
}


/* Accordion Styles */
.accordion-container { margin-top: 50px; }
.accordion-item { background: white; border-radius: 15px; margin-bottom: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.3s ease; border: 1px solid #edf2f7; }
.accordion-item:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.accordion-header { padding: 20px 25px; display: flex; align-items: center; cursor: pointer; user-select: none; position: relative; }
.step-badge { background: var(--primary); color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-right: 20px; font-size: 14px; flex-shrink: 0; }
.accordion-header h3 { font-size: 1.1rem; color: var(--secondary); font-weight: 700; margin: 0; flex-grow: 1; }
.plus-icon { width: 24px; height: 24px; background: #f1f5f9; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-size: 12px; }
.accordion-item.active { border-color: var(--primary-light); }
.accordion-item.active .plus-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: #fafafa; }
.accordion-item.active .accordion-content { max-height: 500px; }
.content-inner { padding: 20px 25px 25px 80px; color: #64748b; line-height: 1.7; border-top: 1px solid #f1f5f9; }
@media (max-width: 768px) { .content-inner { padding: 15px 20px 20px 20px; } }


/* Premium Process Timeline Styles */
.premium-process-wrapper { position: relative; padding: 60px 0; max-width: 1000px; margin: 0 auto; }
.process-timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); transform: translateX(-50%); opacity: 0.3; }
.premium-process-item { display: flex; width: 100%; margin-bottom: 80px; position: relative; }
.premium-process-item.left { justify-content: flex-start; text-align: right; }
.premium-process-item.right { justify-content: flex-end; text-align: left; }
.process-step-number { position: absolute; left: 50%; top: 20px; width: 50px; height: 50px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; transform: translateX(-50%); z-index: 10; box-shadow: 0 0 20px rgba(15, 23, 42, 0.4); border: 3px solid var(--primary); }
.pulse-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--primary); animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.process-step-card { width: 42%; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(15px); padding: 35px; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 15px 35px rgba(0,0,0,0.05); position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.premium-process-item.left .process-step-card { margin-right: 50px; }
.premium-process-item.right .process-step-card { margin-left: 50px; }
.process-step-card:hover { transform: translateY(-10px) scale(1.02); background: white; box-shadow: 0 25px 50px rgba(249, 115, 22, 0.1); }
.card-glow { position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: 25px; background: linear-gradient(45deg, var(--primary), transparent, var(--secondary)); opacity: 0; transition: 0.4s; z-index: -1; }
.process-step-card:hover .card-glow { opacity: 0.1; }
.card-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.card-body h3 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 15px; font-weight: 800; }
.card-body p { color: #64748b; line-height: 1.7; font-size: 0.95rem; }
.card-footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.05); }
.step-status { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.step-status i { font-size: 8px; animation: pulse 1.5s infinite; }
@media (max-width: 768px) { .process-timeline-line { left: 30px; } .premium-process-item { justify-content: flex-start !important; text-align: left !important; } .process-step-number { left: 30px; } .process-step-card { width: calc(100% - 80px); margin-left: 80px !important; margin-right: 0 !important; } }


/* Ultra Premium Stage Card Styles */
.stage-container { display: flex; flex-direction: column; gap: 30px; margin-top: 60px; }
.stage-card { background: #fff; border-radius: 30px; padding: 40px; display: flex; align-items: center; gap: 40px; position: relative; border: 1px solid #f1f5f9; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; }
.stage-card:hover { transform: scale(1.02) translateX(10px); box-shadow: 0 30px 60px rgba(249, 115, 22, 0.1); border-color: var(--primary-light); }
.stage-number-bg { position: absolute; right: -20px; top: -40px; font-size: 15rem; font-weight: 900; color: rgba(249, 115, 22, 0.04); font-family: 'Outfit', sans-serif; line-height: 1; pointer-events: none; user-select: none; transition: 0.5s; }
.stage-card:hover .stage-number-bg { color: rgba(249, 115, 22, 0.08); transform: scale(1.1) translateX(-20px); }
.stage-icon { width: 90px; height: 90px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-radius: 25px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2); }
.stage-content { flex-grow: 1; z-index: 2; }
.stage-header { margin-bottom: 15px; }
.stage-tag { display: inline-block; padding: 5px 15px; background: rgba(249, 115, 22, 0.1); color: var(--primary); border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; }
.stage-header h3 { font-size: 1.8rem; color: var(--secondary); font-weight: 800; margin: 0; }
.stage-content p { color: #64748b; font-size: 1.1rem; line-height: 1.8; max-width: 800px; }
.stage-arrow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 30px; color: var(--primary); opacity: 0.1; z-index: 0; }
@media (max-width: 992px) { .stage-card { flex-direction: column; text-align: center; padding: 60px 30px; } .stage-icon { margin-bottom: 20px; } .stage-number-bg { font-size: 10rem; right: 50%; transform: translateX(50%); top: 10px; } }

