/* ============================================
   CUSTOM WOOD FINISHING - PROFESSIONAL CSS
   ============================================ */

/* ===== INTERACTIVE BACKGROUND ===== */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

html {
    background: transparent;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--accent); color: #fff;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.88rem; z-index: 10000;
    transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg); display: flex;
    align-items: center; justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-spinner {
    width: 40px; height: 40px; margin: 0 auto 20px;
    border: 3px solid var(--border); border-top-color: var(--accent);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-text {
    font-family: var(--display); font-weight: 700;
    font-size: 1.1rem; color: var(--text); letter-spacing: -0.3px;
}

/* ===== VARIABLES ===== */
:root {
    --bg: #FAFAF8;
    --bg-alt: #F4F2EE;
    --bg-card: #FFFFFF;
    --text: #0F0F0F;
    --text-sec: #4A4A4A;
    --text-dim: #888888;
    --accent: #C47A3A;
    --accent-hover: #B06A2E;
    --accent-bg: #FDF3EB;
    --border: #E5E1DB;
    --border-light: #EEECE8;
    --black: #0A0A0A;
    --white: #FAFAF8;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Space Grotesk', 'Inter', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

body {
    font-family: var(--font);
    background: transparent;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 20px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(250, 250, 248, 0.95);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--display);
    font-weight: 700; font-size: 0.95rem;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex; list-style: none;
    gap: 28px; align-items: center;
}
.nav-links a {
    font-size: 0.8rem; font-weight: 500;
    color: var(--text-sec);
    transition: color 0.3s var(--ease);
    position: relative;
    letter-spacing: 0.02em;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--accent); border-radius: 1px;
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 10px 24px !important;
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,122,58,0.3); }
.nav-phone {
    display: inline-flex !important; align-items: center; gap: 6px;
    padding: 8px 16px !important; border-radius: 100px !important;
    background: rgba(196,122,58,0.08) !important;
    color: var(--accent) !important; font-weight: 600 !important;
    font-size: 0.82rem !important;
    transition: all 0.3s var(--ease) !important;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { background: var(--accent) !important; color: #fff !important; }
.nav-phone svg { flex-shrink: 0; }
.nav-phone-mobile {
    display: none; width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: var(--accent-bg); border-radius: 50%;
    color: var(--accent); transition: all 0.3s var(--ease);
}
.nav-phone-mobile:hover { background: var(--accent); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.hamburger {
    display: none; flex-direction: column;
    cursor: pointer; gap: 5px; padding: 8px;
    z-index: 1001; background: none; border: none;
}
.hamburger span {
    width: 24px; height: 1.5px; background: var(--text);
    transition: all 0.3s var(--ease); border-radius: 1px;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}
.hero-grid {
    max-width: 1280px; margin: 0 auto;
    padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 2;
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    font-weight: 800; line-height: 1.02;
    letter-spacing: -3px; margin-bottom: 24px;
}
.hero-title .line {
    display: block; overflow: hidden;
}
.hero-title .word {
    display: inline-block;
}
.hero-title .accent-line .word { color: var(--accent); }
.hero-desc {
    font-size: 1.05rem; color: var(--text-sec);
    max-width: 440px; line-height: 1.75;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 600;
    border: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 16px rgba(196,122,58,0.2);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,122,58,0.3);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 0.88rem; }

/* Hero Stats */
.hero-stats {
    display: flex; gap: 40px;
    padding-top: 28px; border-top: 1px solid var(--border-light);
}
.hero-stat { text-align: left; display: flex; align-items: center; gap: 10px; }
.hero-stat-icon {
    width: 40px; height: 40px;
    background: var(--accent-bg); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1rem;
    border: 1px solid rgba(196,122,58,0.08);
}
.hero-stat-label {
    font-size: 0.78rem; color: var(--text-sec);
    font-weight: 600;
}

/* Hero Image */
.hero-right { position: relative; }
.hero-image-stack { position: relative; }
.hero-image-main {
    border-radius: var(--radius-2xl);
    overflow: hidden; position: relative;
    box-shadow: var(--shadow-lg);
}
.hero-image-main::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(196,122,58,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-image-main img {
    width: 100%; height: 540px;
    object-fit: cover;
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 20px;
}
.label-line { width: 24px; height: 1.5px; background: var(--accent); border-radius: 1px; }
.section-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; letter-spacing: -1.8px;
    line-height: 1.08; margin-bottom: 16px;
}
.section-title .accent { color: var(--accent); }
.section-desc {
    font-size: 1rem; color: var(--text-sec);
    max-width: 500px; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services-section { padding: 120px 0; border-top: 1px solid var(--border-light); position: relative; }
.services-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
}
.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 24px 64px rgba(196,122,58,0.1);
    transform: translateY(-6px);
}
.service-card:hover .sc-number {
    color: var(--accent);
}
.service-card {
    display: flex; flex-direction: column;
}
.sc-inner { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.sc-number {
    font-family: var(--display);
    font-size: 2.8rem; font-weight: 700;
    color: var(--border); line-height: 1;
    margin-bottom: 12px; letter-spacing: -1.5px;
    transition: color 0.4s var(--ease);
}
.sc-inner h3 {
    font-family: var(--display);
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 8px; letter-spacing: -0.3px;
    transition: color 0.3s var(--ease);
}
.sc-inner p { font-size: 0.85rem; color: var(--text-sec); line-height: 1.7; transition: color 0.3s var(--ease); }
.sc-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: auto; padding-top: 16px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s var(--ease), letter-spacing 0.3s var(--ease);
    text-decoration: none;
}
.service-card:hover .sc-link { gap: 10px; letter-spacing: 0.02em; }
.sc-visual { height: 200px; overflow: hidden; }
.sc-visual img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 0.6s var(--ease);
}
.service-card:hover .sc-visual img { transform: scale(1.08); }

