/* ================================================
   FREE BIRD PRESSURE WASHING — Main Stylesheet
   ================================================ */

:root {
  --navy:       #1C3461;
  --navy-dark:  #0D1B2A;
  --navy-mid:   #152847;
  --red:        #CC1F2D;
  --red-dark:   #A3171F;
  --gold:       #F4A61A;
  --cream:      #F8F3E9;
  --white:      #FFFFFF;
  --text:       #1A1A2E;
  --text-light: #5a6072;
  --border:     #E0E4ED;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
  --max-width:  1200px;
  --font-head:  '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;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(204,31,45,0.4);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  transition: all var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--white); }
.nav-phone i { font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 0 24px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 0;
}
.mobile-menu a:hover { color: var(--gold); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 72px;
}

/* Animated background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(28,52,97,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(204,31,45,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 50%, rgba(244,166,26,0.08) 0%, transparent 60%);
}
/* Subtle diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 860px;
}
.hero-logo {
  width: min(240px, 55vw);
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.hero-badge i { color: var(--gold); font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  animation: bounce 2s ease infinite;
}
.hero-scroll a:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =========================================
   SERVICES
   ========================================= */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.service-icon i {
  font-size: 1.4rem;
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =========================================
   WHY US
   ========================================= */
.why-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 41px
  );
}
.why-section .section-label { color: var(--gold); }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon i { font-size: 1.5rem; color: var(--white); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.stars i { color: var(--gold); font-size: 1rem; }
.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }
.testimonial-author {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.google-review-link { text-align: center; }

/* =========================================
   ABOUT
   ========================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.about-logo img {
  width: min(320px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(28,52,97,0.2));
}
.about-content .section-label { display: block; margin-bottom: 8px; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content .btn { margin-top: 8px; }

/* =========================================
   CONTACT / QUOTE
   ========================================= */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-label { display: block; margin-bottom: 8px; }
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-info > p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 0.98rem;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--red); }
.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-item:hover i { background: var(--red); }

/* Quote Form */
.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,52,97,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  background: #f9fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  padding: 4px 0;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Form success/error states */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-light); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--red);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.page-hero {
  background: var(--navy-dark);
  padding: 120px 24px 60px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.gallery-section { background: var(--white); padding: 64px 0; }
.gallery-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.gallery-intro p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }

.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a2e4d, #2a4470);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px solid var(--border);
}
.gallery-item-inner {
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.gallery-item-inner i { font-size: 2.5rem; margin-bottom: 10px; }
.gallery-item-inner p { font-size: 0.85rem; }

.coming-soon-banner {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 48px;
}
.coming-soon-banner i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.coming-soon-banner h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.coming-soon-banner p { color: var(--text-light); font-size: 1rem; margin-bottom: 24px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-logo img { max-width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-checkboxes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-form { padding: 28px 20px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-logo { width: min(180px, 65vw); }
  .gallery-placeholder { grid-template-columns: 1fr; }
}

/* ── Utility animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
