/* ============================================================
   L&B Home Improvements — Plain Static CSS
   Edit freely: colors, fonts, spacing are all here.
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --yellow: #FFE600;
  --yellow-dark: #e6cf00;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --mid: #333333;
  --light-bg: #f5f4f0;
  --text: #1a1a1a;
  --text-light: #555555;
  --white: #ffffff;
  --border: #e0e0e0;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; background: var(--black); color: var(--white); font-family: var(--font-heading); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.section-title span { color: var(--yellow); }
.section-subtitle { color: var(--text-light); font-size: 1rem; max-width: 600px; margin: 0 auto 48px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: var(--font-heading); font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--radius); transition: all 0.2s; border: 2px solid transparent; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,230,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ---------- Header ---------- */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: rgba(255,255,255,0.75); font-family: var(--font-heading); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 12px; border-radius: 4px; transition: color 0.2s; }
.nav a:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.5px; padding: 8px 12px; border-radius: 4px; transition: color 0.2s; }
.header-phone:hover { color: var(--yellow); }
.header-phone svg { width: 14px; height: 14px; }
.btn-estimate { background: var(--yellow); color: var(--black); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 20px; border-radius: var(--radius); border: none; transition: all 0.2s; }
.btn-estimate:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; color: var(--white); padding: 8px; }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 24px 24px; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.8); font-family: var(--font-heading); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

@media (max-width: 900px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: block; }
}

/* ---------- Hero ---------- */
#home { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--black); overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 580px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; border-radius: 20px; margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.0; color: var(--white); margin-bottom: 8px; }
.hero-title-yellow { color: var(--yellow); display: block; }
.hero-slogan { font-family: var(--font-body); font-style: italic; color: var(--yellow); font-size: 1rem; margin-bottom: 24px; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: left; }
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--white); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-image-card { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 48%; max-width: 600px; height: 80vh; overflow: hidden; border-radius: 16px 0 0 16px; cursor: pointer; }
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hero-image-card:hover img { transform: scale(1.04); }
.hero-view-label { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.6); color: var(--white); font-size: 11px; letter-spacing: 1px; padding: 6px 12px; border-radius: 4px; }

@media (max-width: 900px) {
  .hero-image-card { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 24px; }
}

/* ---------- Services ---------- */
#services { padding: 100px 0; background: var(--light-bg); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.service-icon { width: 52px; height: 52px; background: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 26px; height: 26px; color: var(--yellow); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.service-desc { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Gallery ---------- */
#gallery { padding: 100px 0; background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { background: transparent; border: 1.5px solid var(--border); color: var(--text-light); font-family: var(--font-heading); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 18px; border-radius: 20px; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--yellow); border-color: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 1; background: #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.5); }
.gallery-item-desc { color: var(--white); font-size: 12px; line-height: 1.4; transform: translateY(20px); opacity: 0; transition: all 0.3s; }
.gallery-item-cat { color: var(--yellow); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; transform: translateY(20px); opacity: 0; transition: all 0.3s 0.05s; }
.gallery-item:hover .gallery-item-desc,
.gallery-item:hover .gallery-item-cat { transform: translateY(0); opacity: 1; }
.gallery-hidden { display: none; }
.gallery-footer { text-align: center; margin-top: 40px; }
.gallery-count { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- Team ---------- */
#team { padding: 100px 0; background: var(--dark); color: var(--white); }
.team-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.team-text .section-title { color: var(--white); }
.team-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.team-members { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.team-member { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 14px; cursor: pointer; transition: all 0.2s; }
.team-member:hover { background: rgba(255,230,0,0.08); border-color: rgba(255,230,0,0.3); }
.team-member-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.team-member-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--white); }
.team-member-role { font-size: 0.75rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.team-photos { display: grid; grid-template-columns: 1fr; gap: 12px; }
.team-photo-main { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.team-photo-main img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.5s; }
.team-photo-main:hover img { transform: scale(1.04); }
.team-photo-badge { position: absolute; bottom: 16px; left: 16px; background: var(--yellow); color: var(--black); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; }
.team-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.team-photo-grid-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.team-photo-grid-item img { width: 100%; height: 120px; object-fit: cover; transition: transform 0.4s; }
.team-photo-grid-item:hover img { transform: scale(1.08); }
.community-box { margin-top: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; }
.community-label { font-family: var(--font-heading); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.community-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.community-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

@media (max-width: 900px) {
  .team-inner { grid-template-columns: 1fr; gap: 48px; }
  .team-members { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .team-members { grid-template-columns: 1fr; } }

/* ---------- Commercial ---------- */
#commercial { padding: 100px 0; background: var(--light-bg); }
.commercial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.commercial-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.commercial-photo { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.commercial-photo img { width: 100%; height: 140px; object-fit: cover; transition: transform 0.4s; }
.commercial-photo:hover img { transform: scale(1.06); }
.commercial-text .section-label { background: var(--black); }
.commercial-text .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.commercial-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }

@media (max-width: 900px) {
  .commercial-inner { grid-template-columns: 1fr; gap: 40px; }
  .commercial-photos { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Reviews ---------- */
#reviews { padding: 100px 0; background: var(--dark); color: var(--white); }
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header .section-title { color: var(--white); }
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.reviews-stars { color: var(--yellow); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-score { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--white); }
.reviews-platform { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px; transition: all 0.3s; }
.review-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,230,0,0.2); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.review-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; color: var(--white); }
.review-meta { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.review-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.review-verified { font-size: 0.7rem; color: #4caf50; background: rgba(76,175,80,0.12); padding: 2px 8px; border-radius: 10px; }
.review-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 10px; }
.review-text { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; font-style: italic; }
.review-text::before { content: '"'; }
.review-text::after { content: '"'; }
.reviews-footer { text-align: center; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
#contact { padding: 100px 0; background: var(--light-bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--yellow); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-family: var(--font-heading); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.contact-detail-value a { color: var(--text); }
.contact-detail-value a:hover { color: var(--black); text-decoration: underline; }
.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); }
.contact-form-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--black); color: var(--yellow); font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.form-submit:hover { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.form-message { margin-top: 16px; padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; display: none; }
.form-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-message.error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; display: block; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
#footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 60px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-heading); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Lightbox ---------- */
#lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; padding: 20px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 20px 80px rgba(0,0,0,0.8); }
.lightbox-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 44px; height: 44px; border-radius: 50%; font-size: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; z-index: 10000; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; z-index: 10000; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ---------- Floating phone (mobile) ---------- */
#floating-phone { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: none; width: 56px; height: 56px; background: var(--yellow); color: var(--black); border-radius: 50%; border: 2px solid var(--black); box-shadow: 0 4px 24px rgba(0,0,0,0.5); align-items: center; justify-content: center; transition: all 0.2s; }
#floating-phone:hover { background: var(--yellow-dark); transform: scale(1.1); }
#floating-phone svg { width: 24px; height: 24px; }
@media (max-width: 900px) { #floating-phone { display: flex; } }

/* ---------- Section dividers ---------- */
.divider { height: 4px; background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%); }
