:root {
    --wood-dark: #1A0F08;
    --wood-medium: #4A3520;
    --wood-light: #7A6048;
    --cream: #EFE6D0;
    --warm-white: #F9F4E8;
    --accent-gold: #B8922A;
    --charcoal: #1A1A1A;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--wood-dark);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(92, 74, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(253, 251, 247, 0.98);
    box-shadow: 0 4px 20px rgba(44, 36, 22, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--wood-dark);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--wood-medium);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--wood-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--wood-dark);
    color: var(--warm-white);
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-nav:hover {
    background: var(--wood-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 36, 22, 0.2);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.lang-divider {
    color: var(--wood-light);
    font-size: 0.75rem;
    line-height: 1;
    user-select: none;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--wood-light);
    padding: 0.25rem 0.1rem;
    transition: color 0.25s ease;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--wood-dark);
}

.lang-btn.active {
    color: var(--wood-dark);
    border-bottom: 1px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .lang-toggle {
        display: none;
    }
}

/* Mobile language selector (injected inside hamburger menu) */
.mobile-lang-item {
    padding: 1rem 0 0.5rem;
}

.mobile-lang-switch {
    display: inline-flex;
    border: 1px solid rgba(92, 74, 50, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.mobile-lang-switch .lang-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-right: 1px solid rgba(92, 74, 50, 0.15);
    border-bottom: none;
}

.mobile-lang-switch .lang-btn:last-child {
    border-right: none;
}

.mobile-lang-switch .lang-btn.active {
    background: var(--wood-dark);
    color: var(--warm-white);
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

/* Video Hero */
.hero--video {
    background: #0B1628;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

#heroVideoA {
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 5, 0.52);
    z-index: 1;
}

.hero--video .hero-background {
    display: none;
}

.hero-content--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    max-width: 860px;
}

.hero--video .hero-text h1 {
    color: var(--warm-white);
}

.hero--video .hero-text .subtitle {
    color: rgba(245, 241, 232, 0.82);
}

.hero--video .hero-ctas {
    justify-content: center;
}

.hero--video .cta-primary {
    border-color: var(--warm-white);
    background: var(--warm-white);
    color: var(--wood-dark);
}

.hero--video .cta-primary:hover {
    background: transparent;
    color: var(--warm-white);
}

.hero--video .cta-secondary {
    border-color: rgba(245, 241, 232, 0.6);
    color: var(--warm-white);
}

.hero--video .cta-secondary:hover {
    background: rgba(245, 241, 232, 0.15);
    color: var(--warm-white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        repeating-linear-gradient(90deg, var(--wood-medium) 0px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, var(--wood-medium) 0px, transparent 1px, transparent 80px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 5.5rem;
    color: var(--wood-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    color: var(--wood-medium);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--wood-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-primary {
    background: var(--wood-dark);
    color: var(--warm-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--wood-dark);
    display: inline-block;
}

.cta-primary:hover {
    background: transparent;
    color: var(--wood-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 36, 22, 0.15);
}

.cta-secondary {
    background: transparent;
    color: var(--wood-medium);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--wood-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--wood-medium);
    color: var(--warm-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(92, 74, 50, 0.15);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1.2s ease-out 0.3s backwards;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.2);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: -1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

/* Page Header (for internal pages) */
.page-header {
    padding: 12rem 3rem 6rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before { display: none; }

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: 
        repeating-linear-gradient(90deg, var(--wood-medium) 0px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, var(--wood-medium) 0px, transparent 1px, transparent 80px);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4.5rem;
    color: var(--wood-dark);
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--wood-medium);
    line-height: 1.8;
}

/* Value Props */
.value-props {
    padding: 8rem 3rem;
    background: var(--warm-white);
}

.value-props-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--wood-medium);
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: transform 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--wood-medium);
    border: 2px solid var(--accent-gold);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--wood-dark);
}

.value-card p {
    color: var(--wood-light);
    line-height: 1.8;
}

/* Value card background image overlay */
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 230, 0.88);
    z-index: 0;
}

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

/* index.html - Why Choose Reywood */
.value-made-for-you  { background-image: url('Tables/Meja makan merbau Ancol Jimbaran.JPG'); }
.value-solid-wood    { background-image: url('Tables/top table tanpa sambungan.JPG'); }
.value-done-right    { background-image: url('Stairs/TRAP TANGGA KOMPAS BINTARO (4).JPG'); }

/* about.html - What We Care About */
.value-good-materials { background-image: url('Tables/DSCF0595.JPG'); }
.value-listening      { background-image: url('Kisi2/KISI KISI BENGKIRAI PIK (2).JPG'); }
.value-doing-right    { background-image: url('Stairs/Tangga merbau melayang puri indah.JPG'); }

/* Material Cards - wood background images */
.material-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    background-size: cover;
    background-position: center;
}

.material-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 230, 0.88);
    z-index: 0;
}

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