/* ===== ABOUT SPLIT ===== */
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.about-split-left {
    position: relative; overflow: hidden;
    background: var(--black);
}
.about-image-reveal {
    width: 100%; height: 100%;
}
.about-image-reveal img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-badge-float {
    position: absolute; bottom: 48px; right: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 28px 32px; border-radius: var(--radius-lg);
    color: #fff; display: flex; align-items: center; gap: 16px;
    box-shadow: 0 16px 48px rgba(196,122,58,0.3);
    z-index: 2;
}
.abf-number {
    font-family: var(--display);
    font-size: 2.5rem; font-weight: 800;
    line-height: 1; letter-spacing: -1.5px;
}
.abf-text { font-size: 0.85rem; line-height: 1.4; font-weight: 500; }
.about-split-right {
    display: flex; align-items: center;
    padding: 80px 64px;
}
.about-content { max-width: 500px; }
.about-content .section-desc { margin-bottom: 32px; }
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 36px;
}
.af-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: var(--radius-sm);
    background: var(--bg-alt); border: 1px solid var(--border-light);
    font-size: 0.85rem; font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.af-item:hover {
    border-color: var(--accent);
    background: rgba(196,122,58,0.04);
    transform: translateX(4px);
}
.af-check {
    width: 26px; height: 26px;
    background: var(--accent-bg); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.7rem; flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.af-item:hover .af-check {
    background: var(--accent);
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 120px 0; border-top: 1px solid var(--border-light); position: relative; }
.testimonials-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(196,122,58,0.08);
    transform: translateY(-4px);
}
.tc-stars {
    color: var(--accent); font-size: 0.85rem;
    letter-spacing: 3px; margin-bottom: 14px;
    transition: letter-spacing 0.3s var(--ease);
}
.testimonial-card:hover .tc-stars {
    letter-spacing: 5px;
}
.tc-text {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--text-sec); margin-bottom: 20px;
    font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-bg); display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; color: var(--accent);
    font-size: 0.78rem; flex-shrink: 0;
}
.tc-author strong { font-size: 0.88rem; letter-spacing: -0.1px; }
.tc-author small { font-size: 0.75rem; color: var(--text-dim); }

