/* ============================================================
   LOCATION PAGE CSS — CLEANED & DEDUPLICATED
   Synced with home.css design system
   ============================================================ */

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html { overflow-x: hidden; }
body { overflow-x: clip; }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: #222;
  color: #fff;
  font-size: 13px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 33px;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-sizing: border-box;
}

.top-strip a,
.top-strip span,
.top-strip p {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 33px;
  z-index: 1000;
  overflow: visible;
}

.logo { padding-left: 40px; }

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover { transform: scale(1.05); }

#navMenu { padding-right: 40px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar nav ul li a {
  position: relative;
  text-decoration: none;
  color: #222;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #7a1bb9;
  transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after { width: 100%; }

/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  border-top: 2px solid #7a1bb9;
  border-radius: 0 0 8px 8px;
  overflow: visible;
}

.dropdown-menu li { border-bottom: 1px solid #f5f5f5; }
.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
}

.dropdown-menu li a::after { display: none !important; }

.dropdown-menu li a:hover {
  background: #f8f0ff;
  color: #7a1bb9;
}

.dropdown-menu.show { display: block !important; }

.chevron {
  display: inline-block;
  transition: transform 0.25s ease;
}
.chevron.open { transform: rotate(180deg); }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  z-index: 1100;
}

/* ── FLOATING BUTTONS ── */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn { background-color: #25d366; }
.phone-btn    { background-color: #007bff; }

/* ── RESPONSIVE NAVBAR ── */
@media (max-width: 900px) {
  .top-strip { display: none; }
  .logo { padding-left: 0; }

  .navbar {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  #navMenu {
    display: none;
    width: 100%;
    background: #fff;
    order: 3;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    padding-right: 0;
    overflow: visible;
  }

  #navMenu.open { display: block; }

  #navMenu ul {
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
  }

  #navMenu ul li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }
  #navMenu ul li:last-child { border-bottom: none; }

  .navbar nav ul li a {
    padding: 13px 20px;
    font-size: 14px;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: #f9f4ff;
    padding-left: 0;
    min-width: unset;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 11px 20px 11px 36px;
    font-size: 13px;
    color: #555;
  }

  .dropdown-menu li a:hover {
    background: #f0e6ff;
    color: #7a1bb9;
  }
}

@media (max-width: 480px) {
  .navbar { padding: 10px 16px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.2));
  z-index: 2;
}

.hero-content {
  position: absolute;
  left: 8%;
  bottom: 22%;
  max-width: 650px;
  color: #fff;
  z-index: 3;
}

.hero-content.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #740183;
  margin-top: 14px;
  border-radius: 3px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 22px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.55);
}

.hero-content span { font-weight: 700; }

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #740183;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #5e0f7a;
  transform: translateY(-2px);
}

.hero-content h1,
.hero-content p,
.hero-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards;
}

.hero-content h1 { animation-delay: 0.3s; }
.hero-content p  { animation-delay: 0.7s; }
.hero-btn        { animation-delay: 1.1s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { height: 70vh; }
  .hero-content { left: 20px; right: 20px; bottom: 18%; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p  { font-size: 16px; }
}

/* ============================================================
   ACP INFO SECTION
   ============================================================ */
.acp-info {
  padding: 80px;
  background: #fff;
}

.acp-info .container {
  max-width: 1100px;
  margin: auto;
}

.acp-info h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

.acp-info h2 span {
  color: #9a1b3b;
  font-weight: 600;
}

.acp-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #9a1b3b;
  text-align: center;
}

.acp-info p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #5e0156;
  margin-bottom: 14px;
  text-align: left;
}

@media (max-width: 768px) {
  .acp-info { padding: 50px 20px; }
  .acp-info h2 { font-size: 24px; }
  .acp-info h3 { font-size: 16px; }
  .acp-info p  { font-size: 14px; }
}

/* ============================================================
   EXPERTISE SECTION
   ============================================================ */
.expertise-section {
  padding: 80px 20px;
  background: #fff;
}

.expertise-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.expertise-section .section-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.expertise-section .section-title span {
  color: #97019c;
  font-weight: 600;
}

.expertise-section .section-subtitle {
  margin: 10px 0 50px;
  font-size: 18px;
  color: #666;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.card-image {
  overflow: hidden;
  border-radius: 14px;
}

