/* ===== NAV LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo .logo-svg {
  height: 52px;
  width: auto;
}

.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

/* ===== INTRO SCREEN ===== */
#intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s ease;
}

#intro-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 700;
  color: #000;
  position: absolute;
  opacity: 1;
  transition: opacity .5s ease;
}

#intro-logo {
  width: 340px;
  max-width: 80vw;
  opacity: 0;
  position: absolute;
  transition: opacity .6s ease;
}

#intro-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

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

:root {
  --red:    #BF0A30;
  --blue:   #002868;
  --green:  #5cb827;
  --green2: #4a9e1f;
  --white:  #ffffff;
  --gray:   #f5f5f5;
  --text:   #1a1a1a;
  --text2:  #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
}

a { text-decoration: none; color: inherit; }

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

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header.light h2, .section-header.light p { color: #fff; }

.label-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--blue);
}

.section-header p { font-size: 17px; color: var(--text2); max-width: 540px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover { background: #a00826; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover { background: rgba(0,40,104,.08); }

.full-width { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 48px; width: auto; }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .5px;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background .2s !important;
}

.nav-cta:hover { background: #a00826 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 24px 16px;
}

.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
}

.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(to right,
    var(--blue) 0%,
    #ffffff 28%,
    #ffffff 72%,
    var(--red) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-flag-stripe { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ===== HERO LOGO ===== */
.hero-logo-wrap {
  margin: 0 auto 28px;
  width: fit-content;
}

.hero-logo {
  width: 480px;
  max-width: 90vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.15));
}

.hero-content h1 {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 800;
  color: #0a1f5c;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span { color: #2d7a0a; }

.hero-sub {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


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

.grass-row {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  z-index: 3;
}

.grass-row svg { width: 100%; height: 100%; }

/* ===== WHY US ===== */
#why-us {
  background: linear-gradient(135deg, var(--blue) 0%, #001845 100%);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: background .25s;
}

.why-card:hover { background: rgba(255,255,255,.13); }

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: var(--green);
}
.why-icon svg { width: 100%; height: 100%; }

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ===== ABOUT ===== */
#about { background: var(--gray); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
}

.about-text .label-tag { margin-bottom: 14px; }

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.green-text { color: var(--green2); }

.about-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text .btn { margin-top: 10px; }

.about-image { display: flex; justify-content: center; align-items: center; }

.texas-badge { width: 200px; height: 200px; }

/* ===== OUR WORK ===== */
#our-work {
  background: linear-gradient(135deg, #1e6b10 0%, #2d8a18 50%, #1a5c0a 100%);
}

#our-work .section-header h2 { color: #fff; }
#our-work .section-header p  { color: rgba(255,255,255,.85); }
#our-work .label-tag { background: rgba(255,255,255,.2); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.work-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: brightness(1.08) contrast(1.12) saturate(1.18);
}


/* ===== CONTACT ===== */
#contact { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}

.quote-box { height: 100%; box-sizing: border-box; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; width: 36px; display: flex; align-items: center; justify-content: center; }

.contact-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-item a, .contact-item span {
  font-size: 16px;
  color: var(--text2);
}

.contact-item a:hover { color: var(--green2); }

.social-links { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: transform .2s, opacity .2s;
}

.social-btn:hover { transform: translateX(4px); opacity: .9; color: #fff; }

.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook { background: #1877f2; }

/* ===== QUOTE BOX ===== */
.quote-box {
  border-radius: 16px;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* American flag — real image */
.quote-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('download.png') center / cover no-repeat;
  border-radius: 16px;
  z-index: 0;
}

/* Dark overlay for text readability */
.quote-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  border-radius: 16px;
  z-index: 1;
}

.quote-box h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}

.quote-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.quote-btns .btn { font-size: 16px; padding: 16px 32px; }

.btn-gray { background: #6b7280; color: #fff; }
.btn-gray:hover { background: #4b5563; }

.btn-green { background: var(--green); color: #fff; border: none; cursor: pointer; font-family: inherit; }
.btn-green:hover { background: var(--green2); }

/* Call/Text dropdown */
.call-text-wrap { position: relative; }

.call-text-wrap { position: relative; }

.call-text-options {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  overflow: hidden;
  width: 160px;
  z-index: 10;
}

.call-text-options.open { display: block; }

.call-text-options a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}

.call-text-options a:last-child { border-bottom: none; }
.call-text-options a:hover { background: var(--gray); }

.ct-icon { width: 16px; height: 16px; flex-shrink: 0; }


.social-btn.whatsapp { background: #25d366; }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--gray);
  border-radius: 16px;
  padding: 36px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }

.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 14px;
  margin-top: 12px;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding-top: 0;
  position: relative;
}

.footer-stripe { height: 5px; }
.footer-stripe.red    { background: var(--red); }
.footer-stripe.white  { background: #fff; }
.footer-stripe.blue   { background: #001845; }

.footer-inner { padding: 40px 24px; }

.footer-logo {
  width: 280px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
}

footer p {
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255,255,255,.65);
}

footer a { color: var(--green); }
footer a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-image { order: -1; }
  .about-text .btn { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  footer { background: var(--blue) !important; }

  .footer-inner { padding: 16px 12px; background: var(--blue); }

  .footer-logo {
    width: 90px !important;
    padding: 6px 10px !important;
    margin-bottom: 10px;
  }

  footer p {
    font-size: 9.5px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    color: rgba(255,255,255,.75);
  }

  #hero {
    padding: 90px 24px 60px;
    min-height: 100svh;
    background:
      linear-gradient(to bottom, #fff 0%, #fff 38%, transparent 62%),
      linear-gradient(to right, var(--blue) 0%, #ffffff 28%, #ffffff 72%, var(--red) 100%) !important;
  }

  #our-work {
    background: linear-gradient(135deg, #1e6b10 0%, #2d8a18 50%, #1a5c0a 100%) !important;
  }

  .hero-sub {
    font-size: 12px;
    font-weight: 900;
    color: #000;
    -webkit-text-stroke: 1.5px #fff;
    paint-order: stroke fill;
  }

  .quote-box::before {
    background: url('download.png?v=2') center / cover no-repeat !important;
    inset: 0;
  }

  section { padding: 60px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .why-card {
    padding: 14px 10px;
    aspect-ratio: 1 / 1;
    justify-content: center;
  }

  .why-icon { width: 32px; height: 32px; margin-bottom: 10px; }
  .why-card h4 { font-size: 12px; margin-bottom: 6px; }
  .why-card p { font-size: 10.5px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .call-text-options {
    width: 140px;
  }

  .call-text-options a {
    padding: 10px 12px;
    font-size: 13px;
    gap: 8px;
  }

  .ct-icon { width: 14px; height: 14px; }
}
