/* ==========================================================================
   Shifting Vala Official Service Page - Mobile Responsive Stylesheet
   Full Responsive Layouts for Mobile, Tablet, Laptop, and Desktop
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Rubik:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --tanspot-font: 'Poppins', sans-serif;
  --tanspot-font-two: 'Rubik', sans-serif;
  
  --tanspot-base: #ff3131;          /* Signature Red Accent */
  --tanspot-base-hover: #e02424;
  --tanspot-black: #0e2e4b;         /* Deep Navy Blue */
  --tanspot-black-dark: #071b2d;
  --tanspot-gray: #585b6b;
  --tanspot-primary: #F4F5F9;       /* Soft Light Gray BG */
  --tanspot-white: #ffffff;
  --tanspot-bdr-color: #e6e6e6;
  --tanspot-bdr-radius: 10px;

  --header-gradient: linear-gradient(45deg, #012750, #0068dd);
  --shadow-box: 0 10px 60px 0 rgba(0, 0, 0, 0.07);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tanspot-font);
  background-color: var(--tanspot-white);
  color: var(--tanspot-gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tanspot-font-two);
  color: var(--tanspot-black);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--tanspot-base);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--tanspot-base-hover);
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* TOP ANNOUNCEMENT BANNER */
.top-notification-bar {
  background: var(--tanspot-base);
  color: var(--tanspot-white);
  text-align: center;
  padding: 6px 15px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* TOPBAR HEADER */
.main-header-top {
  background: var(--header-gradient);
  color: var(--tanspot-white);
  padding: 6px 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.top-contacts li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-contacts a {
  color: var(--tanspot-white);
  font-weight: 500;
}

.top-contacts a:hover {
  color: #ff9999;
}

.top-right-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

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

.top-socials a {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--tanspot-white);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.top-socials a:hover {
  background: var(--tanspot-base);
  color: var(--tanspot-white);
}

/* MAIN MENU NAVIGATION */
.main-menu-area {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tanspot-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  flex-wrap: nowrap;
  position: relative;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  max-height: 42px;
  width: auto;
  display: block;
}

.nav-right-container {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.main-nav-links a {
  color: var(--tanspot-black);
  font-family: var(--tanspot-font-two);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.main-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tanspot-base);
  transition: width 0.3s ease;
}

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

.mobile-nav-item {
  display: none;
}

.nav-call-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.call-icon-box {
  width: 32px;
  height: 32px;
  background: var(--tanspot-base);
  color: var(--tanspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.call-text-box {
  display: flex;
  flex-direction: column;
}

.call-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--tanspot-gray);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.call-number {
  font-family: var(--tanspot-font-two);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--tanspot-black);
  line-height: 1.2;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--tanspot-primary);
  border: 1px solid var(--tanspot-bdr-color);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--tanspot-black);
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--tanspot-base);
  color: var(--tanspot-white);
}

/* BUTTON COMPONENTS */
.thm-btn-sm {
  padding: 4px 14px 4px 18px !important;
  font-size: 0.825rem !important;
  gap: 6px !important;
  white-space: nowrap !important;
  height: 34px !important;
}

.thm-btn-sm span {
  width: 24px !important;
  height: 24px !important;
  font-size: 0.725rem !important;
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--tanspot-base);
  color: var(--tanspot-white);
  font-family: var(--tanspot-font-two);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 24px 8px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  justify-content: center;
}

.thm-btn span {
  width: 34px;
  height: 34px;
  background-color: var(--tanspot-black);
  color: var(--tanspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thm-btn:hover {
  background-color: var(--tanspot-black);
  color: var(--tanspot-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 46, 75, 0.3);
}

.thm-btn:hover span {
  background-color: var(--tanspot-base);
  color: var(--tanspot-white);
}

.thm-btn-green {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.thm-btn-green:hover {
  background-color: #1eb956;
}

/* HERO BANNER SECTION */
.hero-banner-section {
  position: relative;
  background: linear-gradient(135deg, #0e2e4b 0%, #153c61 100%);
  color: var(--tanspot-white);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.15) 0%, rgba(255, 49, 49, 0) 70%);
  pointer-events: none;
}

.hero-grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-subtitle-tag {
  color: var(--tanspot-base);
  font-family: var(--tanspot-font-two);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-h1-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--tanspot-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-h1-title span {
  color: var(--tanspot-base);
}

.hero-text-p {
  font-size: 1.05rem;
  color: #c9d8e6;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}

.stat-item-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tanspot-bdr-radius);
  padding: 12px 8px;
  text-align: center;
}

.stat-num {
  font-family: var(--tanspot-font-two);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tanspot-base);
}

.stat-lbl {
  font-size: 0.725rem;
  color: #b0c4de;
  font-weight: 600;
  text-transform: uppercase;
}

/* ENQUIRY FORM CARD */
.enquiry-form-card {
  background: var(--tanspot-white);
  color: var(--tanspot-black);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-top: 5px solid var(--tanspot-base);
}

.form-head-title {
  font-family: var(--tanspot-font-two);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tanspot-black);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.form-head-sub {
  font-size: 0.875rem;
  color: var(--tanspot-gray);
  margin-bottom: 1.15rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-control-input, .form-control-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--tanspot-bdr-color);
  border-radius: 8px;
  font-family: var(--tanspot-font);
  font-size: 0.9rem;
  color: var(--tanspot-black);
  background: var(--tanspot-white);
  transition: border-color 0.3s ease;
}

