body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding-bottom: 60px;
}


/* MOBILE */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 5px;
  }

  .topbar-logo {
    position: static;
  }

  .topbar-logo img {
    height: 35px;
  }

  .topbar-text {
    font-size: 14px;
  }
}

.hero {
  position: relative;
  background: url('images/Roof-Leak-Repair-Jacksonville.webp') center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: #fff;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENT ABOVE IMAGE */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* TEXT */
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.call {
  background: #fff;
  color: #000;
}

.btn.quote {
  background: #ff6a00;
  color: #fff;
}


@media (max-width: 768px) {
  .hero {
    min-height: 350px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
} 



/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== CTA ===== */
.cta {
  background: #FF6B00;
  color: #fff;
  text-align: center;
  padding: 40px;
  margin-top: 40px;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: #0A2540;
  color: #bbb;
  padding: 20px 0;
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer p {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.disclaimer strong {
  color: #fff;
}

.footer {
  background: #0A2540;
  color: #fff;
  padding: 10px;
  margin-top:0px;
}

/* FOOTER LAYOUT */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-center {
  text-align: center;
}

/* FOOTER LINKS */
.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  font-size: 14px;
}

/* SOCIAL ICONS (RIGHT SIDE) */
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0A2540;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}

.social-icons a:hover {
  background: #FF6B00;
  color: #fff;
}

/* FOOTER MOBILE */
.footer-inner {
  flex-direction: column;
  text-align: center;
}

.footer-left {
  margin-bottom: 15px;
}

/* HEADER */
.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
}

/* CALL BUTTON */
.header-call a {
  background: #FF6B00;
  color: #fff;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #000;
}

.header-call a:hover {
  background: #e65c00;
}

/* HEADER BASE */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* INNER CONTAINER */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* LOGO */
.logo img {
  height: 50px;
  max-width: 100%;
}

/* CALL BUTTON */
.header-call a {
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

/* HOVER EFFECT */
.header-call a:hover {
  background: #e65c00;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  margin-top: 50px;
  text-align: center;
}

.services-sub {
  max-width: 700px;
  margin: 10px auto 30px;
  color: #666;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TEXT */
.service-card h3 {
  padding: 15px 15px 5px;
  font-size: 18px;
}

.service-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.card-btn {
  display: block;
  margin: 0 15px 20px;
  padding: 10px;
  text-align: center;
  border: 2px solid #FF6B00;
  color: #FF6B00;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.card-btn:hover {
  background: #FF6B00;
  color: #fff;
}

/* BOX */
.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.info-box.highlight {
  border-left: 5px solid #FF6B00;
}

.info-box.dark {
  background: #0A2540;
  color: #fff;
}

/* GRID */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
}

/* ICON CARDS */
.icon-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* STEPS */
.steps-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.step-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.step-box span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #FF6B00;
}
@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column; /* stack vertically */
  }
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin: 10px 0;
}

/* CTA SMALL */
.cta-small {
  background: #FF6B00;
  color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

/* AREAS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 10px;
}

/* GRID 2 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

/* TRUST SECTION */
.trust-section {
  margin-top: 40px;
  text-align: center;
}

.trust-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.trust-card p {
  font-weight: normal;
  font-size: 14px;
  margin-top: 10px;
}

.trust-note {
  margin-top: 20px;
  color: #666;
}

/* FAQ */
.faq-section {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: #0A2540;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #f5f7fa;
}

/* ACTIVE FAQ */
.faq-item.active .faq-answer {
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Hero */
.blog-hero {
  background: #f3f4f6;
  padding: 40px 20px;
}

.blog-hero h1 {
  font-size: 32px;
  line-height: 1.3;
}

.blog-hero p {
  font-size: 16px;
  margin-top: 10px;
}

/* Content */
.blog-content {
  padding: 30px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Lists */
.styled-list {
  padding-left: 20px;
}

.styled-list li {
  margin-bottom: 10px;
}

/* Highlight box */
.highlight-box {
  background: #fff3e8;
  border-left: 4px solid #ff6b00;
  padding: 15px;
  margin: 20px 0;
}

/* Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Steps */
.steps-grid {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.step-box {
  flex: 1;
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}

.step-box span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #ff6b00;
}

/* CTA */
.cta-section {
  background: #ff6b00;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.btn.primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #ff6b00;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .blog-hero h1 {
    font-size: 24px;
  }

  .grid-2 {
    grid-template-columns: 1fr; /* stack cards */
  }

  .steps-grid {
    flex-direction: column; /* stack steps */
  }

  .step-box {
    width: 100%;
  }

  .blog-content {
    font-size: 15px;
  }

  .cta-section h2 {
    font-size: 20px;
  }

}
