/* ============================================================
   VETERAN HANDYMAN OF THE GULF COAST LLC — MARKETING WEBSITE
   Design System & Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

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

:root {
  /* Brand Colors */
  --navy: #1b2a4a;
  --navy-deep: #0f1a2e;
  --navy-light: #2a3f6a;
  --red: #c0392b;
  --red-dark: #962d22;
  --gold: #c9a84c;
  --gold-light: #e0c36a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --cream: #faf8f2;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --shadow: rgba(15,26,46,0.12);
  --shadow-lg: rgba(15,26,46,0.2);
  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #1b2a4a 0%, #0f1a2e 100%);
  --gradient-hero: linear-gradient(160deg, #0f1a2e 0%, #1b2a4a 40%, #2a3f6a 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c, #e0c36a);
  --gradient-red: linear-gradient(135deg, #c0392b, #e74c3c);
  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--gradient-gold); border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px); font-weight: 800;
  line-height: 1.15; color: var(--navy); margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-light); max-width: 600px; line-height: 1.7;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border: none; border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-primary {
  background: var(--gradient-red); color: #fff;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.btn-navy {
  background: var(--gradient-navy); color: #fff;
  box-shadow: 0 4px 15px var(--shadow);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-lg);
}
.btn-gold {
  background: var(--gradient-gold); color: var(--navy);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease;
}
.nav.scrolled {
  top: 0;
  background: rgba(15,26,46,0.95); backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-logo { height: 48px; width: auto; border-radius: 4px; }
.nav-name {
  font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2;
}
.nav-name span { display: block; font-size: 11px; font-weight: 400; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 16px; border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gradient-red) !important; color: #fff !important;
  border-radius: 8px !important; font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(192,57,43,0.4); }
.mobile-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; padding: 4px;
}
.nav-phone {
  color: var(--gold-light); text-decoration: none; font-size: 17px;
  font-weight: 700; flex: 1; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: color 0.2s ease; white-space: nowrap;
}
.nav-phone-text {
  color: rgba(255,255,255,0.7); font-weight: 400; font-size: 14px;
}
.nav-phone:hover { color: #fff; }
.nav-phone:hover .nav-phone-text { color: rgba(255,255,255,0.9); }
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,26,46,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); overflow: hidden;
  padding-top: 120px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
  opacity: 0.25; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
  font-size: 13px; font-weight: 600; color: var(--gold-light);
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--gold-light); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 64px); font-weight: 900;
  line-height: 1.08; color: #fff; margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7;
  margin-bottom: 36px; max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: left; }
.stat-value {
  font-size: 36px; font-weight: 800; color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
@media (max-width: 600px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-value { font-size: 28px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 32px 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient-gold); opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-sm);
  background: rgba(27,42,74,0.06); display: flex;
  align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--text-light); line-height: 1.6;
}
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 600;
  color: var(--red); text-decoration: none; transition: gap 0.2s ease;
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   WHY CHOOSE US / TRUST
   ============================================================ */
.trust { background: var(--white); }
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-top: 48px;
}
@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; gap: 40px; } }
.trust-image {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.trust-image img { width: 100%; height: auto; display: block; }
.trust-features { list-style: none; }
.trust-feature {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.trust-feature:last-child { border-bottom: none; }
.trust-check {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(52,211,153,0.12); display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; color: #059669;
}
.trust-feature h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trust-feature p { font-size: 14px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews { background: var(--gradient-hero); color: #fff; }
.reviews .section-title { color: #fff; }
.reviews .section-subtitle { color: rgba(255,255,255,0.6); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 32px; backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold-light); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--navy);
}
.review-name { font-size: 14px; font-weight: 600; }
.review-location { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   RECENT WORK / GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 16px; font-weight: 700; color: #fff; }
.gallery-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ============================================================
   QUOTE REQUEST FORM
   ============================================================ */
.quote { background: var(--white); }
.quote-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-top: 48px; align-items: start;
}
@media (max-width: 768px) { .quote-wrapper { grid-template-columns: 1fr; } }
.quote-info { }
.quote-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px;
}
.quote-info p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27,42,74,0.06); display: flex;
  align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; color: var(--navy); }
.contact-item span { font-size: 14px; color: var(--text-light); }

.quote-form {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
}
.quote-form h3 {
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 14px; color: var(--text);
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gradient-navy); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo { height: 56px; margin-bottom: 16px; border-radius: 6px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer h4 {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s ease;
}
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Trip fee banner */
.trip-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--gradient-gold); text-align: center;
  padding: 10px 24px; font-size: 13px; font-weight: 600;
  color: var(--navy); height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.trip-banner.hidden {
  transform: translateY(-100%); 
}
