@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0A2540;
  --secondary: #D4AF37;
  --secondary-hover: #E6C551;
  --dark-bg: #1A1D20;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --text-dark: #1E293B;
  --text-light: #F1F5F9;
  --gray-text: #64748B;
  --border: #E2E8F0;
  --max-width: 1200px;
  --padding: 80px 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--text-dark);
  background-color: var(--light-bg);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

section {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Button Utilities */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: var(--secondary-hover);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #0d3258;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background-color: #20ba56;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Icons */
.icon-svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Countdown Banner */
.sticky-timer-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  width: 100%;
  flex-wrap: wrap;
  transition: opacity 0.5s ease;
}

.sticky-timer-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.sticky-timer-text {
  font-size: 0.95rem;
}

.sticky-timer-clock {
  display: flex;
  gap: 5px;
  align-items: center;
}

.sticky-timer-block {
  background: var(--primary);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.sticky-timer-button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.sticky-timer-button:hover {
  background-color: #0d3258;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(10, 37, 64, 0.94), rgba(10, 37, 64, 0.74)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 20px;
  width: 100%;
}

.hero-outer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-top-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-headline {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-highlight {
  color: var(--secondary);
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-hook-box {
  background-color: rgba(10, 37, 64, 0.6);
  border-left: 4px solid var(--secondary);
  padding: 22px;
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-hook-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-hook-text {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  height: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 3px solid var(--secondary);
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  object-fit: cover;
  display: block;
}

.slideshow-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.35s ease;
}

.slideshow-dot.active {
  width: 20px;
  background-color: var(--secondary);
}

/* Mobile Slideshow */
.hero-mobile-slideshow {
  display: none;
}

/* TRUST SECTION */
.trust-section {
  background-color: var(--light-bg);
  padding: var(--padding);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  width: 100%;
}

.trust-container {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-left-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
}

.trust-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.trust-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
}

.trust-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-section-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: 3px solid var(--secondary);
}

.trust-right-box {
  background-color: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-right-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
}

.trust-icon-wrapper {
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

/* PROBLEMS / SOLUTIONS SECTION */
.ps-section {
  position: relative;
  padding: var(--padding);
  color: var(--white);
  display: flex;
  justify-content: center;
  background: linear-gradient(to right, rgba(26, 29, 32, 0.95), rgba(26, 29, 32, 0.85)), url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}

.ps-container {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.ps-box {
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-problem-box {
  background-color: rgba(255, 59, 48, 0.05);
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.ps-solution-box {
  background-color: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.ps-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.ps-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

/* SERVICES SECTION */
.services-section {
  background-color: var(--light-bg);
  padding: var(--padding);
  color: var(--text-dark);
  text-align: center;
  width: 100%;
}

.services-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 37, 64, 0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card-text {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.services-btn-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* WHY CHOOSE SECTION */
.why-choose-section {
  position: relative;
  padding: var(--padding);
  color: var(--white);
  background: linear-gradient(to right, rgba(10, 37, 64, 0.95), rgba(10, 37, 64, 0.85)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}

.why-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.why-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary);
}

.why-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.9;
}

.why-subtext {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 800px;
}

.why-body-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.why-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-section-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 3px solid var(--secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-card:hover {
  transform: scale(1.04);
  background-color: rgba(255,255,255,0.1);
}

.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-card-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.why-btn-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* ABOUT CONSULTANT SECTION */
.about-section {
  background-color: var(--white);
  padding: var(--padding);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-container {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-badge-main {
  font-size: 0.95rem;
}

.about-badge-sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
}

.about-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.about-meta-title {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.about-meta-rera {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: -10px;
  margin-bottom: 10px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-text);
}

.about-bullets-title {
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  position: relative;
  padding: var(--padding);
  color: var(--white);
  background: linear-gradient(to right, rgba(26, 29, 32, 0.9), rgba(26, 29, 32, 0.8)), url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  width: 100%;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  background-color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-btn-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* FAQ SECTION */
.faq-section {
  background-color: var(--white);
  padding: var(--padding);
  color: var(--text-dark);
  text-align: center;
  width: 100%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-header-text {
  text-align: left;
  flex: 1;
}

.faq-icon-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-answer {
  padding-top: 15px;
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.6;
  text-align: left;
}

/* FAQ Open State */
.faq-item.open .faq-header {
  color: var(--secondary);
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-item.open .faq-answer-container {
  max-height: 200px; /* arbitrary height to allow expansion */
  opacity: 1;
}

.faq-btn-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* CALL TO ACTION SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  color: var(--white);
  background: linear-gradient(to right, rgba(212, 175, 55, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1448630360428-65456885c650?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-btn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.cta-btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.cta-btn-contact:hover {
  transform: translateY(-3px);
  background-color: var(--text-light);
}

.cta-note {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 10px;
}

/* FOOTER */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 40px 20px 120px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  margin-bottom: 5px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  line-height: 1.6;
}

.footer-powered-by {
  color: var(--secondary);
  font-weight: 600;
}

.footer-powered-by:hover {
  color: var(--secondary-hover);
}

/* RESPONSIVE STYLING */
@media (max-width: 1024px) {
  .trust-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .trust-img-col {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }
  .trust-section-img {
    max-width: 60%;
  }
}

@media (max-width: 900px) {
  /* Global Alignment */
  h1, h2, h3, h4, h5, h6, p, span, a, li, div, section {
    text-align: center;
  }

  .hero-outer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-top-content {
    order: 1;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-btn-row {
    justify-content: center;
  }

  .hero-hook-box {
    order: 3;
    text-align: center;
  }

  .hero-img-col {
    display: none;
  }

  .hero-mobile-slideshow {
    display: flex;
    justify-content: center;
    order: 2;
    width: 100%;
  }

  .hero-mobile-img {
    width: 100%;
    max-width: 360px;
    height: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: cover;
    border: 3px solid rgba(212,175,55,0.7);
    display: block;
  }

  .why-body-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-img-col {
    order: -1;
  }

  .why-section-img {
    max-width: 90%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-list-item {
    justify-content: center;
  }

  .about-content-box .btn-secondary {
    align-self: center;
  }

  .ps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .trust-container {
    grid-template-columns: 1fr;
  }
  
  .trust-left-box {
    align-items: center;
  }

  .trust-section-img {
    max-width: 85%;
  }

  .trust-right-box {
    padding: 25px;
  }

  .trust-list-item {
    justify-content: center;
  }

  .why-card {
    padding: 15px;
  }

  .sticky-timer-container {
    gap: 8px;
    padding: 8px 15px;
    font-size: 0.75rem;
  }

  .sticky-timer-text {
    flex-basis: 100%;
    margin-bottom: 4px;
  }

  .sticky-timer-button {
    padding: 5px 12px;
    font-size: 0.7rem;
    margin-left: 0;
  }

  .cta-btn-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-contact, .btn-whatsapp {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .ps-box {
    padding: 25px;
  }
  .ps-title {
    font-size: 1.5rem;
  }
  .ps-list-item {
    font-size: 0.95rem;
  }
}