.card-image img,
.expertise-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.expertise-card:hover img { transform: scale(1.05); }

.expertise-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  color: #222;
}

.expertise-card h3 span { color: #97019c; }

.expertise-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.expertise-section .btn,
.expertise-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #6a1b9a;
  color: #ffd54f;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.expertise-section .btn:hover,
.expertise-btn:hover {
  background: #4a0f73;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-section .section-title { font-size: 28px; }
}

/* ============================================================
   ACP IMAGE + TEXT ROWS
   ============================================================ */
.acp-section {
  padding: 80px 20px;
  background: #f4f4f4;
}

.acp-container {
  max-width: 1200px;
  margin: auto;
}

.acp-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 80px;
  color: #222;
}

.acp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.acp-row.reverse { direction: rtl; }
.acp-row.reverse > * { direction: ltr; }

.acp-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.acp-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-left  { transform: translateX(-40px); }
.animate-right { transform: translateX(40px); }

.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .acp-row { grid-template-columns: 1fr; gap: 25px; }
  .acp-row.reverse { direction: ltr; }
  .acp-title { font-size: 24px; margin-bottom: 40px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #333;
  margin-bottom: 50px;
}

.section-title span {
  color: #610064;
  font-weight: 500;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: #fafafa;
  padding: 35px 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-card .icon {
  font-size: 42px;
  color: #610064;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.feature-card:hover .icon { transform: rotate(15deg) scale(1.15); }

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(106,27,185,0.15);
}

.section-desc {
  width: 90%;
  margin: auto;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title { font-size: 26px; }
}

/* ============================================================
   LOCATION TEXT BLOCK
   ============================================================ */
.location-about {
  padding: 80px 20px;
  background: #fff;
}

.location-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.location-title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
}

.location-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-text strong {
  color: #7f0683;
  font-weight: 600;
}

@media (max-width: 768px) {
  .location-about { padding: 50px 15px; }
  .location-title  { font-size: 26px; }
  .location-text   { font-size: 16px; }
}

/* ============================================================
   FAQ — OLD STYLE (Tirunelveli pages use பண்றது — வைத்திரு)
   ============================================================ */
.faq-section {
  padding: 90px 20px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #222;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  text-align: left;
  gap: 20px;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  padding-bottom: 15px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.animate-faq {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.animate-faq.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq-title    { font-size: 24px; }
  .faq-question { font-size: 16px; line-height: 1.5; }
  .faq-answer p { font-size: 14px; }
}

/* ============================================================
   FAQ — TRICHY STYLE
   ════════════════════════════════════════════════════════════
   இந்த 3 classes தான் முன்பு missing ஆனது:
   .section-wrap, .section-eyebrow, .section-heading
   இப்போது சேர்க்கப்பட்டுள்ளது ✅
   ============================================================ */

/* ✅ NEW — Section wrapper (Trichy page use பண்றது) */
.section-wrap {
  padding: 80px 32px;
}

/* ✅ NEW — "Common Questions" சிறிய label மேலே */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #860174;
  margin-bottom: 12px;
}

/* ✅ NEW — பெரிய heading "Frequently Asked Questions" */
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-heading span {
  color: #860174;
}

/* ✅ NEW — FAQ section-க்கான container */
.faq-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ✅ NEW — 2-column sidebar layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

/* ✅ NEW — Left sidebar paragraph */
.faq-sidebar p {
  font-size: 0.95rem;
  color: #666 !important;
  line-height: 1.8 !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

/* ✅ NEW — Purple contact box */
.faq-contact-box {
  background: #860174;
  border-radius: 18px;
  padding: 28px;
  color: #fff;
}
.faq-contact-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff !important;
}
.faq-contact-box p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem !important;
  margin-bottom: 16px !important;
  line-height: 1.6 !important;
}

/* ✅ NEW — Phone link inside purple box */
.faq-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.faq-phone:hover { background: rgba(255,255,255,0.30); }