.material-ulin      { background-image: url('Flooring/FLOORING ULIN ROXI.JPG'); }
.material-jati      { background-image: url('Flooring/flooring jati puri indah 8.JPG'); }
.material-merbau    { background-image: url('Flooring/Flooring merbau kelapa gading mediterania.JPG'); }
.material-kamper    { background-image: url('kamper-wood.jpg'); }
.material-sungkai   { background-image: url('Flooring/Flooring sungkai vila kebun jeruk4.JPG'); }
.material-bengkirai { background-image: url('Flooring/flooring bengkirai senopati (5).JPG'); }

/* Visit Us / Showroom Page */
.visit-hero {
    padding: 10rem 3rem 6rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.visit-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.visit-hero h1 {
    font-size: 3.5rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.visit-subtitle {
    font-size: 1.3rem;
    color: var(--wood-medium);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visit-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.info-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(44, 36, 22, 0.08);
    border: 1px solid rgba(92, 74, 50, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--wood-dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--wood-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-card a {
    color: var(--wood-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
}

.info-card a:hover {
    color: var(--accent-gold);
}

/* Showroom Gallery */
.showroom-gallery {
    padding: 6rem 3rem;
    background: var(--warm-white);
}

.showroom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showroom-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.showroom-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showroom-item:nth-child(even) {
    direction: rtl;
}

.showroom-item:nth-child(even) > * {
    direction: ltr;
}

.showroom-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.showroom-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 72px rgba(44, 36, 22, 0.32);
}

.showroom-img-wrap {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 16px 56px rgba(44, 36, 22, 0.22);
}

.showroom-description h3 {
    font-size: 1.8rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.showroom-description p {
    color: var(--wood-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 6rem 3rem;
    background: var(--cream);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.12);
    margin: 2rem 0;
}

.map-wrapper iframe {
    display: block;
    border-radius: 8px;
}

.map-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(92, 74, 50, 0.1);
}

.detail-item strong {
    display: block;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.detail-item p {
    color: var(--wood-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--wood-dark);
    color: var(--wood-dark);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--wood-dark);
    color: var(--warm-white);
}

/* Featured Projects */
.featured-projects {
    padding: 8rem 3rem;
    background: var(--warm-white);
}


.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.25);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-card::after {
    content: 'Click to View';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: transparent;
    color: #fdfbf7;
    border: 2px solid #fdfbf7;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.95), transparent);
    padding: 3rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    color: var(--warm-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: rgba(253, 251, 247, 0.8);
    font-size: 1rem;
}

/* Process Section */
.process {
    padding: 8rem 3rem;
    background: var(--warm-white);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), transparent, var(--accent-gold));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--wood-dark);
    color: var(--warm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(44, 36, 22, 0.2);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--wood-dark);
}

.process-step p {
    color: var(--wood-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Process step background images */
.process-step {
    overflow: hidden;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    background-size: cover;
    background-position: center;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 230, 0.88);
    z-index: 0;
}

.process-step > * {
    position: relative;
    z-index: 1;
}

.process-step-01 { background-image: url('PROSES/_MG_3004.JPG'); }
.process-step-02 { background-image: url('PROSES/_MG_3009.JPG'); }
.process-step-03 { background-image: url('PROSES/_MG_2986.JPG'); }
.process-step-04 { background-image: url('PROSES/IMG_3803.JPG'); }

/* Testimonials */
.testimonials {
    padding: 8rem 3rem;
    background: var(--cream);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 3rem;
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(44, 36, 22, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--wood-medium);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--warm-white);
    font-weight: 600;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--wood-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--wood-light);
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    background: var(--wood-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.05) 0px, transparent 1px, transparent 100px),
        repeating-linear-gradient(0deg, rgba(201, 169, 97, 0.05) 0px, transparent 1px, transparent 100px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 4rem;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    background: var(--accent-gold);
    color: var(--wood-dark);
    padding: 1.5rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: var(--warm-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

/* Contact Form */
.contact-section {
    padding: 6rem 3rem 8rem;
    background: var(--warm-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--wood-dark);
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--wood-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--wood-medium);
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.3rem;
    color: var(--wood-dark);
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--wood-light);
    margin: 0;
}

.contact-item-content a {
    color: var(--wood-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--accent-gold);
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 4rem;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--wood-dark);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(92, 74, 50, 0.2);
    background: var(--warm-white);
    color: var(--wood-dark);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.file-upload {
    position: relative;
    display: block;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px dashed rgba(92, 74, 50, 0.3);
    background: var(--warm-white);
    color: var(--wood-medium);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.file-upload:hover .file-upload-label {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 97, 0.05);
}