/* ===== AWARDS ===== */
.awards-section { padding: 120px 0; border-top: 1px solid var(--border-light); position: relative; }
.awards-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.awards-grid {
    display: flex; justify-content: center;
    flex-wrap: wrap; gap: 32px;
}
.award-badge {
    width: 140px; height: 160px;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.award-badge:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(196,122,58,0.2));
}
.award-badge img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.awards-marquee {
    overflow: hidden; margin-top: 48px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.awards-marquee-track {
    display: flex; gap: 48px; width: max-content;
    animation: marquee 20s linear infinite;
}
.awards-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CREDENTIALS ===== */
.credentials-section { padding: 120px 0; border-top: 1px solid var(--border-light); position: relative; }
.credentials-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.credentials-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cred-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px 24px; text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.cred-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(196,122,58,0.04), transparent);
    opacity: 0; transition: opacity 0.5s var(--ease);
    pointer-events: none;
}
.cred-card:hover::before { opacity: 1; }
.cred-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196,122,58,0.08), 0 20px 60px rgba(196,122,58,0.1);
    transform: translateY(-8px);
}
.cred-icon {
    width: 52px; height: 52px;
    background: var(--accent-bg); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
    border: 1px solid rgba(196,122,58,0.08);
    transition: all 0.4s var(--ease);
    color: var(--accent);
}
.cred-card:hover .cred-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1);
}
.cred-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.2px; transition: color 0.3s var(--ease); }
.cred-card:hover h4 { color: var(--accent); }
.cred-card p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }

/* ===== CTA ===== */
.cta-section {
    padding: 140px 0; position: relative; overflow: hidden;
    background: var(--black); color: var(--white);
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196,122,58,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(196,122,58,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-box { text-align: center; position: relative; z-index: 2; }
.cta-box h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800; letter-spacing: -2px;
    margin-bottom: 20px; line-height: 1.08;
}
.cta-box p {
    font-size: 1.05rem; color: rgba(255,255,255,0.4);
    margin-bottom: 40px; max-width: 420px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
}
.cta-box .btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 28px rgba(196,122,58,0.35);
    font-size: 0.92rem; padding: 18px 40px;
}
.cta-box .btn-primary:hover {
    background: #d4853f;
    box-shadow: 0 8px 40px rgba(196,122,58,0.5);
    transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact-section { padding: 120px 0; border-top: 1px solid var(--border-light); position: relative; }
.contact-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 80px; max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.contact-left .section-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 8px; }
.cd-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px; border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}
    .cd-item:hover { background: var(--bg-card); box-shadow: var(--shadow-sm); }
