/* ========================================
   CSS Variables & Base Styles
   ======================================== */

:root {
  --color-primary: #063a5b;
  --color-white: #ffffff;
  --color-gray: #6b7280;
  --color-light-bg: #f8fafc;
  --color-header-footer: #192E49;
  --color-about-bg: #155781;
  
  --font-display: 'Epilogue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --glow: 0 0 22px rgba(6, 58, 91, 0.6);
  --shadow-soft: 0 4px 24px rgba(6, 58, 91, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  line-height: 1.6;
  background: var(--color-white);
  min-height: 100vh;
}

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

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

a:hover {
  opacity: 0.8;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  background: var(--color-header-footer);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 100%;
  max-width: 500px;
}

.phone-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  text-shadow: var(--glow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.phone-number:hover {
  opacity: 1;
  transform: scale(1.02);
  text-shadow: 0 0 32px rgba(6, 58, 91, 0.8);
}

.sale-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
  color: var(--color-white);
}

/* ========================================
   Form Section
   ======================================== */

.form-section {
  padding: 3rem 1.5rem 4rem;
  background: var(--color-white);
}

.form-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-light-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.form-container iframe {
  width: 100%;
  height: 850px;
  border: none;
}

/* ========================================
   About Section
   ======================================== */

.about {
  padding: 2rem;
  text-align: center;
  background: var(--color-about-bg);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-image-left img,
.about-image-right img {
  aspect-ratio: 4 / 5;
}

.about-content {
  padding: 2rem 1rem;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: var(--glow);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-locations {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-locations strong {
  font-weight: 600;
}

.join-cta {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 1rem;
}

.divider {
  width: 80%;
  max-width: 300px;
  height: 2px;
  background: var(--color-white);
  margin: 1rem auto;
  opacity: 0.6;
}

.divider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.divider-dots::before {
  content: '• • • • • • • • • • • • • • • • • • • • • • • • • • • • • •';
  color: var(--color-white);
  opacity: 0.5;
  font-size: 0.5rem;
  letter-spacing: 2px;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: var(--glow);
  line-height: 1.2;
  margin: 1rem 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 3rem 1.5rem 2rem;
  background: var(--color-header-footer);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 4rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.logo-link {
  display: block;
}

.footer-logo {
  height: auto;
  max-width: 150px;
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.03);
}

.footer-legal {
  text-align: center;
}

.footer-legal a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 968px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-image-left,
  .about-image-right {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-image-left img,
  .about-image-right img {
    aspect-ratio: 16 / 10;
  }
  
  .about-image-left {
    order: 1;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-image-right {
    order: 3;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 1rem 2.5rem;
  }
  
  .form-section {
    padding: 2rem 1rem 3rem;
  }
  
  .form-container iframe {
    height: 900px;
  }
  
  .about {
    padding: 2rem 1rem;
  }
  
  .footer-logos {
    gap: 1.5rem 2rem;
  }
  
  .footer-logo {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .form-container iframe {
    height: 950px;
  }
  
  .hero-logo {
    max-width: 320px;
  }
  
  .footer-logo {
    max-width: 100px;
  }
}
