/* ============================================
   CLEARWATER PLUMBING - Industrial Aesthetic
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Source+Sans+3:wght@400;600;700&display=swap');

/* CSS Variables */
:root {
  --navy-deep: #0a1628;
  --navy-mid: #162033;
  --copper: #c17f59;
  --copper-light: #d4a574;
  --cream: #f5f1eb;
  --cream-dark: #e8e2d9;
  --slate: #4a5568;
  --slate-light: #718096;
  --accent-blue: #2563eb;
  --white: #ffffff;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --shadow-sm: 0 2px 4px rgba(10, 22, 40, 0.1);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 8px 30px rgba(10, 22, 40, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-deep);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-deep);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--copper);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--copper);
}

.header-cta {
  background: var(--copper);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, transparent 70%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border: 80px solid var(--copper);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(193, 127, 89, 0.2);
  border: 1px solid var(--copper);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--copper);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--slate-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--copper) 0%, var(--copper-light) 100%);
  clip-path: polygon(0 5%, 100% 0, 95% 100%, 5% 95%);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: var(--navy-mid);
  clip-path: polygon(0 5%, 100% 0, 95% 100%, 5% 95%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--copper);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Page Hero (smaller) */
.page-hero {
  min-height: 50vh;
  padding-top: 140px;
}

.page-hero .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .hero-description {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--navy-deep);
}

.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 2rem;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--navy-deep);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--copper);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: var(--slate-light);
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--navy-deep);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--copper);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.service-description {
  color: var(--slate-light);
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 1rem;
}

/* ============================================
   FEATURES / WHY US
   ============================================ */

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

.feature-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(193, 127, 89, 0.1);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--slate-light);
}

/* ============================================
   ABOUT / TEAM
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
}

.about-image-main::before {
  content: '';
  position: absolute;
  inset: 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='%23c17f59' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
}

.accent-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.accent-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.about-text {
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  margin: 2rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-white .about-text,
.section-white .about-content p {
  color: var(--slate-light);
}

.section-white .about-list li {
  color: var(--cream);
}

.section-white .about-content h3,
.section-white .section-title {
  color: var(--white);
}

.about-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--navy-deep);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.team-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-image::before {
  opacity: 0.2;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--copper);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  padding: 3rem;
  background: var(--navy-deep);
  color: var(--white);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--slate-light);
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-form {
  padding: 3rem;
  background: var(--navy-deep);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--cream-dark);
  background: var(--cream);
  transition: var(--transition);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a1628' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--navy-deep);
}

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

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--copper);
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 60px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
}

.cta-button {
  background: var(--navy-deep);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--navy-mid);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--copper);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--copper);
  border-radius: 50%;
}

.author-name {
  font-weight: 700;
  color: var(--white);
}

.author-location {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 2rem 30px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--slate-light);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--copper);
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--copper);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--slate-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--copper);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--slate-light);
}

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
}

.service-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.service-detail-content p {
  color: var(--slate-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--cream);
}

.service-features li::before {
  content: '→';
  color: var(--copper);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .feature-item:nth-child(2) {
    border-right: none;
  }

  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .nav {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge,
.hero h1,
.hero-description,
.hero-buttons {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    color: var(--white);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .header-inner {
    position: relative;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    display: none;
  }
}