.cd-icon {
    width: 44px; height: 44px;
    background: var(--accent-bg); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.cd-item strong { font-size: 0.88rem; display: block; letter-spacing: -0.1px; }
.cd-item div { font-size: 0.85rem; color: var(--text-sec); }
.cd-item a { color: var(--accent); transition: color 0.3s var(--ease); }
.cd-item a:hover { color: var(--accent-hover); }

/* Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.contact-form-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
}
.contact-form-wrapper h3 {
    font-family: var(--display);
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: 24px; letter-spacing: -0.3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { position: relative; margin-bottom: 16px; }
.fg input, .fg textarea, .fg select {
    width: 100%; padding: 14px 16px;
    background: var(--bg); border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text); font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196,122,58,0.06);
    background: var(--bg-card);
}
.fg label {
    position: absolute; top: 14px; left: 16px;
    font-size: 0.85rem; color: var(--text-dim);
    pointer-events: none;
    transition: all 0.2s var(--ease);
}
.fg input:focus + label, .fg input:not(:placeholder-shown) + label,
.fg textarea:focus + label, .fg textarea:not(:placeholder-shown) + label {
    top: -10px; left: 12px;
    font-size: 0.65rem; font-weight: 600;
    color: var(--accent);
    background: var(--bg-card);
    padding: 0 6px;
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg select { cursor: pointer; appearance: none; }
.fg select option { background: var(--bg-card); }
.form-submit {
    width: 100%; padding: 15px;
    background: var(--accent); color: #fff;
    border: none; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,122,58,0.3);
}
.form-submit.loading { pointer-events: none; opacity: 0.7; }
.form-submit.loading span { display: none; }
.form-submit.loading::after {
    content: ''; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.6s linear infinite;
}
.form-success {
    display: none; text-align: center; padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: #e8f5e9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2e7d32; font-size: 1.5rem;
}
.form-success h4 {
    font-family: var(--display); font-size: 1.2rem;
    font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px;
}
.form-success p { font-size: 0.88rem; color: var(--text-sec); }

/* ===== SERVICE AREA ===== */
.service-area-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.service-area-section::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.service-area-content { text-align: center; max-width: 700px; margin: 0 auto; }
.service-area-content .section-desc { margin: 0 auto 32px; }
.service-area-cities {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 12px; margin-bottom: 24px;
}
.sac-city {
    font-family: var(--display); font-weight: 600;
    font-size: 0.9rem; color: var(--text-sec); letter-spacing: -0.2px;
    padding: 6px 14px; border-radius: 100px;
    background: var(--bg-alt); border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.sac-city:hover {
    border-color: var(--accent); background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,122,58,0.2);
}
.sac-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); opacity: 0.4;
}
.service-area-note {
    font-size: 0.88rem; color: var(--text-dim);
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery-section { padding: 120px 0 80px; background: var(--bg); }
.gallery-scroll-wrapper {
    overflow-x: auto; overflow-y: hidden;
    padding: 0 40px 40px; cursor: grab;
    scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-scroll-wrapper::-webkit-scrollbar { display: none; }
.gallery-scroll-wrapper:active { cursor: grabbing; }
.gallery-track {
    display: flex; gap: 20px;
    width: max-content;
}
.gallery-card {
    width: 340px; height: 280px;
    border-radius: var(--radius-xl); overflow: hidden;
    position: relative; flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}
.gallery-card:hover { transform: translateY(-6px); }
.gallery-card.gc-large { width: 420px; }
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff; opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-tag {
    display: inline-block; padding: 4px 10px;
    background: var(--accent); border-radius: 100px;
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 8px;
}
.gallery-card-overlay h4 {
    font-family: var(--display); font-size: 1rem;
    font-weight: 700; letter-spacing: -0.2px;
}
/* ===== PHOTO GALLERY SHOWCASE ===== */
.gallery-showcase { padding: 120px 0 80px; background: var(--bg); border-top: 1px solid var(--border-light); position: relative; }
.gallery-showcase::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--accent); z-index: 1; border-radius: 1px;
}
.gallery-viewer { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.gallery-main {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}
.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--black);
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 0;
    left: 0;
}
.gallery-main-img.gallery-fade-out {
    opacity: 0;
    transform: scale(0.96);
}
.gallery-main-img.gallery-fade-in {
    opacity: 1;
    transform: scale(1);
}
.gallery-main-img.gallery-slide-left {
    animation: gallerySlideLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.gallery-main-img.gallery-slide-right {
    animation: gallerySlideRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes gallerySlideLeft {
    0% { opacity: 0; transform: translateX(60px) scale(0.96); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes gallerySlideRight {
    0% { opacity: 0; transform: translateX(-60px) scale(0.96); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(250, 250, 248, 0.95);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-md);
    color: var(--text);
    backdrop-filter: blur(8px);
}
.gallery-nav-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(196,122,58,0.35);
    transform: translateY(-50%) scale(1.08);
}
.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }
.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 20px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--display);
    z-index: 5;
    transition: opacity 0.3s var(--ease);
}
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    justify-content: center;
    flex-wrap: nowrap;
}
.gallery-thumbnails::-webkit-scrollbar { display: none; }
.gallery-thumb {
    width: 72px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.5;
    position: relative;
}
.gallery-thumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}
.gallery-thumb.active {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 4px 16px rgba(196,122,58,0.25);
    transform: translateY(-2px) scale(1.05);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.3));
    pointer-events: none;
}
.gallery-thumb.active::after {
    background: linear-gradient(transparent 60%, rgba(196,122,58,0.15));
}
@media (max-width: 768px) {
    .gallery-showcase { padding: 80px 0 60px; }
    .gallery-viewer { padding: 0 20px; }
    .gallery-nav-btn { width: 42px; height: 42px; }
    .gallery-nav-prev { left: 10px; }
    .gallery-nav-next { right: 10px; }
    .gallery-thumb { width: 56px; height: 42px; }
    .gallery-counter { font-size: 0.75rem; padding: 6px 14px; }
    .gallery-thumbnails { gap: 8px; justify-content: flex-start; }
}

.gallery-cta { text-align: center; margin-top: 48px; }
.gallery-hint {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 16px; color: var(--text-dim);
    font-size: 0.82rem; font-weight: 500;
    animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}
.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5; transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-md); color: var(--text);
}
.gallery-arrow:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(196,122,58,0.3);
}
.gallery-arrow-left { left: 20px; }
.gallery-arrow-right { right: 20px; }
.gallery-scroll-wrapper { position: relative; }
.tc-quote-icon {
    margin-bottom: 8px; color: var(--accent);
}

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); }
.footer-top { padding: 80px 0 48px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.footer-brand h3 {
    font-family: var(--display);
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 12px; letter-spacing: -0.3px;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s var(--ease); font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-social a:hover {
    background: var(--accent); color: #fff;
    border-color: var(--accent); transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(196,122,58,0.3);
}
.footer-col h4 {
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.2); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.4); font-size: 0.85rem;
    transition: all 0.3s var(--ease);
    display: inline-block;
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
    display: flex; justify-content: center;
    align-items: center; padding: 24px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1280px; margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 50px; height: 50px;
    background: var(--accent); color: var(--white);
    border: none; border-radius: 50%;
    cursor: pointer; z-index: 999;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(196,122,58,0.35); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
    opacity: 0; transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }
.reveal-scale {
    opacity: 0; transform: scale(0.88);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }
.reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-zoom {
    opacity: 0; transform: scale(1.1);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-zoom.active { opacity: 1; transform: scale(1); }
.reveal-clip {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-clip.active { clip-path: inset(0 0 0 0); }

/* ===== HERO ENHANCEMENTS ===== */
.hero-deco-line {
    position: absolute;
    left: 48px;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    opacity: 0;
    animation: heroFadeIn 1s 1s forwards;
    z-index: 1;
}

.hero-grid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(229,225,219,0.25) 39px, rgba(229,225,219,0.25) 40px);
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
    z-index: -1;
}

.hero-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(229,225,219,0.2) 39px, rgba(229,225,219,0.2) 40px);
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    z-index: -1;
}

.hero-badge {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-sec);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroSpringIn 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: 2px;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(115%);
    animation: heroWordSpring 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform;
}

.hero-title .line:nth-child(1) .word { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.55s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.7s; }
.hero-title .line:nth-child(4) .word { animation-delay: 0.85s; }

@keyframes heroWordSpring {
    0% { transform: translateY(115%); }
    60% { transform: translateY(-6%); }
    80% { transform: translateY(3%); }
    100% { transform: translateY(0); }
}

