/* Base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.7;
}

:root {
    --brand: #10b981; /* emerald */
    --brand-2: #14b8a6; /* teal */
    --brand-dark: #059669;
    --text: #0f172a;
    --muted: #64748b;
    --bg-soft: #f8fafc;
    --border: #e5e7eb;
    --container: 1200px;
    --radius: 14px;
    --shadow-sm: 0 6px 20px rgba(2, 6, 23, .06);
    --shadow-md: 0 14px 40px rgba(2, 6, 23, .10);
    /* Logo gradient overrides (can be customized) */
    --logo-from: var(--brand-2);
    --logo-to: var(--brand);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid var(--border); box-shadow: none; }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { color: #0f172a; font-weight: 800; text-decoration: none; font-size: 24px; letter-spacing: .2px; font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(180deg, var(--logo-from), var(--logo-to)); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(16,185,129,.25); }
.logo-letter { color: #ffffff; font-weight: 900; font-size: 18px; line-height: 1; font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.logo-text { line-height: 1; }

.main-nav ul { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; }
.main-nav a { text-decoration: none; color: var(--text); padding: 10px 12px; border-radius: 8px; font-weight: 600; }
.main-nav a:hover { background: var(--bg-soft); }
.nav-toggle { display: none; background: #fff; border: 1px solid var(--border); padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow-sm); }

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border-radius: 12px; text-decoration: none; transition: transform .06s ease, box-shadow .2s ease, background .2s ease; font-weight: 700; letter-spacing: .2px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #ffffff; box-shadow: 0 10px 24px rgba(16,185,129,.22); border: 1px solid #10b981; }
.btn-primary:hover { background: linear-gradient(180deg, #1ec9b8, var(--brand)); box-shadow: 0 16px 36px rgba(16,185,129,.30); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #fff; box-shadow: var(--shadow-sm); }

/* Hero Welcome Section */
.hero-welcome {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-welcome .container {
    width: 100%;
    height: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: -.6px;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
}

.hero-text p {
    color: #e2e8f0;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.6;
}

.hero-services {
    margin: 0 0 32px;
}

.hero-services h2 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #ffffff;
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #e2e8f0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin: 0 0 32px;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #e2e8f0;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}



/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8fafc;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--muted);
}

.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    color: var(--border);
}

.breadcrumb-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--brand);
}

.breadcrumb-item a[aria-current="page"] {
    color: var(--text);
    font-weight: 600;
}

/* Sections */
section { padding: 80px 0; }
section h2 { 
    font-size: 36px; 
    margin: 0 0 16px; 
    letter-spacing: -.2px; 
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid { display: grid; gap: 24px; }

/* Featured Services */
.featured-services {
    background: var(--bg-soft);
}

.services-grid { 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: transform .15s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: white;
    box-shadow: 0 8px 24px rgba(16,185,129,.25);
}

.service-card h3 {
    margin: 0 0 16px;
    font-size: 20px;
    color: var(--text);
}

.service-card p {
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--brand-dark);
}

/* Before After Section */
.before-after-section {
    background: white;
}

.ba-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 900px;
    margin: 0 auto 40px;
}

