/* Masum Furniture House - Stylesheet */
:root {
    --primary: #c9a962;
    --primary-dark: #b8984f;
    --secondary: #1a1a1a;
    --secondary-light: #2a2a2a;
    --background: #fafafa;
    --card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666666;
    --text-light: #999999;
    --border: #e5e5e5;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-elegant: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(201,169,98,0.3);
    --gradient-dark: linear-gradient(to right, rgba(26,26,26,0.95), rgba(26,26,26,0.7));
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e8d5a3 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--secondary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
}

.logo-text {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-call {
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-call:hover {
    opacity: 0.9;
}

.btn-cart,
.btn-menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.btn-cart:hover,
.btn-menu:hover {
    background: rgba(255,255,255,0.15);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 60px 0;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,98,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid rgba(201,169,98,0.3);
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
    opacity: 0.85;
}

.hero-description {
    font-size: 15px;
    margin-top: 12px;
    opacity: 0.75;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* Section Styles */
.section-header {
    max-width: 600px;
    margin-bottom: 48px;
}

.section-header.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: none;
    flex-wrap: wrap;
    gap: 20px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

.section-desc {
    margin-top: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.view-all:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

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

.feature-card {
    background: var(--card);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(201,169,98,0.4);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,98,0.15);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Collections */
.collections {
    background: var(--secondary);
    color: white;
    padding: 80px 0;
}

.collections .section-title {
    color: white;
}

.collections-grid {
    display: grid;
    gap: 16px;
}

.collection-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.collection-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201,169,98,0.4);
}

.collection-card:hover .arrow {
    opacity: 1;
}

.collection-icon {
    font-size: 28px;
    line-height: 1;
}

.collection-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.collection-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.collection-card .arrow {
    margin-left: auto;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

/* Products */
.products {
    padding: 80px 0;
}

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

.product-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-elegant);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-price span {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-add-cart:hover {
    opacity: 0.9;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.9;
}

/* Custom CTA */
.custom-cta {
    padding: 0 0 80px;
}

.custom-cta-box {
    background: var(--gradient-gold);
    border-radius: 24px;
    padding: 40px;
    color: var(--secondary);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-elegant);
}

.custom-cta-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-cta-content p {
    opacity: 0.8;
    max-width: 400px;
}

.custom-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(26,26,26,0.2);
    transition: all 0.3s;
}

.btn-secondary-light:hover {
    background: rgba(255,255,255,0.4);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--background);
}

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

.review-card {
    background: var(--card);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.reviewer {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--secondary);
    color: white;
}

.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 18px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.main-footer {
    background: var(--secondary);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    gap: 40px;
    padding: 60px 0;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact li {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elegant);
    z-index: 100;
    transition: transform 0.3s;
    text-decoration: none;
}

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

/* Responsive */
@media (min-width: 640px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
    
    .btn-menu {
        display: none;
    }
    
    .btn-call {
        display: inline-flex;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .custom-cta-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 56px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }