/* Starkwood Properties Inc. — Premium Real Estate Website */

/* ===== CSS VARIABLES ===== */
:root {
    --primary:        #0F2818;
    --primary-light:  #1a3d2a;
    --primary-dark:   #081410;
    --accent:         #D4A574;
    --accent-dark:    #B8884A;
    --accent-light:   #E8C9A0;
    --secondary:      #6B5B4F;
    --bg:             #FAFAF8;
    --bg-light:       #F5F3F0;
    --text:           #1A1A1A;
    --text-light:     #404040;
    --text-muted:     #757575;
    --border:         #E8E3DC;
    --white:          #FFFFFF;
    --dark:           #0A0A0A;
    --success:        #10B981;
    --error:          #EF4444;
    --font-serif:     'Playfair Display', Georgia, serif;
    --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
    --shadow-xs:      0 1px 2px rgba(0,0,0,.04);
    --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
    --shadow-md:      0 8px 20px rgba(0,0,0,.10);
    --shadow-lg:      0 16px 40px rgba(0,0,0,.12);
    --shadow-xl:      0 24px 60px rgba(0,0,0,.15);
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; letter-spacing: .3px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; color: var(--text); font-weight: 600; letter-spacing: -.5px; }
p { color: var(--text-light); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 108px 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }

/* ===== SECTION HEADER ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -.6px;
}
.section-title span { color: var(--accent); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.8; }
.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}
.section-header-center .section-label::before,
.section-header-center .section-label::after { display: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15,40,24,.25); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,165,116,.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, transparent 15%);
    transition: var(--transition);
    pointer-events: none;
}
.header.scrolled { 
    padding: 12px 0; 
    background: rgba(10, 20, 16, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.header.scrolled::before { opacity: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
.logo-text { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1.1; transition: var(--transition); }
.logo-text small { display: block; font-size: .6rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; opacity: .8; font-family: var(--font-sans); }
.header.scrolled .logo-text { color: var(--accent); }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item a { display: block; padding: 8px 14px; font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); border-radius: var(--radius-sm); transition: var(--transition); position: relative; }
.nav-item a::after { content: ''; position: absolute; bottom: 6px; left: 14px; right: 14px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav-item a:hover::after, .nav-item.active a::after { transform: scaleX(1); }
.header.scrolled .nav-item a { color: #F0F0F0; }
.nav-item a:hover, .nav-item.active a { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 75%; }
.hamburger span:nth-child(3) { width: 50%; }
.header.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(380px, 100%); height: 100vh; background: var(--white); z-index: 1100; padding: 80px 32px 40px; transition: right .4s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.mobile-menu.open { right: 0; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1050; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text); cursor: pointer; transition: var(--transition); }
.mobile-close:hover { background: var(--primary); color: var(--white); }
.mobile-nav-list { margin-bottom: 32px; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-item a { display: block; padding: 16px 0; font-size: 1.05rem; font-weight: 500; color: var(--text); transition: var(--transition); }
.mobile-nav-item a:hover, .mobile-nav-item.active a { color: var(--primary); padding-left: 8px; }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; }
.mobile-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-contact p { font-size: .875rem; color: var(--text-muted); margin-bottom: 6px; }
.mobile-contact a { font-weight: 600; color: var(--primary); font-size: .95rem; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; animation: heroZoom 16s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,20,16,.85) 0%, rgba(15,40,24,.75) 45%, rgba(107,91,79,.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; animation: fadeInUp .9s .1s ease both; }
.hero-label::before { content: ''; display: block; width: 40px; height: 2px; background: var(--accent); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--white); line-height: 1.1; margin-bottom: 28px; font-weight: 700; animation: fadeInUp .9s .2s ease both; letter-spacing: -.8px; }
.hero-title em { font-style: italic; color: var(--accent-light); font-weight: 700; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 580px; margin-bottom: 44px; line-height: 1.8; animation: fadeInUp .9s .3s ease both; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; animation: fadeInUp .9s .4s ease both; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeInUp .9s .5s ease both; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); padding: 10px 18px; border-radius: 100px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.9); transition: var(--transition); }
.trust-badge:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.trust-badge i { color: var(--accent); font-size: .85rem; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; animation: fadeInUp 1s .8s ease both; }
.scroll-line { width: 2px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 10; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.stat-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-light); }
.stat-number { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; letter-spacing: -.5px; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.about-img-badge { position: absolute; bottom: -28px; right: -28px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); padding: 32px 36px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); text-align: center; min-width: 180px; }
.badge-number { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--accent); line-height: 1; display: block; letter-spacing: -.5px; }
.badge-text { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .9; margin-top: 6px; display: block; }
.about-img-accent { position: absolute; top: -24px; left: -24px; width: 120px; height: 120px; border: 3px solid var(--accent); border-radius: var(--radius-md); opacity: .15; pointer-events: none; }
.about-content { padding-left: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.about-feature:hover { border-color: var(--accent); background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.af-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: .9rem; }
.af-text h5 { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; font-family: var(--font-sans); }
.af-text p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FEATURED PROJECT ===== */
.featured-project { background: var(--bg-light); position: relative; overflow: hidden; }
.project-showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.project-image-stack { position: relative; }
.project-img-main { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.project-img-thumb { position: absolute; bottom: -32px; right: -32px; width: 220px; height: 160px; object-fit: cover; border-radius: var(--radius-md); border: 5px solid var(--white); box-shadow: var(--shadow-lg); }
.project-badge-tag { position: absolute; top: 24px; left: 24px; background: var(--accent); color: var(--white); padding: 10px 20px; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-info { padding-left: 20px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.project-tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.project-tag i { color: var(--primary); font-size: .75rem; }
.project-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.highlight-item { padding: 18px; background: var(--white); border-radius: var(--radius-md); border-left: 4px solid var(--accent); box-shadow: var(--shadow-xs); }
.highlight-item h5 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; font-family: var(--font-sans); }
.highlight-item p { font-size: .9rem; color: var(--text); font-weight: 500; line-height: 1.4; }
.project-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { padding: 40px 32px; background: var(--bg-light); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; background: var(--white); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); font-size: 1.4rem; box-shadow: 0 8px 24px rgba(15,40,24,.2); }
.why-title { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 12px; font-family: var(--font-serif); letter-spacing: -.3px; }
.why-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ===== AMENITIES ===== */
.amenities-section { background: var(--primary); position: relative; overflow: hidden; }
.amenities-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,165,116,.08) 0%, transparent 70%); pointer-events: none; }
.amenities-header { margin-bottom: 60px; }
.amenities-header .section-label { color: var(--accent); }
.amenities-header .section-label::before, .amenities-header .section-label::after { background: var(--accent); }
.amenities-header .section-title { color: var(--white); }
.amenities-header .section-desc { color: rgba(255,255,255,.7); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity-card { padding: 32px 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); text-align: center; transition: var(--transition); cursor: default; }
.amenity-card:hover { background: rgba(255,255,255,.1); border-color: var(--accent); transform: translateY(-4px); }
.amenity-icon { width: 56px; height: 56px; background: rgba(212,165,116,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent); font-size: 1.2rem; transition: var(--transition); }
.amenity-card:hover .amenity-icon { background: var(--accent); color: var(--white); }
.amenity-name { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.95); line-height: 1.4; font-family: var(--font-sans); }

/* ===== LOCATION ===== */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.location-map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 500px; }
.location-map-wrap iframe { width: 100%; height: 100%; border: none; }
.location-map-img { width: 100%; height: 100%; object-fit: cover; }
.location-content { padding-right: 20px; }
.nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.nearby-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.nearby-item:hover { border-color: var(--primary); background: var(--white); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.nearby-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: .85rem; }
.nearby-item span { font-size: .9rem; font-weight: 600; color: var(--text); }

/* ===== JOURNEY / HOW TO ===== */
.journey-section { background: var(--bg-light); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; position: relative; }
.journey-grid::before { content: ''; position: absolute; top: 52px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px; background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent)); opacity: .25; }
.journey-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 32px 36px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); position: relative; }
.journey-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.journey-number { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; box-shadow: 0 6px 16px rgba(15,40,24,.3); }
.journey-icon { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(15,40,24,.08), rgba(212,165,116,.12)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--primary); font-size: 1.5rem; }
.journey-title { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 12px; letter-spacing: -.3px; }
.journey-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--white); }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item:nth-child(1) img { height: 432px; }
.gallery-item:not(:nth-child(1)) img { height: 207px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,40,24,.85) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 24px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: .9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.gallery-caption i { color: var(--accent); }

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    background: var(--primary);
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80') center/cover no-repeat;
    opacity: .06;
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--white); margin-bottom: 14px; letter-spacing: -.5px; }
.cta-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 540px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-top: 0;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,30,20,.9) 0%, rgba(31,61,43,.5) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a, .breadcrumb span { font-size: .8rem; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: .6rem; color: rgba(255,255,255,.4); }

