/* ============================================
   Bourbon County Storage - Styles
   ============================================ */

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

:root {
  --orange: #FF5829;
  --orange-hover: #e04a1f;
  --dark: #1a1a1a;
  --darker: #111111;
  --white: #ffffff;
  --light: #f7f7f7;
  --gray: #666666;
  --text: #333333;
  --border: #e0e0e0;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  text-align: center;
}

.top-bar a {
  color: var(--orange);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Header / Nav --- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
}

.footer-brand .logo-icon img {
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

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

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 88, 41, 0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

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

.btn-dark:hover {
  background: var(--darker);
  transform: translateY(-2px);
}

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

.btn-white-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* --- Hero --- */
.hero {
  background: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.8)), url('../img/hero.webp') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 88, 41, 0.15);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 88, 41, 0.3);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #b0b0b0;
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-free-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}

.hero-free-lock::before {
  content: '\2713';
  font-weight: 700;
}

.hero-address {
  display: block;
  font-size: 1rem;
  color: #999;
  margin-bottom: 48px;
}

.hero-address svg {
  vertical-align: middle;
  margin-right: 4px;
}

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

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 88, 41, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-feature p {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
}

/* --- Military Banner --- */
.military-banner {
  background: linear-gradient(135deg, #2d3a2d 0%, #1a2e1a 100%);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  border-top: 3px solid var(--orange);
}

.military-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.military-banner svg {
  width: 28px;
  height: 28px;
  fill: var(--orange);
}

.military-banner strong {
  font-size: 1.1rem;
  color: var(--orange);
}

.military-banner p {
  font-size: 0.95rem;
  color: #ccc;
}

.link-orange {
  color: var(--orange);
}

/* --- Section Defaults --- */
.section {
  padding: 80px 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: #aaa;
}

/* --- Features / Why Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 88, 41, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.google-rating-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-rating-score strong {
  font-size: 1.4rem;
  color: var(--dark);
}

.google-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-rating-text {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- Location / Map --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.location-info {
  padding: 20px 0;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.location-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 88, 41, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-detail h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.location-detail p,
.location-detail a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.location-detail a:hover {
  color: var(--orange);
}

.hours-grid {
  display: grid;
  gap: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
}

.hours-row span:first-child {
  color: var(--gray);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #e04a1f 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--darker);
  color: #ccc;
  padding: 60px 0 30px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-badge {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.kssoa-badge {
  height: 80px;
  width: auto;
  border-radius: var(--radius);
}

.chamber-badge {
  height: 80px;
  width: auto;
  border-radius: 12px;
  margin-right: 0;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer ul a {
  font-size: 0.9rem;
  color: #999;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
}

/* --- FAQ Page --- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: #aaa;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
}

/* --- Tenant Protection Page --- */
.tp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tp-hero-grid h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.tp-hero-grid p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.tp-image {
  background: linear-gradient(135deg, rgba(255,88,41,0.1), rgba(255,88,41,0.05));
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.tp-image svg {
  width: 120px;
  height: 120px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.coverage-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.plan-card:hover,
.plan-card.popular {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.plan-card .label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

.plan-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* --- Tenant Protection Page --- */
.protection-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.protection-intro-content .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.protection-intro-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.protection-intro-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
}

.protection-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.protection-intro-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

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

.protection-photo-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.protection-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.protection-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.protection-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.protection-highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 88, 41, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.protection-highlight-icon svg {
  stroke: var(--orange);
}

.protection-highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.protection-highlight-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.protection-levels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.protection-level {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: var(--radius);
}

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.coverage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.coverage-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 88, 41, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.coverage-icon svg {
  stroke: var(--orange);
}

.coverage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.coverage-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.coverage-footnote {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Exclusions */
.exclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.exclusion-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.exclusion-col > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.exclusion-list {
  display: grid;
  gap: 12px;
}

.exclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.exclusion-list svg {
  flex-shrink: 0;
  stroke: #e53e3e;
  margin-top: 3px;
}

.exclusion-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}

/* Claim Steps */
.claim-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.claim-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.claim-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.claim-step-number {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.claim-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.claim-step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.claim-step a {
  color: var(--orange);
  font-weight: 600;
}

.claim-step a:hover {
  text-decoration: underline;
}

/* Claim Info Box */
.claim-info-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.claim-info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}

.claim-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.claim-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.claim-info-item svg {
  flex-shrink: 0;
  stroke: var(--orange);
}

.claim-info-cta {
  text-align: center;
  margin-top: 24px;
}

/* Disclaimer */
.protection-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.protection-disclaimer p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.protection-disclaimer p:last-child {
  margin-bottom: 0;
}

.protection-disclaimer a {
  color: var(--orange);
  font-weight: 600;
}

.protection-disclaimer a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .tp-hero-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .protection-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .protection-intro-image img {
    height: 260px;
  }

  .protection-highlights {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

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

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

}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }

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

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .kssoa-badge,
  .chamber-badge {
    height: 60px;
  }

  .hero-card {
    display: none;
  }

  .hero-free-lock {
    display: inline-flex;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 24px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero {
    padding-bottom: 96px;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.7rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto 32px;
  }

  .claim-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .claim-info-grid {
    grid-template-columns: 1fr;
  }

  .protection-levels {
    flex-wrap: wrap;
  }

}

/* --- Size Guide --- */
.size-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.size-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all var(--transition);
}

.size-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.size-card-img {
  max-width: 220px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.size-card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.size-dimensions {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}

.size-sqft {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
}

.size-comparable {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}

.size-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 12px;
}

.size-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.size-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.size-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.size-cta {
  width: 100%;
}

.tips-hero {
  background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('../img/Outside.webp') center / cover no-repeat;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

.tip-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 88, 41, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tip-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.6;
}

/* --- Phone FAB --- */
.phone-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: all var(--transition);
}

.phone-fab::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #e53e3e;
  border-radius: 50%;
}

.phone-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 88, 41, 0.5);
}

.phone-fab svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  stroke: var(--white);
  stroke-width: 1;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
}

.animate-in.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* --- Size Guide Responsive --- */
@media (max-width: 968px) {
  .tips-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .size-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .size-card {
    padding: 24px;
  }

  .size-dimensions {
    font-size: 1.5rem;
  }

  .reviews-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
