/* ==========================================================================
   Dr. Nadia Hamdy Sultan - Hair Transplant Clinic Website
   Design tokens derived from brand logo (gold/black identity)
   ========================================================================== */

:root {
  /* Brand colors sampled from logo.png */
  --gold: #ecba1f;
  --gold-dark: #b8890f;
  --gold-light: #f6d878;
  --gold-soft: rgba(236, 186, 31, 0.12);

  --dark: #151109;
  --dark-2: #211a10;
  --dark-3: #2c2213;

  --cream: #fbf6ea;
  --white: #ffffff;
  --text-main: #2a2318;
  --text-muted: #6f6656;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-gold: 0 12px 30px rgba(184, 137, 15, 0.25);
  --shadow-soft: 0 10px 35px rgba(21, 17, 9, 0.08);

  --container: 1180px;
  --font-main: "Cairo", "Tahoma", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(184, 137, 15, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold-soft);
}

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

.btn-dark:hover {
  background: #000;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  background: rgba(21, 17, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 186, 31, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  min-width: 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: #f1e9d6;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.25s;
  position: relative;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .btn {
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #2c2213 0%, var(--dark) 55%, #0d0a05 100%);
  padding: 170px 0 110px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: var(--gold);
  top: -120px;
  inset-inline-start: -100px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: var(--gold-dark);
  bottom: -100px;
  inset-inline-end: -60px;
  opacity: 0.2;
}

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

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  background: rgba(236, 186, 31, 0.1);
  border: 1px solid rgba(236, 186, 31, 0.35);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 18px;
}

.hero-text h1 span {
  color: var(--gold-light);
}

.hero-text p {
  color: #d9d0bd;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-stats div strong {
  display: block;
  font-size: 30px;
  color: var(--gold-light);
  font-weight: 800;
}

.hero-stats div span {
  color: #bcb198;
  font-size: 14px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media .frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.08;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  border: 4px solid rgba(236, 186, 31, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 14px rgba(236, 186, 31, 0.06);
}

.hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .badge {
  position: absolute;
  bottom: 10px;
  left: -10px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
}

.hero-media .badge .star {
  color: var(--gold-dark);
  font-size: 20px;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-media .ring {
  position: absolute;
  inset: -18px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 16.5px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.about-points li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 13px;
}

/* ==========================================================================
   Services
   ========================================================================== */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.service-card .icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-dark);
}

.service-card .icon i {
  line-height: 1;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ==========================================================================
   Before / After + Social embeds
   ========================================================================== */

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

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

.section-dark .section-head p {
  color: #bcb198;
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  justify-items: center;
}

.embed-card {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(236, 186, 31, 0.18);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

.embed-card iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
}

.embed-card .fb-page,
.embed-card .fb-post {
  width: 100% !important;
}

.videos-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

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

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

.testimonial-card .stars {
  color: var(--gold-dark);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  color: var(--text-main);
  font-size: 15.5px;
  margin-bottom: 20px;
  min-height: 90px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--dark);
}

.testimonial-card .author span.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* ==========================================================================
   Articles
   ========================================================================== */

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

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
}

.article-card .thumb {
  height: 170px;
  overflow: hidden;
  background: var(--dark-3);
}

.article-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .thumb img {
  transform: scale(1.06);
}

.btn i,
.footer-col i,
.hero-text .eyebrow i {
  flex-shrink: 0;
}

.footer-col i {
  color: var(--gold);
  margin-inline-end: 8px;
  width: 16px;
  text-align: center;
}

.article-card .content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.article-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
  flex: 1;
}

.article-card .read-more {
  font-weight: 800;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Locations
   ========================================================================== */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location-card .map-wrap {
  height: 260px;
}

.location-card .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-card .info {
  padding: 28px;
}

.location-card .info .tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.location-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.location-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   CTA / Booking
   ========================================================================== */

.cta-section {
  background: linear-gradient(120deg, var(--dark), #2c2213);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  max-width: var(--container);
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  color: #d9d0bd;
  margin-bottom: 0;
}

.cta-section .hero-actions {
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 26px;
  margin-bottom: 0;
}

.cta-section .hero-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 12px;
  font-size: 13px;
  justify-content: center;
}

.booking-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(236, 186, 31, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  gap: 14px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
}

.booking-form input::placeholder {
  color: #bcb198;
}

.booking-form select option {
  color: #000;
}

.booking-form .btn {
  justify-content: center;
  width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0d0a05;
  color: #bcb198;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(236, 186, 31, 0.12);
}

.footer-col {
  min-width: 0;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.9;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(236, 186, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 17px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14.5px;
}

.footer-col ul li.footer-address {
  min-width: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-col ul li.footer-address .address-text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.footer-col ul li.footer-address .address-text::-webkit-scrollbar {
  display: none;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-signature-area {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.m2-footer-bottom {
  border-top: none;
  margin-top: 0.5rem;
}

.m2-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: center;
}

.m2-signature__mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #55c8e8;
  filter: drop-shadow(0 0 6px rgba(85, 200, 232, 0.55));
  animation: m2-sig-pulse 3.4s ease-in-out infinite;
}

.m2-signature__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes m2-sig-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.12) rotate(45deg);
    opacity: 1;
  }
}

.m2-signature__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.m2-signature__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.m2-signature__logo img {
  height: 18px !important;
  width: auto !important;
  max-width: 52px !important;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

.m2-signature__tag {
  color: #fff;
  font-size: 13px;
}

.m2-signature__tag strong {
  color: #fff;
  font-weight: 700;
}

.m2-signature__year {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

@media (max-width: 575px) {
  .m2-signature {
    gap: 8px 10px;
  }
}

/* ==========================================================================
   Floating action buttons (WhatsApp + scroll to top)
   ========================================================================== */

.whatsapp-float,
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float {
  inset-inline-start: 26px;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.scroll-top-btn {
  inset-inline-end: 26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Article page (single)
   ========================================================================== */

.article-hero {
  background: radial-gradient(circle at 20% 20%, #2c2213, var(--dark) 60%);
  padding: 160px 0 70px;
  color: var(--white);
  text-align: center;
}

.article-hero .breadcrumb {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 18px;
}

.article-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 16px;
}

.article-hero .meta {
  color: #bcb198;
  font-size: 14.5px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 24px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin: 28px 0 12px;
}

.article-body p {
  color: var(--text-main);
  font-size: 16.5px;
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-inline-start: 22px;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-main);
}

.article-cta {
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin: 40px 0;
}

.article-cta p {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.related-articles {
  background: var(--white);
  padding: 70px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
  .hero-inner,
  .about-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media .frame {
    max-width: 300px;
  }

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

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

  .footer-col ul li.footer-address .address-text {
    white-space: normal;
    overflow-x: visible;
  }

  .cta-section {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .brand img {
    height: 42px;
  }

  .header-cta {
    gap: 8px;
  }

  .header-cta .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    inset-inline: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(236, 186, 31, 0.2);
  }

  .hero {
    padding: 130px 0 70px;
  }

  section {
    padding: 60px 0;
  }

  .services-grid,
  .testimonial-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .videos-cta .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
  }
}
