/* =========================
   1. BASE / GLOBAL
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Заголовки по центру по умолчанию */
h2, h3 {
  text-align: center;
}

/* Ссылки – без подчёркивания, лёгкое изменение цвета при hover */
a {
  color: #0074c1;
  text-decoration: none;
}

a:hover {
  color: #005f99;
  text-decoration: none; /* убрали underline */
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Универсальная кнопка */
.btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: #005f99;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   2. NAVIGATION
   ========================= */

nav {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left-info .phone {
  font-weight: 600;
  color: #1a1a1a;
}

.left-info .socials a {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #0074c1;
}

.left-info .socials a:hover {
  color: #005f99;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0074c1;
  flex-grow: 1;
  text-align: center;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  font-weight: 500;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px 0;
  border-radius: 8px;
  min-width: 200px;
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li {
  padding: 10px 20px;
  text-align: left;
}

.dropdown li a {
  color: #1a1a1a;
  display: block;
}

.dropdown li a:hover {
  background-color: #f1f1f1;
  color: #0074c1;
}

/* Mobile nav toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .left-info {
    display: none;
  }

  .logo {
    text-align: left;
  }

  nav ul {
    flex-direction: column;
    display: none;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    gap: 1rem;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav ul.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* =========================
   3. HEADER / HERO
   ========================= */

header {
  position: relative;
  text-align: center;
  padding: 12rem 2rem;
  color: #fff;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('img/photo_gutter_cleaning.jpg') center/cover no-repeat;
  z-index: 1;
}

header * {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Кнопки в хедере */

.header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 25px;
  justify-content: center;
}

.header-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: all 0.25s ease;
  display: inline-block;
}

.header-btn {
  background: #0074c1;
  color: #fff;
}

.header-btn:hover {
  background: #005f99;
  color: #fff;
}

/* Get a Free Quote */
.quote-btn {
  background-color: #0074c1;
  color: #fff;
  border: 2px solid #0074c1;
}

.quote-btn:hover {
  background-color: #005fa3;
  border-color: #005fa3;
}

/* Call Now */
.call-btn {
  background-color: #fff;
  color: #0074c1;
  border: 2px solid #0074c1;
}

.call-btn:hover {
  background-color: #e6f2fb;
  color: #005fa3;
  border-color: #005fa3;
}

.call-btn i {
  margin-right: 8px;
}

@media (max-width: 600px) {
  .header-buttons {
    flex-direction: column;
    align-items: center;
  }

  .header-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   4. BREADCRUMBS
   ========================= */

.breadcrumb {
  font-size: 0.95rem;
  margin: 10px 0;
  background-color: #f9f9f9;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.breadcrumb ol li a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb ol li a:hover {
  color: #005f99;
  text-decoration: none;
}

.breadcrumb ol li + li::before {
  content: "›";
  font-size: 0.85rem;
  color: #adb5bd;
  margin: 0 10px;
}

/* =========================
   5. SECTIONS / CONTENT
   ========================= */

/* Moving Story Section */

.moving-story {
  background-color: #f1f5f9;
  margin-top: 2rem;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
/* Отступы между блоками в секции Why/When/How Much */
.moving-story .story-flex + .story-flex {
  margin-top: 40px;   /* можно 30–60px по вкусу */
}

.story-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.story-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.story-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.story-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.story-text ul {
  list-style: none;
  margin: 20px 0;
}

.story-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.story-text ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.story-text .trust {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0074c1;
}

@media (max-width: 768px) {
  .story-flex {
    flex-direction: column;
    text-align: center;
  }

  .story-image {
    display: none;
  }

  .story-text {
    text-align: center;
  }
}

/* Contact section */

#contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

/* =========================
   6. SERVICES CARDS / GRIDS
   ========================= */

.services-section {
  background: #fff;
  padding: 20px 20px 60px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
}

/* Основная сетка услуг */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Карточка услуги */

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  max-width: 350px;
  flex: 1 1 300px;
  text-align: left;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #1a1a1a;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-link {
  font-weight: 600;
  color: #0074c1;
  text-decoration: none;
}

.service-link:hover {
  color: #005f99;
  text-decoration: none;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
  }
}

/* Additional services (сетка) */

.additional-services {
  background-color: #fcfcfc;
  padding: 60px 20px;
  text-align: center;
}

.additional-services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e1e1e;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.additional-box {
  background-color: #f5f6f7;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.additional-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
}

.additional-box h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.additional-box p {
  font-size: 0.96rem;
  color: #444;
}

/* =========================
   7. STEPS CHAIN / TIMELINE
   ========================= */

.steps-chain {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.steps-chain .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step-block {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}

.step-block:hover {
  transform: translateY(-5px);
}

.step-block img {
  max-width: 80px;
  margin-bottom: 15px;
}

.step-arrow {
  font-size: 2rem;
  color: #0d6efd;
  font-weight: bold;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

/* Timeline section */

.timeline-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #007f7f;
  z-index: 0;
}

.timeline-step {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 18%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.timeline-step .icon {
  font-size: 30px;
  color: #004a7f;
  margin-bottom: 15px;
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.timeline-step p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    top: 0;
    left: 30px;
    width: 4px;
    height: 100%;
  }

  .timeline-step {
    width: 100%;
    max-width: 400px;
    text-align: left;
    padding-left: 60px;
  }

  .timeline-step .icon {
    position: absolute;
    top: 20px;
    left: 0;
  }
}

/* =========================
   8. QUOTE / FORMS
   ========================= */

.quote-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.quote-form .btn {
  padding: 14px;
  background-color: #005f99;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
}

.quote-form .btn:hover {
  background-color: #004770;
}

/* SEO текстовый блок */

.seo-text-block {
  background-color: #f1f3f5;
  padding: 60px 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.seo-text-block h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1e1e1e;
  text-align: center;
}

.seo-text-block p {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
}

/* =========================
   9. AREAS / SERVICE AREAS
   ========================= */

.areas-section {
  position: relative;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to top, #f1f5f9 0%, transparent 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
  text-align: center;
}

.areas-grid span {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.areas-grid span:hover {
  background-color: #e6f2fa;
  color: #0074c1;
}

/* =========================
   10. TESTIMONIALS / CTA
   ========================= */

.testimonials-section {
  background-color: #f9fbfc;
  padding: 60px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #e4e4e4;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #0074c1;
  text-align: right;
}

.quote-cta-section {
  background-color: #d7e0e0;
  padding: 60px 20px;
  text-align: center;
}

.quote-cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

/* =========================
   11. FAQ / ACCORDION
   ========================= */

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.accordion-header:hover {
  background-color: #f5f5f5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  padding: 0 18px;
}

.accordion-content p {
  margin: 15px 0;
  color: #555;
}

/* =========================
   12. PRICING
   ========================= */

.pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: bold;
  color: #0071c1;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
}

.pricing-card .btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
}

.pricing-card.popular {
  border: 2px solid #0071c1;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0071c1;
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 30px;
}

/* =========================
   13. BLOG / ARTICLE
   ========================= */

.blog-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  line-height: 1.7;
  color: #333;
}

.blog-header {
  text-align: left;
  margin-bottom: 30px;
}

.blog-featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
}

