/* ============================================
   WEE HAUL, LLC — Brand Stylesheet
   Deep Forest Green Palette | Country-Professional
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:wght@400;700&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables (Brand Tokens) --- */
:root {
  /* Primary Palette */
  --green-darkest:   #0F2A1B;
  --green-dark:      #1A3C2A;
  --green-primary:   #2D5F3F;
  --green-medium:    #3A7A52;
  --green-light:     #4E9968;
  --green-pale:      #A8D5BA;
  --green-wash:      #EDF5F0;

  /* Accent */
  --gold:            #C5A55A;
  --gold-light:      #D4BC7E;
  --gold-dark:       #A8893D;

  /* Neutrals */
  --white:           #FFFFFF;
  --off-white:       #F7F9F7;
  --gray-lightest:   #E8ECE9;
  --gray-light:      #C4CCC6;
  --gray-medium:     #888E8A;
  --gray-dark:       #555555;
  --text-primary:    #2C2C2C;
  --text-secondary:  #555555;

  /* Typography */
  --font-heading:    'Montserrat', sans-serif;
  --font-body:       'Open Sans', sans-serif;
  --font-accent:     'Merriweather', serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(15, 42, 27, 0.08);
  --shadow-md:       0 4px 20px rgba(15, 42, 27, 0.12);
  --shadow-lg:       0 8px 40px rgba(15, 42, 27, 0.16);

  /* Borders */
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: 3rem; margin-bottom: 20px; }
h2 { font-size: 2.25rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 16px; color: var(--text-secondary); }

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--green-medium);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin-top: 16px;
  border-radius: 2px;
}

.section-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.85); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--gold);
  color: var(--green-darkest);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--green-dark);
}

.btn-phone {
  background-color: var(--gold);
  color: var(--green-darkest);
  font-size: 1.15rem;
  padding: 16px 36px;
  letter-spacing: 0.5px;
}

.btn-phone:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--green-darkest);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--gold-light);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--gold);
}

/* --- Header / Navigation --- */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-dark);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-links a:hover {
  color: var(--green-primary);
}

.nav-links a.active {
  color: var(--green-primary);
}

.nav-cta {
  background-color: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background-color: var(--green-dark) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--green-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 40%, var(--green-primary) 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero .tagline {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* --- Section Spacing --- */
.section {
  padding: var(--section-padding);
}

.section-green {
  background-color: var(--green-wash);
}

.section-dark {
  background: linear-gradient(135deg, var(--green-darkest), var(--green-dark));
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .section-title::after {
  background: var(--gold);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-lightest);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--green-wash);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--green-primary);
}

.card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Service Area Banner --- */
.service-area-banner {
  background: var(--green-primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.service-area-banner h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.county-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.county-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.stats-bar .grid-4 {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-top: 6px;
}

/* --- Pricing Table --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lightest);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--green-primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--gold);
  color: var(--green-darkest);
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: var(--font-heading);
}

.pricing-header {
  background: var(--green-wash);
  padding: 28px;
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
}

.pricing-card.featured .pricing-header h3 {
  color: var(--white);
}

.pricing-header h3 {
  margin-bottom: 4px;
}

.pricing-from {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.pricing-card.featured .pricing-from {
  color: rgba(255,255,255,0.7);
}

.pricing-body {
  padding: 28px;
}

.pricing-body ul {
  margin-bottom: 24px;
}

.pricing-body li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-lightest);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-body li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-body .btn {
  width: 100%;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--green-wash);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-light);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--green-medium);
  transform: scale(1.02);
}

.gallery-placeholder {
  text-align: center;
  color: var(--gray-medium);
  padding: 20px;
}

.gallery-placeholder .icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.gallery-placeholder p {
  font-size: 0.85rem;
  color: var(--gray-medium);
}

/* --- Contact Form --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-lightest);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
}

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

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

/* --- Contact Info Cards --- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--green-wash);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Testimonial --- */
.testimonial {
  background: var(--green-wash);
  border-radius: var(--radius-md);
  padding: 36px;
  border-left: 4px solid var(--gold);
}

.testimonial blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green-primary);
  font-size: 0.95rem;
}

/* --- Value Props / Feature List --- */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--green-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--green-primary);
}

.value-item h4 { margin-bottom: 4px; }
.value-item p { font-size: 0.95rem; margin-bottom: 0; }

/* --- Footer --- */
.footer {
  background: var(--green-darkest);
  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;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-banner .btn {
  margin: 0 8px;
}

/* --- Page Header (Interior Pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 60%, var(--green-primary) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.page-header .breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.page-header .breadcrumb a {
  color: var(--gold-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 50px 0; }
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero .tagline { font-size: 1.1rem; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 12px;
  }
  
  .stats-bar { margin-top: -30px; padding: 24px; }
  .stat-number { font-size: 1.8rem; }
  
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .county-tags { flex-direction: column; align-items: center; }
}