.file-name {
    margin-top: 0.75rem;
    color: var(--wood-medium);
    font-size: 0.9rem;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: var(--wood-dark);
    color: var(--warm-white);
    padding: 1.25rem 2rem;
    border: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.submit-btn:hover {
    background: var(--wood-medium);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 36, 22, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    color: #2E7D32;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #F44336;
    color: #C62828;
}

/* Gallery */
.gallery-section {
    padding: 6rem 3rem 8rem;
    background: var(--warm-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--wood-medium);
    color: var(--wood-medium);
    padding: 0.75rem 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--wood-dark);
    border-color: var(--wood-dark);
    color: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(44, 36, 22, 0.15);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 36, 22, 0.25);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.9), transparent);
    padding: 2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--warm-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(253, 251, 247, 0.8);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: scaleIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--warm-white);
    color: var(--wood-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--warm-white);
    color: var(--wood-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--accent-gold);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Blog */
.blog-section {
    padding: 6rem 3rem 8rem;
    background: var(--warm-white);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 36, 22, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(44, 36, 22, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--wood-light);
}

.blog-card h3 {
    font-size: 1.8rem;
    color: var(--wood-dark);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--wood-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--wood-dark);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: rgba(253, 251, 247, 0.7);
    padding: 5rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--warm-white);
    margin-bottom: 1rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--warm-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(253, 251, 247, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 13px 9px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wood-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .visit-info-cards {
        grid-template-columns: 1fr;
    }
    
    .showroom-item {
        grid-template-columns: 1fr;
    }
    
    .showroom-item:nth-child(even) {
        direction: ltr;
    }
    
    .map-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    /* Show hamburger, hide desktop nav items */
    .hamburger {
        display: flex;
    }

    .cta-nav {
        display: none;
    }

    /* Nav links hidden by default on mobile; shown when open class added */
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.99);
        border-top: 1px solid rgba(92, 74, 50, 0.1);
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 10px 30px rgba(44, 36, 22, 0.1);
        z-index: 998;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(92, 74, 50, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-content {
        padding: 6rem 1.5rem 3rem;
    }

    /* Hero CTA buttons: stack vertically on small screens */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    /* Section headings */
    .section-header h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    /* Reduce horizontal padding on all major sections */
    .value-props,
    .featured-projects,
    .process,
    .testimonials,
    .cta-section,
    .contact-section,
    .gallery-section,
    .blog-section,
    .showroom-gallery,
    .map-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-header {
        padding: 9rem 1.5rem 4rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Gallery filters */
    .gallery-filters {
        gap: 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    /* Gallery grid: single column on mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Make project/gallery overlays always visible on touch screens */
    .project-overlay {
        transform: translateY(0);
    }

    .gallery-overlay {
        transform: translateY(0);
        opacity: 1;
    }

    /* Hide "Click to View" label on touch (hover won't trigger) */
    .project-card::after {
        display: none;
    }

    /* Lightbox nav */
    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    /* Visit Us page */
    .visit-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .visit-hero h1 {
        font-size: 2.5rem;
    }

    .visit-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showroom-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .showroom-item:nth-child(even) {
        direction: ltr;
    }

    .showroom-item img {
        height: 300px;
    }

    .map-details {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Hero: static image fallback — video unreliable on mobile */
    .hero-video {
        display: none;
    }

    .hero--video {
        background: url('JGC/IMG_20210622_122501.jpg');
        background-size: cover;
        background-position: center;
    }

    /* Footer: tighter side padding + prevent logo overflow */
    footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .footer-brand img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ===========================================
   NEW COMPONENTS: Trust Indicators & FAQ
   =========================================== */

/* Trust Indicators */
.trust-indicators {
    background: var(--cream);
    padding: 4rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-badge {
    position: relative;
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.badge-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline;
    margin-left: 0.25rem;
}

.badge-label {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--wood-medium);
}

.stars {
    color: var(--accent-gold);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(92, 74, 50, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--wood-dark);
    transition: background 0.3s ease;
    font-family: 'Lato', sans-serif;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cream);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--wood-medium);
    line-height: 1.7;
}

/* Responsive: Trust Indicators */
@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .badge-suffix {
        font-size: 1.5rem;
    }

    .badge-label {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 1.25rem;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease;
}

.whatsapp-popup.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-content h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.whatsapp-subtitle {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.whatsapp-close:hover {
    opacity: 0.8;
}

.whatsapp-body {
    padding: 1.5rem 1.25rem;
}

.whatsapp-body > p {
    margin: 0 0 1rem 0;
    color: var(--wood-dark);
    font-size: 0.95rem;
}

.whatsapp-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.whatsapp-quick-reply {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F0F0F0;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--wood-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.whatsapp-quick-reply:hover {
    background: #E8E8E8;
    transform: translateX(4px);
}

.reply-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 54px;
        height: 54px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-popup {
        width: calc(100vw - 30px);
        max-width: 320px;
        right: 0;
    }
}

/* Extra-small screens (phones ≤ 480px) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .visit-hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 5rem 1.25rem 2.5rem;
    }

    .page-header {
        padding: 8rem 1.25rem 3rem;
    }
}