.ba {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.ba:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.ba-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

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

/* New Sofas Section */
.new-sofas-section {
    background: var(--bg-soft);
}

.newsofa-grid { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.newsofa-card { 
    padding: 0; 
    overflow: hidden; 
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsofa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.newsofa-card img { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
    display: block; 
}

.newsofa-card figcaption { 
    padding: 16px; 
    font-weight: 600; 
    font-size: 16px; 
    color: var(--text);
    text-align: center;
    background: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--brand);
    border: none;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    background: var(--bg-soft);
    transition: background 0.3s ease;
    list-style: none;
}

.faq-item summary:hover {
    background: #e2e8f0;
}

.faq-item summary::before {
    content: '+';
    float: right;
    font-weight: bold;
    font-size: 20px;
    color: var(--brand);
}

.faq-item[open] summary::before {
    content: '−';
}

.faq-content {
    padding: 0 20px 20px;
}

.faq-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: var(--text);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-grid a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    z-index: 1000;
}

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

.wa-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 12px 0;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .hero-welcome {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-services h2 {
        font-size: 20px;
    }
    
    .services-list li {
        font-size: 14px;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-points {
        align-items: center;
    }
    
    .hero-image img {
        height: 300px;
        border-radius: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsofa-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* Mobile navigation */
    .main-nav ul { 
        display: none; 
        position: absolute; 
        right: 16px; 
        top: 64px; 
        background: #fff; 
        border: 1px solid var(--border); 
        border-radius: 10px; 
        padding: 8px; 
        width: min(280px, 90vw); 
        box-shadow: 0 16px 40px rgba(0,0,0,.08);
        flex-direction: column;
    }
    
    .main-nav ul.open { 
        display: flex; 
    }
    
    .nav-toggle { 
        display: inline-block; 
    }
    
    .main-nav ul li {
        margin: 4px 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    /* Mobile header adjustments */
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-mark {
        width: 28px;
        height: 28px;
    }
    
    .logo-letter {
        font-size: 16px;
    }
    
    /* Mobile container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Mobile section adjustments */
    section {
        padding: 40px 0;
    }
    
    /* Mobile card adjustments */
    .service-card,
    .ba-card,
    .newsofa-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    /* Mobile button adjustments */
    .btn {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-welcome {
        padding: 40px 0;
    }
    
    .hero-content {
        gap: 32px;
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .hero-services h2 {
        font-size: 18px;
    }
    
    .services-list li {
        font-size: 13px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    /* Extra small mobile adjustments */
    .container {
        padding: 0 16px;
    }
    
    .trust-points {
        font-size: 14px;
    }
    
    .trust-points li {
        gap: 6px;
    }
    
    /* Mobile touch improvements */
    .slider-btn:active,
    .dot:active {
        transform: scale(0.95);
    }
    
    /* Mobile text adjustments */
    h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-content {
        gap: 40px;
    }
    
    .services-grid { 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }
    
    .newsofa-grid { 
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    }
    
    .ba-grid { 
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }
    
    .footer-grid { 
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    }
}

@media (max-width: 640px) {
    .slide-content {
        gap: 32px;
        padding: 0 16px;
    }
    
    .slide-text h1 {
        font-size: 30px;
    }
    
    .slide-image img {
        height: 280px;
    }
    
    .slider-nav {
        bottom: 16px;
        gap: 12px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Mobile FAQ improvements */
    .faq-item summary {
        padding: 16px;
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 16px 16px;
        font-size: 15px;
    }
    
    /* Mobile before-after improvements */
    .ba-handle {
        width: 40px;
        height: 40px;
    }
    
    .ba-handle::before {
        width: 4px;
        height: 40px;
    }
    
    .ba-handle::after {
        width: 40px;
        height: 4px;
    }
    
    /* Mobile service card improvements */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    /* Mobile new sofa card improvements */
    .newsofa-card {
        margin-bottom: 20px;
    }
    
    .newsofa-card h3 {
        font-size: 20px;
    }
    
    .newsofa-card p {
        font-size: 15px;
    }
    
    /* Mobile CTA improvements */
    .cta-section {
        padding: 40px 20px;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-section p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page-hero p {
    font-size: 20px;
    margin: 0 0 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Services Overview */
.services-overview {
    background: var(--bg-soft);
    padding: 80px 0;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail:nth-child(even) {
    background: var(--bg-soft);
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 32px;
    margin: 0 0 20px;
    text-align: left;
}

.service-text p {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 24px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 16px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Service Packages Section */
.service-packages {
    background: var(--bg-soft);
    padding: 80px 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    border: 2px solid var(--brand);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header h3 {
    margin: 0 0 16px;
    font-size: 24px;
    color: var(--text);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 24px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 24px;
}

/* Process Section */
.process-section {
    background: white;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(16,185,129,.25);
}

.process-step h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--text);
}

.process-step p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-text h2 {
        text-align: center;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Before After Gallery */
.before-after-gallery {
    background: white;
    padding: 80px 0;
}

.before-after-gallery h2 {
    text-align: center;
    margin-bottom: 16px;
}

/* How to Use Section */
.how-to-use {
    background: var(--bg-soft);
    padding: 80px 0;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.usage-step {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.usage-step h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--text);
}

.usage-step p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Before-After Styles */
.ba {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #0d0d0d;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    cursor: col-resize;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ba img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba .after {
    clip-path: inset(0 0 0 calc(var(--pos, 50%)));
    transition: clip-path .06s linear;
}

.ba .ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos, 50%);
    width: 0;
    transform: translateX(-1px);
    z-index: 10;
}

.ba .ba-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.ba .ba-handle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(20,184,166,.35), inset 0 0 0 2px rgba(255,255,255,.7);
    cursor: col-resize;
}

.ba-caption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    z-index: 5;
}

/* Drag states */
.ba.is-dragging, .ba.is-dragging * { 
    cursor: col-resize !important; 
    user-select: none; 
}

.ba.is-dragging .ba-handle::after {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(20,184,166,.5), inset 0 0 0 2px rgba(255,255,255,.8);
}

/* Responsive Design for Before After */
@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .usage-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ba .ba-handle::after {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ba {
        aspect-ratio: 3 / 2;
    }
    
    .ba-caption {
        font-size: 12px;
        padding: 6px 10px;
        left: 8px;
        bottom: 8px;
    }
    
    .ba .ba-handle::after {
        width: 24px;
        height: 24px;
    }
}

/* Product Detail Pages */
.product-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

.product-text h1 {
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: -.6px;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

.product-subtitle {
    color: var(--muted);
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}

.feature-icon {
    font-size: 24px;
}

.product-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.product-details {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.detail-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.detail-card h3 {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 20px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.detail-card li:last-child {
    border-bottom: none;
}



.production-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 32px 16px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin: 0 0 16px;
    color: var(--text);
}

.process-step p {
    color: var(--muted);
    margin: 0;
}

.product-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-features {
    max-width: 600px;
    margin: 40px auto 0;
}

.service-features {
    max-width: 600px;
    margin: 40px auto 0;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--brand);
    text-align: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin: 0 0 16px;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
    margin: 0 0 24px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.feature-card li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 24px;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: bold;
}

.info-note {
    text-align: center;
    color: var(--muted);
    font-style: italic;
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-text h1 {
        font-size: 32px;
    }
    
    .product-text p {
        font-size: 16px;
    }
    
    .product-cta {
        justify-content: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    

    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .product-text h1 {
        font-size: 28px;
    }
    
    .product-image img {
        height: 300px;
    }
    
    .detail-card {
        padding: 24px;
    }
    
    .color-swatch {
        width: 60px;
        height: 60px;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .slider-btn,
    .dot,
    .nav-toggle,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile navigation improvements */
    .main-nav {
        position: relative;
    }
    
    .main-nav ul {
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .main-nav ul.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    /* Mobile slider improvements */
    .hero-slider {
        min-height: 500px;
    }
    
    .slide {
        padding: 40px 0;
    }
    
    /* Mobile image optimizations */
    .slide-image img {
        max-width: 100%;
        height: auto;
        min-height: 250px;
    }
    
    /* Mobile text readability */
    .slide-text h1 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .slide-text p {
        word-wrap: break-word;
        line-height: 1.6;
    }
    
    /* Mobile button improvements */
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-ctas {
        width: 100%;
    }
    
    /* Mobile trust points */
    .trust-points {
        justify-content: center;
        text-align: center;
    }
    
    .trust-points li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .hero-slider {
        min-height: 450px;
    }
    
    .slide {
        padding: 30px 0;
    }
    
    .slide-content {
        gap: 24px;
    }
    
    .slide-text h1 {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .slide-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .slide-image img {
        min-height: 200px;
        border-radius: 12px;
    }
    
    /* Mobile navigation adjustments */
    .nav-toggle {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .main-nav ul {
        right: 8px;
        top: 60px;
        width: min(260px, 85vw);
    }
    
    /* Mobile slider navigation */
    .slider-nav {
        bottom: 12px;
        gap: 8px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* Mobile container adjustments */
    .container {
        padding: 0 12px;
    }
    
    /* Mobile section spacing */
    section {
        padding: 30px 0;
    }
    
    /* Mobile card adjustments */
    .service-card,
    .ba-card,
    .newsofa-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    /* Mobile button adjustments */
    .btn {
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    /* Mobile text adjustments */
    h2 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile touch feedback */
    .slider-btn:active,
    .dot:active,
    .btn:active,
    .nav-toggle:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Mobile scroll improvements */
    .slider-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile focus improvements */
    .slider-btn:focus,
    .dot:focus,
    .btn:focus,
    .nav-toggle:focus {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        min-height: 400px;
    }
    
    .slide {
        padding: 30px 0;
    }
    
    .slide-content {
        gap: 30px;
    }
    
    .slide-text h1 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 15px;
    }
    
    .slide-image img {
        height: 200px;
    }
    
    .slider-nav {
        bottom: 16px;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .logo-mark {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .slider-track {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .slide-image img {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Reduce animations on mobile for better performance */
    .slide-content {
        transition: none;
    }
    
    .slider-btn:hover,
    .dot:hover {
        transform: none;
    }
    
    /* Optimize mobile scrolling */
    .slider-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile touch feedback */
    .slider-btn:active,
    .dot:active,
    .btn:active,
    .nav-toggle:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Mobile focus improvements */
    .slider-btn:focus,
    .dot:focus,
    .btn:focus,
    .nav-toggle:focus {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }
    
    /* Mobile text selection */
    .slide-text h1,
    .slide-text p {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Mobile-first design improvements */
@media (max-width: 768px) {
    /* Ensure proper viewport handling */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Mobile typography improvements */
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Mobile spacing improvements */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Mobile grid improvements */
    .services-grid,
    .ba-grid,
    .newsofa-grid {
        gap: 20px;
        margin: 0;
    }
    
    /* Mobile card improvements */
    .service-card,
    .ba-card,
    .newsofa-card {
        margin: 0 0 20px 0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Mobile button improvements */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        border-radius: 8px;
        border: 1px solid var(--border);
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile image optimizations */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Mobile list improvements */
    ul, ol {
        padding-left: 20px;
    }
    
    li {
        margin-bottom: 8px;
    }
    
    /* Mobile table improvements */
    table {
        font-size: 14px;
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    th, td {
        padding: 8px 12px;
        text-align: left;
        border-bottom: 1px solid var(--border);
    }
    
    /* Mobile footer improvements */
    .site-footer {
        padding: 40px 20px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Mobile WhatsApp button improvements */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 50%;
    }
    
    /* Mobile section improvements */
    section {
        padding: 40px 0;
        margin: 0;
    }
    
    section h2 {
        margin-bottom: 20px;
        text-align: center;
    }
    
    section p {
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Mobile hero improvements */
    .hero-slider {
        min-height: 500px;
        padding: 20px 0;
    }
    
    .slide {
        padding: 30px 0;
    }
    
    .slide-content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .slide-text {
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .slide-text p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .trust-points {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .trust-points li {
        font-size: 14px;
        justify-content: center;
    }
    
    /* Mobile slider navigation improvements */
    .slider-nav {
        bottom: 20px;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .dot.active {
        background: var(--brand);
        border-color: var(--brand);
        transform: scale(1.2);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-slider {
        min-height: 450px;
        padding: 16px 0;
    }
    
    .slide {
        padding: 24px 0;
    }
    
    .slide-content {
        gap: 24px;
        padding: 0 16px;
    }
    
    .slide-text h1 {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .slide-text p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .hero-ctas {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .slider-nav {
        bottom: 16px;
        gap: 12px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .trust-points li {
        font-size: 13px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .service-card,
    .ba-card,
    .newsofa-card {
        padding: 20px;
        margin-bottom: 16px;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        min-height: 400px;
    }
    
    .slide {
        padding: 20px 0;
    }
    
    .slide-content {
        gap: 20px;
    }
    
    .slide-text h1 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 15px;
    }
    
    .slide-image img {
        height: 200px;
    }
    
    .slider-nav {
        bottom: 16px;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .logo-mark {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .slider-track {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .slide-image img {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Reduce animations on mobile for better performance */
    .slide-content {
        transition: none;
    }
    
    .slider-btn:hover,
    .dot:hover {
        transform: none;
    }
    
    /* Optimize mobile scrolling */
    .slider-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile touch feedback */
    .slider-btn:active,
    .dot:active,
    .btn:active,
    .nav-toggle:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Mobile focus improvements */
    .slider-btn:focus,
    .dot:focus,
    .btn:focus,
    .nav-toggle:focus {
        outline: 2px solid var(--brand);
        outline-offset: 2px;
    }
    
    /* Mobile text selection */
    .slide-text h1,
    .slide-text p {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}