.blog-content h2 {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #222;
  text-align: left;
}

.blog-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 20px;
  text-align: left;
}

/* CTA в конце статьи */

.blog-cta {
  background-color: #fff;
  border-left: 2px solid #878787;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  background-color: #004a7f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #084298;
}

/* Статья (общий контент) */

.content-section {
  padding: 60px 20px;
  background: #fff;
}

.article-content {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  font-size: 1rem;
}

.article-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.article-content h4 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: #0d6efd;
}

.article-content p {
  margin-bottom: 1.2rem;
}

/* Картинка внутри статьи */

.article-image {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Список-checklist */

.checklist {
  list-style: none;
  padding-left: 1.2rem;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #198754;
  font-weight: bold;
}

/* Ссылки внутри статьи – подчёркиваем, чтобы были очевидны */

.article-content a {
  color: #0d6efd;
  text-decoration: underline;
}

.article-content a:hover {
  color: #084298;
  text-decoration: underline;
}

/* =========================
   14. PAGINATION
   ========================= */

.pagination-nav {
  margin-top: 40px;
  text-align: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 6px;
}

.pagination li {
  display: flex;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background-color: #f1f1f1;
  color: #0074c1;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  min-width: 40px;
  height: 40px;
}

.pagination li a:hover {
  background-color: #0074c1;
  color: #fff;
}

.pagination li.active a {
  background-color: #0074c1;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 480px) {
  .pagination {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px 0;
  }

  .pagination li {
    flex: 0 0 auto;
  }

  .pagination li a {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 34px;
    height: 34px;
  }

  .pagination-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================
   15. MODAL
   ========================= */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #000;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   16. DISCOUNT SECTION (BANNER)
   ========================= */

.discount-section {
  background-image: url('https://toronto-gutter-cleaning.alpin.group/img/discount/early-bird-diccount-14qwr.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  overflow: hidden;
}

.discount-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.discount-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.discount-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.discount-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.discount-cta .btn {
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a5480;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.discount-cta .btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .discount-content h3 {
    font-size: 2rem;
  }
  .discount-content p {
    font-size: 1rem;
    max-width: 90%;
  }
  .discount-cta .btn {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }
}

/* =========================
   17. FOOTER
   ========================= */

.main-footer {
  background-color: #1a1a1a;
  color: #f8f9fa;
  padding: 40px 15px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4,
.footer-column h5 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-column p,
.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-column:last-child {
    margin-bottom: 0;
  }

  .main-footer {
    padding: 30px 15px 15px;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
  }
}
