/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --red:        #FF0000;
  --red-dark:   #A30000;
  --gradient:   linear-gradient(135deg, #FF0000 0%, #A30000 100%);
  --gradient-hover: linear-gradient(135deg, #E00000 0%, #8A0000 100%);
  --white:      #FFFFFF;
  --off-white:  #F4F4F4;
  --black:      #111111;
  --dark:       #1a1a1a;
  --gray-text:  #444444;
  --gray-light: #E8E8E8;
  --border:     #DDDDDD;

  --font-primary: 'Poppins', sans-serif;

  --nav-h: 90px;
  --radius: 0px; /* Sharp edges throughout */
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   BUTTONS – Gradient Style (#FF0000 → #A30000)
============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  background-size: 100%;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

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

/* ============================================================
   SECTION HELPERS
============================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-text);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* ============================================================
   SECTION 0 – NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-whatsapp-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 32px 24px;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-cta {
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   SECTION 1 – HERO
============================================================ */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* Hero Left */
.hero-content {
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.hero-heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta {
  font-size: 0.9rem;
}

/* Hero Right – Form */
.hero-form-wrap {
  background: transparent;
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus {
  border-color: var(--red);
}

.form-select-wrap {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-select:focus {
  border-color: var(--red);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  pointer-events: none;
}

.btn-submit {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}

/* ============================================================
   SECTION 2 – VIDEO
============================================================ */
.section-video {
  padding: 80px 0;
  background: var(--white);
}

.section-video .section-inner {
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  overflow: hidden;
}

.studio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  gap: 16px;
}

.video-placeholder .play-icon {
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

.video-placeholder p {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.6;
}

/* ============================================================
   SECTION 3 – GALLERY SLIDER
============================================================ */
.section-gallery {
  padding: 80px 0;
  background: var(--off-white);
}

.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.gallery-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-light);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-slide img:hover {
  transform: scale(1.04);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: var(--red);
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

/* ============================================================
   SECTION 4 – SERVICES
============================================================ */
.section-services {
  padding: 80px 0;
  background: var(--white);
}

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

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.service-img-wrap {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--gray-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-name {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}

.services-cta {
  text-align: center;
}

/* ============================================================
   SECTION 5 – LOCATION
============================================================ */
.section-location {
  padding: 80px 0;
  background: var(--off-white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.location-sub {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-light);
}

.hours-table td {
  padding: 14px 0;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gray-text);
}

.hours-table td.closed {
  color: var(--red);
  font-weight: 600;
}

.location-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.location-map {
  height: 420px;
  background: var(--gray-light);
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   SECTION 6 – CTA BANNER
============================================================ */
.section-cta-banner {
  padding: 80px 0;
  background: var(--white);
}

.cta-inner {
  text-align: center;
}

/* ============================================================
   SECTION 7 – PPF FEATURE
============================================================ */
.section-feature {
  padding: 80px 0;
  background: var(--off-white);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.feature-desc {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 32px;
}

.feature-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

/* ============================================================
   SECTION 8 – WHY CHOOSE US
============================================================ */
.section-why {
  padding: 80px 0;
  background: var(--white);
}

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

.why-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.why-icon-wrap {
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.why-icon-wrap svg {
  width: 80px;
  height: 80px;
}

.why-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-label {
  font-family: var(--font-primary);
  padding: 24px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: var(--black);
}

/* ============================================================
   SECTION 9 – ABOUT TEXT
============================================================ */
.section-about-text {
  padding: 80px 0;
  background: var(--off-white);
}

.about-text-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-light);
}

.about-item:last-child {
  border-bottom: none;
}

.about-item h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.about-item p {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-text);
  max-width: 780px;
}

/* ============================================================
   SECTION 10 – FAQ
============================================================ */
.section-faq {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--red);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-text);
}

/* ============================================================
   SECTION 11 – KEYWORDS
============================================================ */
.section-keywords {
  padding: 64px 0;
  background: var(--off-white);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.keyword-cloud span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--gray-text);
  cursor: default;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.keyword-cloud span:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255,0,0,0.04);
}

/* ============================================================
   THANK YOU PAGE
============================================================ */
.thankyou-section {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
}

.thankyou-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.thankyou-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  padding: 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy,
.footer-agency {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.footer-agency strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.profitcast-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.profitcast-link:hover {
  color: var(--white);
}

/* ============================================================
   FLOATING BUTTONS – Call (Left) & WhatsApp (Right)
============================================================ */
.floating-call,
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-call {
  left: 28px;
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(255,0,0,0.35);
}

.floating-call:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,0,0.45);
}

.floating-whatsapp {
  right: 28px;
  background: var(--gradient);
  box-shadow: 0 4px 20px rgba(255,0,0,0.35);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,0,0.45);
}

/* ============================================================
   RESPONSIVE – TABLET (max-width: 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-wrap {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

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

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    height: 320px;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image {
    order: -1;
  }

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

  .gallery-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* ============================================================
   RESPONSIVE – MOBILE LANDSCAPE / SMALL TABLET (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: none; }

  .nav-container {
    justify-content: center;
  }

  .nav-logo {
    flex-shrink: unset;
  }

  .mobile-menu { display: none !important; }

  .section-inner { padding: 0 20px; }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-container {
    padding: 40px 20px;
    gap: 32px;
  }

  .hero-checklist li {
    font-size: 0.88rem;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .service-img-wrap {
    width: 100%;
    height: 120px;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .location-btns {
    flex-direction: column;
  }

  .location-btns .btn-outline,
  .location-btns .btn-primary {
    text-align: center;
    width: 100%;
  }

  .feature-heading {
    font-size: 1.35rem;
  }

  .about-item h3 {
    font-size: 1.05rem;
  }

  .about-item p {
    font-size: 0.9rem;
  }

  .faq-q {
    font-size: 0.88rem;
    padding: 18px 0;
  }

  .faq-a p {
    font-size: 0.85rem;
  }

  .video-placeholder .play-icon {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE PORTRAIT (max-width: 480px)
============================================================ */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }

  .logo-img {
    height: 45px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .mobile-menu {
    padding: 16px;
  }

  .hero-container {
    padding: 32px 16px;
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .hero-heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .hero-checklist {
    margin-bottom: 28px;
    gap: 10px;
  }

  .hero-checklist li {
    font-size: 0.82rem;
  }

  .hero-form-wrap {
    padding: 24px 16px;
  }

  .form-input,
  .form-select {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .btn-submit {
    padding: 14px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .service-img-wrap {
    width: 80px;
    height: 64px;
  }

  .section-inner { padding: 0 16px; }

  .section-title {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-bottom: 28px;
  }

  .location-heading {
    font-size: 1.3rem;
  }

  .location-map {
    height: 260px;
  }

  .hours-table td {
    font-size: 0.82rem;
    padding: 12px 0;
  }

  .why-icon-wrap svg {
    width: 64px;
    height: 64px;
  }

  .why-label {
    padding: 20px 16px;
    font-size: 0.92rem;
  }

  .keyword-cloud span {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .section-video { padding: 60px 0; }
  .section-gallery { padding: 60px 0; }
  .section-services { padding: 60px 0; }
  .section-location { padding: 60px 0; }
  .section-cta-banner { padding: 60px 0; }
  .section-feature { padding: 60px 0; }
  .section-why { padding: 60px 0; }
  .section-about-text { padding: 60px 0; }
  .section-faq { padding: 60px 0; }
  .section-keywords { padding: 48px 0; }

  .floating-call,
  .floating-whatsapp {
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .floating-call {
    left: 20px;
  }

  .floating-call svg {
    width: 22px;
    height: 22px;
  }

  .floating-whatsapp {
    right: 20px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-copy,
  .footer-agency {
    font-size: 0.72rem;
  }
}

/* ============================================================
   RESPONSIVE – VERY SMALL SCREENS (max-width: 360px)
============================================================ */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 1.3rem;
  }

  .hero-checklist li {
    font-size: 0.78rem;
    gap: 8px;
  }

  .check-icon {
    width: 16px;
    height: 16px;
  }

  .btn-primary {
    font-size: 0.78rem;
    padding: 12px 20px;
  }

  .section-title {
    font-size: 1.15rem;
  }
}