.hero-desc {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-actions {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.8s 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stats {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSpringIn {
    0% { opacity: 0; transform: translateY(16px) scale(0.95); }
    60% { opacity: 1; transform: translateY(-2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-image-stack {
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    clip-path: inset(0 0 0 0 round var(--radius-2xl));
    animation: heroImageReveal 1.4s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: box-shadow 0.5s var(--ease);
}

.hero-image-stack:hover .hero-image-main {
    box-shadow: 0 20px 60px rgba(196,122,58,0.25);
}

@keyframes heroImageReveal {
    from { clip-path: inset(100% 0 0 0 round var(--radius-2xl)); opacity: 0; transform: scale(0.95); }
    to { clip-path: inset(0 0 0 0 round var(--radius-2xl)); opacity: 1; transform: scale(1); }
}

.hero-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: inherit;
    z-index: 3;
    pointer-events: none;
}

.hero-image-main::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(196,122,58,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    z-index: -1;
    pointer-events: none;
}

.hero-image-stack:hover .hero-image-main::after {
    opacity: 1;
}

.hero-image-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--accent);
    border-style: solid;
    z-index: 4;
    opacity: 0;
    animation: heroFadeIn 0.6s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-corner--tl { top: -10px; left: -10px; border-width: 1.5px 0 0 1.5px; }
.hero-image-corner--tr { top: -10px; right: -10px; border-width: 1.5px 1.5px 0 0; }
.hero-image-corner--bl { bottom: -10px; left: -10px; border-width: 0 0 1.5px 1.5px; }
.hero-image-corner--br { bottom: -10px; right: -10px; border-width: 0 1.5px 1.5px 0; }

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroScrollAppear 1s 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s var(--ease);
}

.hero-scroll.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.hero-scroll-text {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
}

.hero-scroll:hover .hero-scroll-text {
    color: var(--accent);
}

.hero-scroll-line {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, var(--border), transparent);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 1px;
    animation: scrollLineMove 1.8s cubic-bezier(0.8, 0, 0.2, 1) infinite;
}

@keyframes scrollLineMove {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

@keyframes heroScrollAppear {
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Floating Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100%) scale(0); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Stats */
.hero-stat {
    transition: all 0.4s var(--ease);
    cursor: default;
}

.hero-stat:hover {
    transform: translateY(-3px);
}

.hero-stat:hover .hero-stat-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.05);
}

.hero-stat-icon {
    transition: all 0.4s var(--ease);
}

.hero-stat-label {
    transition: color 0.4s var(--ease);
}

.hero-stat:hover .hero-stat-label {
    color: var(--text);
}

/* Buttons */
.btn-primary {
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255,255,255,0.15);
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: inherit;
    z-index: 0;
}

.btn-primary:hover::before {
    height: 100%;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.btn-ghost:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-ghost span {
    position: relative;
    z-index: 1;
    transition: color 0.3s var(--ease);
}

.btn-ghost:hover span {
    color: #fff;
}

.btn-ghost:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,122,58,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { max-width: 500px; }
    .hero-image-main img { height: 400px; }
    .services-bento { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; }
    .about-split-left { height: 50vh; min-height: 400px; }
    .about-split-right { padding: 60px 32px; }
    .credentials-row { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-inner { padding: 0 32px; }
    .nav-phone { display: none !important; }
    .nav-phone-mobile { display: flex; }
    .gallery-card { width: 280px; height: 240px; }
    .gallery-card.gc-large { width: 340px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--bg-card);
        flex-direction: column; justify-content: center;
        align-items: center; gap: 28px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: right 0.4s var(--ease);
        z-index: 1000;
    }
    .nav-links.active { display: flex; right: 0; }
    .nav-links a { font-size: 1.1rem; color: var(--text); }
    .nav-phone-mobile { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-title { letter-spacing: -1.5px; }
    .services-bento { grid-template-columns: 1fr; }
    .sc-visual { height: 200px; }
    .gallery-card { width: 260px; height: 220px; }
    .gallery-card.gc-large { width: 300px; }
    .gallery-scroll-wrapper { padding: 0 20px 30px; }
    .gallery-arrow { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .credentials-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .service-area-cities { gap: 8px; }
    .sac-city { font-size: 0.85rem; padding: 6px 12px; }
    .service-area-section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-split-left { height: 300px; }
    .about-badge-float { bottom: 20px; right: 20px; padding: 20px 24px; }
    .abf-number { font-size: 1.8rem; }
    .nav-inner { padding: 0 20px; }
    .footer-grid { padding: 0 20px; }
    .contact-grid { padding: 0 20px; }
    .footer-bottom { padding: 24px 20px; }
}
