/* ============================================
   BREEZY ENTERPRISES LLC — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

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

:root {
  --navy:   #0a2a6e;
  --navy-dark: #071d4e;
  --white:  #ffffff;
  --accent: #4a90d9;
  --accent-light: #6ba8e3;
  --dark:   #0a0a0a;
  --gray:   #f4f6fb;
  --text:   #333344;
  --muted:  #6b7280;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,42,110,0.10);
  --shadow-lg: 0 8px 40px rgba(10,42,110,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #3a7bc8;
  border-color: #3a7bc8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,144,217,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(10,42,110,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .btn { padding: 9px 22px; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all .3s;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0d3585 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,144,217,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(74,144,217,0.2);
  border: 1px solid rgba(74,144,217,0.4);
  color: var(--accent-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero h1 span { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 16px;
}

/* ---- Section Labels ---- */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- Problem Section ---- */
.problem { background: var(--gray); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.problem-card p { color: var(--muted); font-size: 15px; }

/* ---- Services Preview ---- */
.services-preview { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid #e8eef8;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  background: var(--white);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.75); }
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card .plan-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-card.featured .plan-name { color: var(--accent-light); }
.pricing-card h3 { font-size: 22px; margin-bottom: 12px; }
.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card.featured .price { color: var(--white); }
.pricing-card .price span { font-size: 18px; font-weight: 600; }
.pricing-card .price-note { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.6); }
.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.85); }
.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured ul li::before { color: var(--accent-light); }

/* ---- How It Works ---- */
.how-it-works { background: var(--gray); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: 15px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3585 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.tagline-footer {
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ---- Page Headers ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 120px 0 70px;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: clamp(32px, 4vw, 50px); margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ---- Services Page ---- */
.services-full { background: var(--white); }
.service-tier {
  background: var(--white);
  border: 2px solid #e8eef8;
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-bottom: 32px;
  transition: box-shadow .25s, border-color .25s;
}
.service-tier:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-tier.featured-tier {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--navy) 0%, #0d3585 100%);
  color: var(--white);
}
.service-tier.featured-tier h2,
.service-tier.featured-tier h3 { color: var(--white); }
.service-tier.featured-tier p,
.service-tier.featured-tier li { color: rgba(255,255,255,0.82); }
.tier-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8eef8;
}
.service-tier.featured-tier .tier-header { border-bottom-color: rgba(255,255,255,0.15); }
.tier-title-block .tier-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-tier.featured-tier .tier-badge { color: var(--accent-light); }
.tier-title-block h2 { font-size: 28px; margin-bottom: 8px; }
.tier-title-block p { color: var(--muted); max-width: 480px; }
.service-tier.featured-tier .tier-title-block p { color: rgba(255,255,255,0.75); }
.tier-price-block { text-align: right; }
.tier-price-block .price-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--navy);
  line-height: 1;
}
.service-tier.featured-tier .price-big { color: var(--white); }
.tier-price-block .price-big span { font-size: 20px; font-weight: 600; }
.tier-price-block .price-period { color: var(--muted); font-size: 14px; margin-top: 4px; }
.service-tier.featured-tier .price-period { color: rgba(255,255,255,0.6); }
.tier-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px 32px;
  margin-bottom: 32px;
}
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.tier-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-tier.featured-tier .tier-feature::before { color: var(--accent-light); }

/* ---- About Page ---- */
.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-values { background: var(--gray); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.value-card .v-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 14px; }
.about-mission {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3585 100%);
  padding: 80px 0;
  text-align: center;
}
.about-mission h2 { color: var(--white); font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.about-mission p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }
.about-mission blockquote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--accent-light);
  font-style: italic;
  margin-top: 32px;
}

/* ---- Contact Page ---- */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 30px; margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 15px;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
.contact-item-text p, .contact-item-text a {
  color: var(--muted);
  font-size: 14px;
}
.contact-item-text a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 2px solid #e8eef8;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-form-wrap .form-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8eef8;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit { width: 100%; padding: 15px; margin-top: 8px; border: none; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tier-header { flex-direction: column; }
  .tier-price-block { text-align: left; }
  .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 72px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 20px 24px 28px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .service-tier { padding: 32px 24px; }
}

/* ---- Utility ---- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.highlight { color: var(--accent); }

.price-cta {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary, #0a2a6e);
  background: #f0f4ff;
  border: 2px solid var(--primary, #0a2a6e);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin: 0.75rem 0;
  letter-spacing: 0.5px;
}
