/* =========================================================
   TIMBER LINE - Main Styles
   ========================================================= */

:root {
    /* Wood Color Palette */
    --wood-darkest:    #1a0e05;
    --wood-dark:       #2c1810;
    --wood-medium:     #5c3a21;
    --wood-warm:       #8B6914;
    --wood-light:      #D4A847;
    --wood-lightest:   #E8D5A3;
    --wood-cream:      #F5EDD6;
    --wood-white:      #FAF6EB;

    /* Neutrals - Warm Wood Tones */
    --black:           #1a0e05;
    --dark-bg:         #2c1810;
    --dark-surface:    #3a2215;
    --gray-900:        #4a3020;
    --gray-800:        #5c3a21;
    --gray-600:        #8a7260;
    --gray-400:        #a89480;
    --gray-200:        #d4c4b0;
    --white:           #ffffff;

    /* Accent */
    --success:         #4CAF50;
    --whatsapp:        #25D366;
    --error:           #ef4444;

    /* Typography */
    --font-display:    'Bebas Neue', 'Arial Black', sans-serif;
    --font-slab:       'Bahnschrift SemiBold', 'Bahnschrift', 'DIN Alternate', 'Segoe UI', sans-serif;
    --font-body:       'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:       'Barlow Condensed', 'Arial Narrow', sans-serif;

    /* Spacing */
    --section-pad:     120px;
    --container-max:   1280px;

    /* Transitions */
    --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:     cubic-bezier(0.45, 0, 0.15, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--wood-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

ul {
    list-style: none;
}

::selection {
    background: var(--wood-warm);
    color: var(--white);
}

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

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

/* =========================================================
   LOADER
   ========================================================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-timber-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.loader-ring {
    width: 100%;
    height: 100%;
    animation: loaderSpin 1.5s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.loader-ring circle {
    animation: loaderDash 1.5s ease-in-out infinite;
}

@keyframes loaderDash {
    0%   { stroke-dashoffset: 283; }
    50%  { stroke-dashoffset: 70; }
    100% { stroke-dashoffset: 283; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--wood-light);
    opacity: 0;
    animation: loaderTextIn 1s 0.3s forwards;
}

@keyframes loaderTextIn {
    to { opacity: 1; }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

#main-nav.scrolled {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(26, 14, 5, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--white);
}

.nav-logo-icon {
    color: var(--wood-light);
    font-size: 28px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-out);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wood-light);
    transition: width 0.4s var(--ease-out);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #1a0e05 0%, #2c1810 40%, #3a2215 70%, #1a0e05 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(26,14,5,0.1) 0%, rgba(26,14,5,0.35) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-subtitle-top {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--wood-light);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-15px);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 0;
    opacity: 0;
    transform: scale(0.92);
}

.hero-title-line {
    display: block;
    font-family: var(--font-slab);
    font-size: clamp(64px, 13vw, 160px);
    font-weight: 600;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--wood-lightest) 0%, var(--wood-light) 35%, var(--wood-warm) 65%, var(--wood-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 30px rgba(139, 105, 20, 0.4));
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wood-warm), var(--wood-light));
    margin: 28px auto 24px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(15px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
    animation: scrollBounce 2s infinite;
    color: var(--wood-light);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wood-warm) 0%, var(--wood-light) 100%);
    color: var(--wood-darkest);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--wood-light);
    color: var(--wood-light);
    transform: translateY(-2px);
}

.btn-product {
    background: transparent;
    color: var(--wood-light);
    border: 1.5px solid var(--wood-warm);
    padding: 12px 28px;
    font-size: 13px;
}

.btn-product:hover {
    background: var(--wood-warm);
    color: var(--wood-darkest);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-submit {
    min-width: 220px;
    position: relative;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--wood-darkest);
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--wood-warm);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1.5px;
    background: var(--wood-warm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: inherit;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

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

.about-content .section-title {
    color: var(--wood-dark);
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-slab);
    font-size: 48px;
    font-weight: 600;
    color: var(--wood-warm);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-number::after {
    content: '+';
    font-size: 28px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-600);
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    z-index: 2;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    z-index: 1;
}

/* Wood Visual Textures */
.wood-visual {
    width: 100%;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.wood-visual::before {
    content: '';
    position: absolute;
    inset: 0;
}

.wood-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent, transparent 28px,
            rgba(0, 0, 0, 0.04) 28px, rgba(0, 0, 0, 0.04) 30px
        );
}

/* -- Warehouse: stacked planks look -- */
.wood-visual--warehouse::before {
    background:
        repeating-linear-gradient(0deg,
            #5c3a21 0px, #5c3a21 18px,
            #4a3020 18px, #4a3020 20px,
            #7a4f2b 20px, #7a4f2b 38px,
            #6b4225 38px, #6b4225 40px
        );
}

/* -- Wood grain close-up -- */
.wood-visual--grain::before {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212,168,71,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #6b4225 0%, #8a5c35 25%, #6b4225 50%, #5c3a21 75%, #7a4f2b 100%);
}
.wood-visual--grain::after {
    background:
        repeating-linear-gradient(170deg,
            transparent, transparent 6px,
            rgba(0,0,0,0.06) 6px, rgba(0,0,0,0.06) 7px
        );
}

/* -- Timber Logs: circular end grain -- */
.wood-visual--logs::before,
.wood-visual--raw-logs::before {
    background:
        radial-gradient(circle at 25% 40%, #3d2814 10%, #5c3a21 20%, #7a4f2b 30%, #5c3a21 45%, transparent 50%),
        radial-gradient(circle at 70% 55%, #4a3020 8%, #6b4225 18%, #8a5c35 28%, #6b4225 40%, transparent 45%),
        radial-gradient(circle at 50% 80%, #3d2814 6%, #5c3a21 14%, #7a4f2b 24%, transparent 30%),
        linear-gradient(135deg, #3d2814 0%, #5c3a21 50%, #4a3020 100%);
}

/* -- Mixed Hardwood: layered planks -- */
.wood-visual--hardwood::before {
    background:
        linear-gradient(180deg,
            #8a5c35 0%, #7a4f2b 8%,
            #5c3a21 8.5%, #5c3a21 16%,
            #9a6b40 16.5%, #8a5c35 24%,
            #6b4225 24.5%, #6b4225 32%,
            #7a4f2b 32.5%, #6b4225 40%,
            #8a5c35 40.5%, #7a4f2b 48%,
            #5c3a21 48.5%, #4a3020 56%,
            #9a6b40 56.5%, #8a5c35 64%,
            #6b4225 64.5%, #5c3a21 72%,
            #7a4f2b 72.5%, #6b4225 80%,
            #8a5c35 80.5%, #7a4f2b 88%,
            #5c3a21 88.5%, #4a3020 100%
        );
}

/* -- Pinewood: light warm grain -- */
.wood-visual--pine::before {
    background:
        repeating-linear-gradient(95deg,
            transparent, transparent 14px,
            rgba(0,0,0,0.03) 14px, rgba(0,0,0,0.03) 16px
        ),
        linear-gradient(165deg, #c4a060 0%, #b89050 25%, #d4b070 50%, #c4a060 75%, #b89050 100%);
}

/* -- Red Meranti: rich reddish -- */
.wood-visual--meranti::before {
    background:
        repeating-linear-gradient(88deg,
            transparent, transparent 22px,
            rgba(0,0,0,0.05) 22px, rgba(0,0,0,0.05) 24px
        ),
        linear-gradient(150deg, #6b2c1a 0%, #8b3c24 25%, #7a3020 50%, #6b2c1a 75%, #5a2418 100%);
}

/* -- Balau: dark heavy duty -- */
.wood-visual--balau::before {
    background:
        repeating-linear-gradient(92deg,
            transparent, transparent 18px,
            rgba(0,0,0,0.06) 18px, rgba(0,0,0,0.06) 20px
        ),
        linear-gradient(140deg, #3d2010 0%, #4a2814 25%, #3d2010 50%, #321a0c 75%, #4a2814 100%);
}

/* -- Selection: grading marks -- */
.wood-visual--selection::before {
    background:
        linear-gradient(90deg, transparent 48%, rgba(212,168,71,0.2) 48%, rgba(212,168,71,0.2) 52%, transparent 52%),
        linear-gradient(135deg, #5c3a21 0%, #7a4f2b 30%, #8a5c35 50%, #6b4225 70%, #5c3a21 100%);
}

/* -- Sawing: cut marks pattern -- */
.wood-visual--sawing::before {
    background:
        repeating-linear-gradient(0deg,
            transparent, transparent 3px,
            rgba(212,168,71,0.08) 3px, rgba(212,168,71,0.08) 4px
        ),
        linear-gradient(90deg, #5c3a21 0%, #5c3a21 48%, rgba(212,168,71,0.3) 49%, rgba(212,168,71,0.3) 51%, #6b4225 52%, #6b4225 100%);
}

/* -- Cutting: precision lines -- */
.wood-visual--cutting::before {
    background:
        repeating-linear-gradient(90deg,
            #5c3a21 0px, #5c3a21 30px,
            #4a3020 30px, #4a3020 32px,
            #7a4f2b 32px, #7a4f2b 62px,
            #4a3020 62px, #4a3020 64px
        );
}

/* -- Finished product: polished look -- */
.wood-visual--finished::before {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.03) 100%),
        linear-gradient(160deg, #8a5c35 0%, #9a6b40 20%, #b8884d 40%, #9a6b40 60%, #8a5c35 80%, #7a4f2b 100%);
}

/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.product-card {
    perspective: 1000px;
}

.product-card-inner {
    background: var(--dark-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 71, 0.12);
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
    transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(26, 14, 5, 0.6);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image .wood-visual {
    min-height: 240px;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--wood-warm);
    color: var(--wood-darkest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    z-index: 2;
}

.product-info {
    padding: 28px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--white);
}

.product-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--gray-200);
}

.spec strong {
    color: var(--wood-light);
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gray-200);
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--wood-warm), var(--wood-light));
    transition: height 0.3s;
}

.process-step {
    position: relative;
    padding-left: 80px;
    padding-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--wood-white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s var(--ease-out);
}

.process-step.active .process-marker {
    background: var(--wood-warm);
    border-color: var(--wood-warm);
    box-shadow: 0 0 0 6px rgba(139, 105, 20, 0.15);
}

.process-number {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    transition: color 0.5s;
}

.process-step.active .process-number {
    color: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.process-visual {
    border-radius: 8px;
    overflow: hidden;
}

.process-visual .wood-visual {
    min-height: 180px;
    border-radius: 8px;
}

.process-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 12px;
}

.process-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.quote-info .section-title {
    color: var(--white);
}

.quote-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 36px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-200);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 105, 20, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wood-light);
    flex-shrink: 0;
}

.quote-form-wrap {
    background: var(--dark-surface);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(212, 168, 71, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.form-group .req {
    color: var(--wood-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wood-warm);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--white);
}

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

.form-error {
    display: block;
    font-size: 13px;
    color: var(--error);
    margin-top: 4px;
    min-height: 20px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--error);
}

.form-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 105, 20, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wood-warm);
    flex-shrink: 0;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp);
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wood-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(139, 105, 20, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wood-warm);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--wood-warm);
    color: var(--white);
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
#footer {
    background: var(--dark-bg);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(212, 168, 71, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--gray-600);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--wood-light);
    padding-left: 4px;
}

.footer-col ul li:not(:has(a)) {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--gray-600);
}

.footer-legal a:hover {
    color: var(--wood-light);
}

.footer-copy {
    font-size: 14px;
    color: var(--gray-600);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
