/* ===================================================
   PROFESSIONAL FURNITURE WEBSITE - STYLE.CSS
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #8B5E3C;
    --primary-dark: #6B3F2A;
    --primary-light: #A67B5B;
    --secondary: #2C2C2C;
    --accent: #C9A96E;
    --accent-light: #DFC08A;
    --bg-dark: #1A1A1A;
    --bg-light: #F8F6F3;
    --bg-gray: #F0EDE8;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #6B6B6B;
    --text-muted: #999999;
    --border: #E0D8D0;
    --shadow: 0 5px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-dark: 0 10px 40px rgba(0,0,0,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    margin-bottom: 15px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin: 0 15px;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 94, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--text-dark);
}

.navbar .logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-gray);
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after {
    width: 100%;
}

.navbar .nav-links a:hover {
    color: var(--text-light);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--text-dark);
}

.navbar .nav-cta {
    padding: 10px 28px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.navbar .nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.4) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 25px;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.hero-stat .stat-divider {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto;
}

/* ---------- CATEGORIES SECTION ---------- */
.categories {
    padding: 100px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 350px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
}

.category-card .category-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-card .category-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.category-card .category-overlay .category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.category-card .category-overlay .category-link i {
    transition: var(--transition);
}

.category-card:hover .category-overlay .category-link i {
    transform: translateX(5px);
}

/* ---------- BEDROOM SECTION ---------- */
.bedroom {
    padding: 100px 0;
    background: #fff;
}

.bedroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bedroom-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.bedroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bedroom-image .image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.bedroom-content .feature-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 110, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bedroom-content h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.bedroom-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.bedroom-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.bedroom-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.bedroom-features li i {
    color: var(--accent);
    font-size: 16px;
}

/* ---------- PRODUCTS GRID ---------- */
.products {
    padding: 100px 0;
    background: var(--bg-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card .product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card .product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    color: var(--text-gray);
}

.product-card .product-wishlist:hover {
    background: var(--primary);
    color: #fff;
}

.product-card .product-info {
    padding: 25px;
}

.product-card .product-info .product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card .product-info h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card .product-info .product-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-card .product-info .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-card .product-info .product-price .price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-card .product-info .product-price .price-original {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .product-info .btn {
    width: 100%;
}

/* ---------- BACKDROP TV SECTION ---------- */
.backdrop {
    padding: 100px 0;
    background: #fff;
}

.backdrop-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.backdrop-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
}

.backdrop-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.backdrop-visual .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 30px;
    color: var(--primary);
}

.backdrop-visual .play-btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.backdrop-content h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.backdrop-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.backdrop-content .backdrop-styles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.backdrop-content .backdrop-styles li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.backdrop-content .backdrop-styles li i {
    color: var(--accent);
    font-size: 18px;
}

/* ---------- KITCHEN SET SECTION ---------- */
.kitchen {
    padding: 100px 0;
    background: var(--bg-gray);
}

.kitchen-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.kitchen-content h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.kitchen-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.kitchen-content .kitchen-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.kitchen-content .kitchen-specs li {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.kitchen-content .kitchen-specs li strong {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.kitchen-content .kitchen-specs li span {
    font-size: 13px;
    color: var(--text-gray);
}

.kitchen-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.kitchen-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kitchen-visual .visual-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.kitchen-visual .visual-badge strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    font-family: var(--font-secondary);
}

.kitchen-visual .visual-badge span {
    font-size: 12px;
    color: var(--text-gray);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-card .testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .testimonial-author .author-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-card .testimonial-author .author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920') center/cover;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-about .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-about .social-links {
    display: flex;
    gap: 12px;
}

.footer-about .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-about .social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(139, 94, 60, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- LOADING SCREEN ---------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen .loader {
    text-align: center;
}

.loading-screen .loader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-screen .loader p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- MAPS SECTION ---------- */
.maps-section {
    padding: 100px 0 0;
    background: #fff;
}

.maps-container {
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.maps-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.maps-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 80px;
}

.maps-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.maps-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.maps-info-item i {
    font-size: 28px;
    color: var(--accent);
    margin-top: 2px;
}

.maps-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.maps-info-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .maps-info {
        grid-template-columns: 1fr;
    }
    
    .maps-container iframe {
        height: 300px;
    }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: var(--transition);
        z-index: 1000;
    }

    .navbar .nav-links.active {
        right: 0;
    }

    .navbar .nav-links a {
        color: rgba(255,255,255,0.8);
        font-size: 16px;
    }

    .navbar .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: 0 auto 35px;
    }

    .hero-content .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 25px;
    }

    .hero-stat .stat-number {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .bedroom-grid {
        grid-template-columns: 1fr;
    }

    .bedroom-image {
        height: 350px;
    }

    .bedroom-content h2 {
        font-size: 28px;
    }

    .backdrop-showcase {
        grid-template-columns: 1fr;
    }

    .backdrop-visual {
        order: -1;
        height: 300px;
    }

    .backdrop-content h2 {
        font-size: 28px;
    }

    .kitchen-showcase {
        grid-template-columns: 1fr;
    }

    .kitchen-visual {
        height: 350px;
    }

    .kitchen-content h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bedroom-content .bedroom-features {
        grid-template-columns: 1fr;
    }

    .backdrop-content .backdrop-styles {
        grid-template-columns: 1fr;
    }

    .kitchen-content .kitchen-specs {
        grid-template-columns: 1fr;
    }
}