.form-control-input:focus, .form-control-select:focus {
  outline: none;
  border-color: var(--tanspot-base);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.15);
}

.trust-micro-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.725rem;
  color: #64748b;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 6px;
}

.trust-micro-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-micro-badges i {
  color: #10b981;
}

/* MODAL INQUIRY FORM POPUP */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 46, 75, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-card {
  background: var(--tanspot-white);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border-top: 6px solid var(--tanspot-base);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.quote-modal-overlay.active .quote-modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--tanspot-gray);
  cursor: pointer;
  transition: color 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: var(--tanspot-base);
}

/* STANDALONE PRE-FOOTER CTA SECTION */
.final-cta-section {
  background: var(--tanspot-white);
  color: var(--tanspot-black);
  padding: 4.5rem 0;
  text-align: center;
  border-top: 1px solid var(--tanspot-bdr-color);
}

.final-cta-h2 {
  color: var(--tanspot-black);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.final-cta-desc {
  color: var(--tanspot-gray);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.final-cta-contacts-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--tanspot-black);
  font-weight: 600;
  font-size: 0.95rem;
}

.final-cta-contacts-row a {
  color: var(--tanspot-black);
}

.final-cta-contacts-row a:hover {
  color: var(--tanspot-base);
}

.final-cta-tagline {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--tanspot-gray);
}

/* SECTION TITLES */
.section-wrapper {
  padding: 4.5rem 0;
}

.bg-gray-sec {
  background-color: var(--tanspot-primary);
}

.site-section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.tagline-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tagline-text {
  font-family: var(--tanspot-font-two);
  color: var(--tanspot-base);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.tagline-line {
  width: 35px;
  border-top: 2px dashed var(--tanspot-base);
}

.sec-h2-title {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--tanspot-black);
  margin-bottom: 0.75rem;
}

.sec-h2-title span {
  color: var(--tanspot-base);
}

.sec-p-desc {
  font-size: 1rem;
  color: var(--tanspot-gray);
}

/* PITFALLS SECTION */
.pitfalls-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pitfall-box-card {
  background: var(--tanspot-white);
  border-radius: var(--tanspot-bdr-radius);
  padding: 1.6rem;
  border-left: 4px solid var(--tanspot-base);
  box-shadow: var(--shadow-box);
  transition: transform 0.3s ease;
}

.pitfall-box-card:hover {
  transform: translateY(-4px);
}

.pitfall-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tanspot-black);
  margin-bottom: 0.5rem;
}

/* SERVICES GRID */
.services-card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item-card {
  background: var(--tanspot-white);
  border-radius: var(--tanspot-bdr-radius);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-content-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-h3-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tanspot-black);
  margin-bottom: 0.75rem;
}

