/* ============================================
   WE GOT IT. — Cleaning Services
   Brand styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;700;900&display=swap');

:root {
  --black: #0a0a0a;
  --teal: #00D4AA;
  --teal-dark: #00A988;
  --teal-light: #B8F5E5;
  --white: #ffffff;
  --cream: #f5f3ef;
  --red: #FF3B30;
  --gray-100: #f4f4f4;
  --gray-300: #d4d4d4;
  --gray-500: #737373;
  --gray-700: #404040;
  
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --font-serif: 'Fraunces', serif;
  
  --max-width: 1280px;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
  padding: 16px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 0.9;
  text-align: center;
  flex-shrink: 0;
}

.nav-logo-mark span {
  display: block;
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

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

.nav-links a {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--black);
  }
  .nav-links.open { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--teal);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--black);
}

.hero::before {
  width: 140px;
  height: 140px;
  top: 60px;
  right: 8%;
}

.hero::after {
  width: 70px;
  height: 70px;
  top: 220px;
  right: 18%;
}

.hero-bubble-3 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--black);
  bottom: 80px;
  left: 6%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title .accent-dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--red);
  border: 4px solid var(--black);
  border-radius: 50%;
  vertical-align: baseline;
  margin-left: 0.05em;
  transform: translateY(-0.05em);
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 3px solid var(--black);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--teal);
}

.btn-large {
  padding: 22px 40px;
  font-size: 17px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 60px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--black);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--teal);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.6;
}

.service-card-tag {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card-tag::after {
  content: ' →';
  transition: var(--transition);
}

.service-card:hover .service-card-tag::after {
  margin-left: 6px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--black);
  color: var(--white);
}

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

.why-section .section-eyebrow {
  color: var(--teal);
}

.why-section .section-subtitle {
  color: var(--gray-300);
}

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

.why-card {
  padding: 32px 0;
  border-top: 2px solid var(--teal);
}

.why-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  font-size: 64px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--black);
}

.cta-banner::before {
  width: 80px;
  height: 80px;
  top: 30px;
  left: 8%;
}

.cta-banner::after {
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 12%;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-banner-subtitle {
  font-size: 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand .accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  vertical-align: baseline;
  margin-left: 2px;
}

.footer-tagline {
  color: var(--gray-300);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--gray-300);
  font-size: 15px;
}

.footer ul a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   PAGE HEADER (for sub pages)
   ============================================ */
.page-header {
  background: var(--teal);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--black);
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--black);
}

.page-header::before {
  width: 100px;
  height: 100px;
  top: 40px;
  right: 10%;
}

.page-header::after {
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 20%;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 20px;
  margin-top: 16px;
  max-width: 600px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-row {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.service-row-icon {
  width: 80px;
  height: 80px;
  background: var(--teal);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.service-row h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-row p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.service-row-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.service-row-features li {
  background: var(--cream);
  border: 2px solid var(--black);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-content { grid-template-columns: 1fr; }
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 40px;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.about-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
  color: var(--black);
  border-left: 4px solid var(--teal);
  padding-left: 24px;
  margin: 32px 0;
}

.about-stats {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.about-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-700);
}

.about-stat:last-child {
  border-bottom: none;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info-card {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius);
}

.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-700);
}

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

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 800;
}

.contact-method-value {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 4px;
}

.contact-method-value a {
  color: var(--white);
}

.contact-method-value a:hover {
  color: var(--teal);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 48px;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  color: var(--gray-700);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-light);
}

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 32px 24px; }
}

.form-success {
  background: var(--teal);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}

/* ============================================
   PRICING / ESTIMATE SECTION
   ============================================ */
.pricing-section {
  background: var(--cream);
}

.pricing-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.3;
}

.pricing-card-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.pricing-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.pricing-card p {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pricing-features {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.pricing-features li::before {
  content: '✓';
  color: var(--teal-dark);
  font-weight: 900;
  margin-right: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