/* ===== QUICK INFO BAR ===== */
.quick-info-bar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}
.quick-info-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.quick-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 22px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.quick-info-item:last-child { border-right: none; }
.quick-info-item:hover { background: var(--bg-light); }
.qi-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: .95rem; }
.qi-text h4 { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; font-family: var(--font-sans); }
.qi-text p { font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ===== CONTACT CARDS ===== */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 36px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.contact-card-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--accent); font-size: 1.6rem; box-shadow: 0 8px 24px rgba(15,40,24,.2); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -.3px; }
.contact-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary); font-size: .95rem; transition: var(--transition); }
.contact-link:hover { color: var(--accent); }
.contact-address { font-style: normal; font-size: .9rem; color: var(--text-muted); line-height: 1.8; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: .2px; }
.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
    appearance: none;
    letter-spacing: .2px;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15,40,24,.08); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757575' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check-input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--primary); cursor: pointer; }
.form-check-label { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.error-message { font-size: .8rem; color: var(--error); margin-top: 6px; font-weight: 500; }
.form-control.error { border-color: var(--error); background: rgba(239,68,68,.02); }
.form-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-md); padding: 20px 24px; display: none; }
.form-success.show { display: flex; align-items: center; gap: 12px; }
.form-success i { color: var(--success); font-size: 1.2rem; }
.form-success p { color: #15803d; font-weight: 500; margin: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; background: var(--white); transition: var(--transition); }
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: var(--primary); }
.faq-q-text { font-size: 1.05rem; font-weight: 600; color: var(--text); font-family: var(--font-serif); transition: var(--transition); letter-spacing: -.3px; }
.faq-item.open .faq-q-text { color: var(--white); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: .8rem; transition: var(--transition); }
.faq-item.open .faq-icon { background: rgba(255,255,255,.2); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 420px; padding: 22px 26px; }
.faq-answer p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ===== GALLERY PAGE ===== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border-radius: 100px; font-size: .875rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--text-muted); background: var(--white); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-full-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-full-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s ease; }
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,61,43,.8) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }
.gallery-full-caption { color: var(--white); font-size: .875rem; font-weight: 600; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { background: var(--accent); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; cursor: pointer; transition: var(--transition); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-caption { position: absolute; bottom: -40px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-size: .875rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 88px 0 64px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 56px; }
.footer-brand .footer-logo { margin-bottom: 24px; }
.footer-brand .footer-logo img { height: 52px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .95rem; line-height: 1.8; margin-bottom: 28px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 42px; height: 42px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); border: 1px solid rgba(255,255,255,.1); }
.social-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); border-color: var(--accent); }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; font-family: var(--font-sans); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.65); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: ''; display: block; width: 0; height: 2px; background: var(--accent); transition: transform .3s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::before { width: 12px; }
.footer-contact-list li { display: flex; gap: 14px; margin-bottom: 16px; }
.footer-contact-list i { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: .95rem; }
.footer-contact-list span { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-bottom { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== FLOATING BUTTON ===== */
.floating-contact { position: fixed; bottom: 28px; right: 28px; z-index: 900; }
.floating-main-btn { width: 58px; height: 58px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition); position: relative; z-index: 2; }
.floating-main-btn:hover { background: var(--accent); transform: scale(1.08); }
.floating-main-btn .pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--primary); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 0; transform: scale(1.3); } }
.floating-menu { position: absolute; bottom: 70px; right: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-xl); padding: 8px; width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px) scale(.95); transform-origin: bottom right; transition: var(--transition); }
.floating-contact.open .floating-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.floating-menu-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); color: var(--text); font-size: .9rem; font-weight: 500; transition: var(--transition); }
.floating-menu-item:hover { background: var(--bg); color: var(--primary); }
.floating-menu-item i { width: 32px; height: 32px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: .8rem; flex-shrink: 0; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,.12); padding: 12px 16px; z-index: 900; }
.sticky-cta-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sticky-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 8px; border-radius: var(--radius-sm); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: var(--transition); }
.sticky-btn i { font-size: 1.1rem; }
.sticky-btn-call { background: var(--bg); color: var(--primary); }
.sticky-btn-inquire { background: var(--primary); color: var(--white); }
.sticky-btn-view { background: var(--accent); color: var(--white); }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 28px; left: 28px; width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: .9rem; box-shadow: var(--shadow-md); cursor: pointer; transition: var(--transition); opacity: 0; visibility: hidden; z-index: 800; border: 1.5px solid var(--border); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }

/* ===== AOS ANIMATIONS ===== */
[data-aos] { opacity: 0; transition: opacity .6s ease, transform .6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== UTILITY ===== */
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 16px 0; }
.divider-center { margin: 16px auto; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 100px; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.tag-green { background: rgba(31,61,43,.1); color: var(--primary); }
.tag-gold { background: rgba(201,164,92,.15); color: var(--accent-dark); }
.tag-white { background: rgba(255,255,255,.15); color: var(--white); }
.overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.border { border: 1px solid var(--border); }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