.service-p-text {
  font-size: 0.925rem;
  color: var(--tanspot-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* HOW IT WORKS / STEPS */
.steps-flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step-box-item {
  background: var(--tanspot-white);
  border-radius: var(--tanspot-bdr-radius);
  padding: 1.6rem 1.25rem;
  box-shadow: var(--shadow-box);
  text-align: center;
  border-bottom: 3px solid var(--tanspot-base);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  background: var(--tanspot-black);
  color: var(--tanspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tanspot-font-two);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-box-item:nth-child(even) .step-num-badge {
  background: var(--tanspot-base);
}

/* PRICING TABLES */
.pricing-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-pill-btn {
  padding: 9px 22px;
  font-family: var(--tanspot-font-two);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--tanspot-white);
  border: 2px solid var(--tanspot-bdr-color);
  border-radius: 30px;
  color: var(--tanspot-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-pill-btn.active {
  background: var(--tanspot-base);
  color: var(--tanspot-white);
  border-color: var(--tanspot-base);
  box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.table-card-wrapper {
  background: var(--tanspot-white);
  border-radius: var(--tanspot-bdr-radius);
  box-shadow: var(--shadow-box);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

.official-price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.official-price-table th {
  background: var(--tanspot-black);
  color: var(--tanspot-white);
  font-family: var(--tanspot-font-two);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 12px 16px;
  text-transform: uppercase;
}

.official-price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--tanspot-bdr-color);
  font-size: 0.9rem;
  color: var(--tanspot-gray);
}

.official-price-table tbody tr:hover {
  background-color: var(--tanspot-primary);
}

.official-price-table td:first-child {
  font-weight: 700;
  color: var(--tanspot-black);
}

/* REVIEWS */
.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.review-card-box {
  background: var(--tanspot-white);
  border-radius: var(--tanspot-bdr-radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-box);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-comment {
  font-size: 0.925rem;
  color: var(--tanspot-gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--tanspot-bdr-color);
  padding-top: 1rem;
}

.author-img-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-title-name {
  font-family: var(--tanspot-font-two);
  font-weight: 700;
  font-size: 1rem;
  color: var(--tanspot-black);
}

.author-role-subtitle {
  font-size: 0.775rem;
  color: var(--tanspot-base);
  font-weight: 600;
}

/* FAQ ACCORDION */
.faq-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card-item {
  background: var(--tanspot-white);
  border: 1px solid var(--tanspot-bdr-color);
  border-radius: var(--tanspot-bdr-radius);
  overflow: hidden;
  box-shadow: var(--shadow-box);
}

.faq-trigger-btn {
  width: 100%;
  padding: 1.15rem 1.4rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--tanspot-font-two);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tanspot-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-trigger-btn:hover {
  color: var(--tanspot-base);
}

.faq-body-text {
  padding: 0 1.4rem 1.15rem;
  color: var(--tanspot-gray);
  font-size: 0.925rem;
  line-height: 1.65;
  display: none;
}

.faq-card-item.active .faq-body-text {
  display: block;
}

/* OFFICIAL MAIN FOOTER */
.official-main-footer {
  background: var(--tanspot-black);
  color: #a0b3c6;
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  font-family: var(--tanspot-font-two);
  color: var(--tanspot-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  color: #a0b3c6;
}

.footer-nav-list a:hover {
  color: var(--tanspot-base);
}

.footer-copyright-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: var(--tanspot-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   PIXEL-PERFECT MOBILE RESPONSIVE MEDIA QUERIES (<768px & <480px)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-left-content {
    text-align: center;
  }
  .hero-subtitle-tag {
    justify-content: center;
  }
  .hero-stats-row {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hide Top Header Extra Info on Mobile */
  .top-right-meta, .gst-top-item {
    display: none;
  }
  
  .top-contacts {
    justify-content: center;
    width: 100%;
    font-size: 0.75rem;
    gap: 12px;
  }

  .main-menu-area {
    width: 100%;
  }

  .nav-wrapper {
    height: 54px;
    padding: 0 10px;
  }

  /* Compact Shorter Logo on Mobile View */
  .brand-logo-link {
    max-width: 48%;
  }

  .brand-logo-img {
    max-height: 22px;
    width: auto;
    object-fit: contain;
  }

  .nav-right-container {
    gap: 6px;
  }

  .nav-call-widget {
    gap: 6px;
  }

  .desktop-only, .vendor-btn-desktop {
    display: none !important;
  }

  /* Compact Mobile Get Quotes Button */
  .open-quote-modal-btn.thm-btn-sm {
    padding: 3px 8px !important;
    font-size: 0.7rem !important;
    height: 30px !important;
    border-radius: 20px !important;
  }

  .open-quote-modal-btn.thm-btn-sm span {
    width: 18px !important;
    height: 18px !important;
    font-size: 0.6rem !important;
  }

  /* Clean Mobile Hamburger Icon */
  .mobile-menu-toggle {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    background: var(--tanspot-primary);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    font-size: 1rem !important;
    flex-shrink: 0;
  }

  /* Smooth Dropdown Navigation Drawer for Mobile */
  .main-nav-links {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    background: var(--tanspot-white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    border-top: 3px solid var(--tanspot-base);
    gap: 10px;
    z-index: 9999;
  }

  .main-nav-links.active {
    display: flex !important;
    animation: fadeInDown 0.3s ease forwards;
  }

  .main-nav-links a {
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--tanspot-bdr-color);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .main-nav-links a:last-child {
    border-bottom: none;
  }

  .mobile-nav-item {
    display: block;
  }

  .mobile-call-link {
    color: var(--tanspot-black) !important;
    font-weight: 700;
  }

  .mobile-vendor-link {
    color: var(--tanspot-base) !important;
    font-weight: 700;
  }

  /* Hero & Content Mobile Scaling */
  .hero-banner-section {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-h1-title {
    font-size: 1.85rem;
  }

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

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .sec-h2-title, .final-cta-h2 {
    font-size: 1.6rem;
  }

  .services-card-grid-4, .pitfalls-grid-3, .reviews-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .footer-copyright-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-notification-bar {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Extra Compact Logo Height for Small Mobile Screens */
  .brand-logo-img {
    max-height: 18px;
  }

  .open-quote-modal-btn.thm-btn-sm {
    padding: 2px 7px !important;
    font-size: 0.675rem !important;
    height: 28px !important;
  }

  .hero-h1-title {
    font-size: 1.5rem;
  }

  .hero-text-p {
    font-size: 0.9rem;
  }

  .enquiry-form-card, .quote-modal-card {
    padding: 1.15rem;
  }

  .form-head-title {
    font-size: 1.1rem;
  }

  .thm-btn {
    width: 100%;
    padding: 9px 16px;
    font-size: 0.875rem;
  }

  .tab-pill-btn {
    width: 100%;
    text-align: center;
    font-size: 0.825rem;
    padding: 8px 10px;
  }

  .sec-h2-title, .final-cta-h2 {
    font-size: 1.35rem;
  }

  .floating-wa-btn {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    bottom: 16px;
    right: 16px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}