/* ===========================
   55 Lake Dr Storage — Styles
   =========================== */

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

:root {
  --green:       #2d6a4f;
  --green-dark:  #1b4332;
  --green-light: #40916c;
  --accent:      #74c69d;
  --bg:          #f8f9f7;
  --text:        #1a1a1a;
  --text-muted:  #555;
  --border:      #d8e4dc;
  --white:       #ffffff;
  --shadow:      0 2px 12px rgba(0,0,0,0.09);
  --radius:      10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
header {
  background: var(--green-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; }
.logo-name { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.3px; }
.logo-sub { font-size: 0.75rem; color: var(--accent); }

header nav { display: flex; gap: 6px; }
header nav a {
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s;
}
header nav a:hover, header nav a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.9);
  padding: 14px 24px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  margin-left: 10px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); text-decoration: none; }
.btn-full { width: 100%; display: block; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 48px 0 52px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }

/* ========== FEATURES ========== */
.features {
  padding: 70px 0;
  background: var(--white);
}
.features h2, .units-preview h2, .pricing-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--green-dark);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--green-dark); }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ========== UNITS PREVIEW ========== */
.units-preview { padding: 70px 0; background: var(--bg); }
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 1.5rem;
}
.unit-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.unit-card.featured { border-color: var(--green); }
.unit-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.unit-size { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.unit-price { font-size: 2.2rem; font-weight: 800; color: var(--green); margin-bottom: 0.8rem; }
.unit-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.unit-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.billing-note { text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.billing-note a { color: var(--green); }

/* ========== PRICING PAGE ========== */
.pricing-section { padding: 60px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.pricing-card.featured { border-color: var(--green); }
.pricing-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.pricing-badge.premium { background: var(--green-dark); }
.pricing-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.price { font-size: 2.6rem; font-weight: 800; color: var(--green); }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-quarterly { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.features-list { list-style: none; text-align: left; margin-bottom: 2rem; }
.features-list li { padding: 6px 0; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.features-list li:last-child { border-bottom: none; }

.billing-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.billing-info h3 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--green-dark); }
.billing-info p { font-size: 0.95rem; color: var(--text-muted); }

.faq dt { font-weight: 600; color: var(--text); margin-top: 1rem; }
.faq dd { color: var(--text-muted); font-size: 0.95rem; margin-left: 0; margin-top: 0.2rem; }
.faq a { color: var(--green); }

/* ========== CTA SECTION ========== */
.cta {
  background: var(--green);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.7rem; }
.cta p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }
.cta .btn-primary { background: var(--white); color: var(--green); }
.cta .btn-primary:hover { background: var(--bg); }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 60px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrap h2, .contact-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.required { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.info-item:last-child { border-bottom: none; }
.info-icon { font-size: 1.3rem; min-width: 28px; text-align: center; }
.info-item a { color: var(--green); }

.map-placeholder { border-radius: var(--radius); overflow: hidden; }

/* ========== FOOTER ========== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 36px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-inner a { color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: 4px; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--white); text-decoration: none; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 20px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  header nav { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 60px 0 70px; }
  .hero p { font-size: 1rem; }
  .btn-secondary { margin-left: 0; margin-top: 10px; display: inline-block; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .unit-grid, .pricing-grid { grid-template-columns: 1fr; }
}