/* ✅ NEW — Right side accordion flex column */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ✅ NEW — Bordered card style (faq-layout-க்குள் மட்டும்) */
.faq-layout .faq-item {
  border: 1.5px solid #e0d6e0 !important;
  border-bottom: 1.5px solid #e0d6e0 !important;
  border-radius: 10px !important;
  padding: 0 !important;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-layout .faq-item.active {
  border-color: #860174 !important;
}

/* ✅ NEW — Question button inside layout */
.faq-layout .faq-question {
  padding: 18px 20px !important;
  font-size: 0.93rem !important;
  font-weight: 600 !important;
}
.faq-layout .faq-item.active .faq-question {
  color: #860174 !important;
  background: #fdf5ff !important;
}

/* ✅ NEW — Circle + icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7f4f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: #860174;
  line-height: 1;
  transition: 0.35s ease;
}
.faq-layout .faq-item.active .faq-icon {
  background: #860174;
  color: #fff;
  transform: rotate(45deg);
}

/* ✅ NEW — Answer inside layout */
.faq-layout .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease !important;
  padding: 0 !important;
}
.faq-layout .faq-item.active .faq-answer {
  max-height: 300px !important;
}
.faq-layout .faq-answer p {
  padding: 4px 20px 18px !important;
  font-size: 0.90rem !important;
  color: #555 !important;
  line-height: 1.8 !important;
}

/* ✅ NEW — animate-up scroll animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { opacity: 0; }
.animate-up.visible {
  animation: fadeUp 0.7s ease forwards;
}

/* Mobile */
@media (max-width: 768px) {
  .section-wrap { padding: 56px 20px; }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   CONTACT / MAP
   ============================================================ */
.contact-pro {
  padding: 80px 20px;
  background: #faf8ff;
}

.contact-pro-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.contact-card {
  flex: 1;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  background: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.contact-pro.animate .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.map-card iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-card h3 {
  margin-bottom: 12px;
  color: #7f0683;
  font-size: 22px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card input,
.form-card textarea {
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-card textarea { resize: none; height: 70px; }

.form-card button {
  margin-top: 6px;
  padding: 12px;
  background: linear-gradient(135deg, #7a3df0, #720072);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-pro-wrapper { flex-direction: column; }
}

/* ============================================================
   SHARED SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active { opacity: 1; transform: translateY(0); }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(135deg, #570072, #440044);
  color: #fff;
  padding-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 20px;
  padding: 0;
}

.footer-col.brand h2 {
  font-size: 30px;
  line-height: 0.8;
}

.footer-col.brand h2 span {
  font-weight: 300;
  font-size: 18px;
}

.footer-col p {
  margin: 20px 0;
  color: #e6d9ff;
  line-height: 1.7;
}

.footer-btn {
  display: inline-block;
  background: #ffb300;
  color: #4b006e;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.footer-col h4 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 200;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffcc4d;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #e6d9ff;
  cursor: pointer;
  transition: 0.3s;
}
.footer-col ul li a {
  text-decoration: none;
  color: #e6d9ff;
}

.footer-col ul li:hover {
  color: #ffcc4d;
  transform: translateX(15px);
}

.footer-social {
  text-align: center;
  margin: 15px 0 15px;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc4d;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  color: #e6d9ff;
}

.footer-col h4 { text-align: left; }
.footer-col ul li::before { margin-top: 6px; }
.footer-brand { align-items: flex-start !important; text-align: left !important; }
.footer-brand .btn,
.footer-brand .social-icons { margin-left: 0; justify-content: flex-start; }

.Commercial-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #f2e9f7;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 25px; padding: 20px; }
  .footer-col.brand { grid-column: 1 / -1; text-align: center; }
  .footer-col.brand h2 { font-size: 24px; }
  .footer-col p { font-size: 13px; }
  .footer-col h4 { font-size: 15px; margin-bottom: 10px; }
  .footer-col ul li { font-size: 13px; margin-bottom: 8px; }
  .footer-col ul li:hover { transform: none; }
  .footer-social { padding: 10px; }
  .footer-bottom { font-size: 12px; padding: 12px 10px; }
}

@media (max-width: 420px) {
  .footer-container { grid-template-columns: 1fr; padding: 15px; }
  .footer-col.brand { grid-column: 1; }
  .footer-col h4 { font-size: 14px; }
}

section.Commercial-section .Commercial-content p a,
section.Commercial-section .Commercial-content p a:link,
section.Commercial-section .Commercial-content p a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 500;
}

section.Commercial-section .Commercial-content p a:hover,
section.Commercial-section .Commercial-content p a:active {
  color: #ffd24d !important;
  text-decoration: none !important;
}