/* --- 1. Variables & Reset --- */
:root {
  --primary-dark: #0f172a; /* Deep Navy */
  --secondary-dark: #1e293b;
  --gold-main: #d4af37;
  --gold-light: #f3cf55;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa8412 100%);
  --text-dark: #334155;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --whatsapp-green: #0cab04;
  --white: #fff;
  --transition: all 0.4s ease;
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- 2. Typography Utilities --- */
.section-padding {
  padding: 80px 0;
}

.bg-light-soft {
  background-color: var(--bg-light);
}

.bg-dark-navy {
  background-color: var(--primary-dark);
}

.text-gold {
  color: var(--gold-main) !important;
}

.sub-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-main);
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}
.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--gold-main);
}

.section-heading {
  font-size: 42px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }
}

.section-desc {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* --- 3. Navbar --- */
.navbar {
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #fff; /* White initially for dark hero */
  position: relative;
}
.navbar .navbar-brand img {
  position: absolute;
  left: 0;
  top: -20px;
  max-width: 80px;
}
.navbar .navbar-brand .gold-text {
  color: var(--gold-light);
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 14px;
  margin: 0 10px;
}
.navbar .nav-link:hover {
  color: var(--gold-light) !important;
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

li.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-glow {
  background: var(--gold-gradient);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.6);
  color: #fff;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--gold-main);
}

/* --- 4. Hero Section --- */
.hero-section {
  position: relative;
  background-color: var(--primary-dark);
  overflow: hidden;
  color: #fff;
}
.hero-section .hero-bg-overlay {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  z-index: 1;
}
.hero-section .badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--gold-light);
}
.hero-section .hero-heading {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}
.hero-section .hero-heading .text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .hero-section .hero-heading {
    font-size: 42px;
  }
}
.hero-section .hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
}

.left-inner-content {
  padding-top: 5rem;
}
@media (max-width: 590px) {
  .left-inner-content {
    padding-top: 7rem;
  }
}

.btn-primary-custom {
  background: var(--gold-gradient);
  color: #fff;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 590px) {
  .btn-primary-custom {
    padding: 12px 14px;
  }
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 590px) {
  .btn-outline-custom {
    padding: 12px 14px;
  }
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary-dark);
}

.trust-indicators {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.trust-indicators .t-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.trust-indicators .t-item i {
  color: var(--gold-main);
  margin-right: 8px;
}

/* hero-card-img Card Animation */
.hero-card-img {
  padding-top: 5rem;
}
/* --- 5. Feature Cards (Grid) --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.feature-card:hover .icon-circle {
  background: var(--gold-main);
  color: #fff;
}
.feature-card .icon-circle {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-main);
  margin-bottom: 25px;
  transition: 0.3s;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- 6. Services List --- */
.service-list-modern .s-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.service-list-modern .s-item .s-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: rgba(19, 19, 19, 0.658);
  margin-right: 20px;
  line-height: 1;
}
.service-list-modern .s-item .s-text h5 {
  font-size: 18px;
  margin-bottom: 5px;
}
.service-list-modern .s-item .s-text p {
  font-size: 15px;
  margin: 0;
  color: var(--text-light);
}

.link-arrow {
  color: var(--primary-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.link-arrow:hover {
  gap: 15px;
  color: var(--gold-main);
}

/* Image Stack */
.image-stack {
  position: relative;
}
.image-stack .img-main {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.image-stack .img-card-overlap {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .image-stack .img-card-overlap {
    position: static;
    margin-top: -20px;
  }
}

/* --- 7. Why Us (Dark Strip) --- */
.border-end-custom {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .border-end-custom {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }
}

/* --- 8. Timeline (How it works) --- */
.timeline-container {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }
}

.step-col {
  position: relative;
  z-index: 2;
}
.step-col .step-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--gold-main);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: 0 0 0 10px #fff; /* fake gap */
}

/* --- (Keep Variables & Previous Styles) --- */
/* ... */
/* --- [NEW] Products Section Styling --- */
.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-main);
  transform: translateY(-5px);
}
.product-card:hover .p-icon {
  color: #fff;
  background: var(--gold-main);
}
.product-card .p-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-size: 20px;
  transition: 0.3s;
}
.product-card .p-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.product-card .p-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* Why Us - Light Version border */
.border-end-custom-light {
  border-right: 1px solid #eee;
}
@media (max-width: 767px) {
  .border-end-custom-light {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
}

.why-choose-us-section .stat-box h5 {
  color: #fff;
}
.why-choose-us-section .stat-box p {
  color: #fff;
}

/* --- [NEW] Testimonial Slider Styling --- */
/* Background decoration to add depth */
.bg-decor-circle {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05); /* Glass effect */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 16px;
  margin: 10px; /* Spacing for shadow */
  transition: all 0.3s ease;
  color: var(--bg-light);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.testimonial-card:hover .quote-icon {
  color: #fff;
  transform: scale(1.1);
}
.testimonial-card .quote-icon {
  font-size: 32px;
  color: var(--gold-main);
  margin-bottom: 20px;
  transition: 0.3s;
}
.testimonial-card .t-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff; /* Light gray text */
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  min-height: 100px; /* Uniform height */
}
.testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.testimonial-card .t-author .t-info h5 {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}
.testimonial-card .t-author .t-info span {
  font-size: 13px;
  color: var(--gold-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Owl Carousel Customization (Gold Theme) --- */
.testimonial-carousel {
  /* Dots Styling */
  /* Nav Arrows Styling (Optional) */
}
.testimonial-carousel .owl-dots {
  margin-top: 40px;
  text-align: center;
}
.testimonial-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonial-carousel .owl-dots .owl-dot.active span, .testimonial-carousel .owl-dots .owl-dot:hover span {
  background: var(--gold-main);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.testimonial-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none; /* Let clicks pass through to container */
}
.testimonial-carousel .owl-nav button.owl-prev, .testimonial-carousel .owl-nav button.owl-next {
  position: absolute;
  pointer-events: auto; /* Re-enable clicks */
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  color: #fff !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.testimonial-carousel .owl-nav button.owl-prev:hover, .testimonial-carousel .owl-nav button.owl-next:hover {
  background: var(--gold-main) !important;
  border-color: var(--gold-main) !important;
  color: #000 !important;
}
.testimonial-carousel .owl-nav button.owl-prev {
  left: -60px;
}
.testimonial-carousel .owl-nav button.owl-next {
  right: -60px;
}
@media (max-width: 1200px) {
  .testimonial-carousel .owl-nav {
    display: block;
  }
  .testimonial-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
  .testimonial-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}

/* --- [UPDATED] Footer 4-Col Styling --- */
.footer-custom {
  background: #0b0f19;
  color: #fff;
  padding: 80px 0 30px;
  border-top: 4px solid var(--gold-main);
  font-size: 15px;
}
.footer-custom p {
  color: #94a3b8;
}
.footer-custom .footer-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}
.footer-custom .footer-brand .text-gold {
  color: var(--gold-main);
}
.footer-custom .footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.footer-custom .footer-links li {
  margin-bottom: 12px;
}
.footer-custom .footer-links li a {
  color: #94a3b8;
  transition: 0.2s;
}
.footer-custom .footer-links li a:hover {
  color: var(--gold-main);
  padding-left: 5px;
}
.footer-custom .contact-list {
  list-style: none;
  padding: 0;
}
.footer-custom .contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin-bottom: 15px;
}
.footer-custom .contact-list li a {
  color: #94a3b8;
}
.footer-custom .contact-list li i {
  font-size: 14px;
}
.footer-custom .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.footer-custom .social-links a:hover {
  background: var(--gold-main);
  transform: translateY(-3px);
}
.footer-custom .footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-custom .footer-bottom .disclaimer {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-custom .footer-bottom .copyright {
  font-size: 13px;
  color: #94a3b8;
}

@media only screen and (max-width: 1366px) {
  .hero-section .hero-heading {
    font-size: 50px;
  }
}
/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */
/* --- Page Hero --- */
.page-hero {
  padding-top: 129px;
  padding-bottom: 114px;
  background: url("img/breadss.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-top: 0;
}
.page-hero .badge-pill {
  color: var(--gold-main);
}
.page-hero .bred-list {
  color: var(--bg-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85); /* Dark Blue Overlay */
  z-index: 1;
}

/* --- Mission Section --- */
.mission-img-box {
  position: relative;
}
.mission-img-box .mission-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .mission-img-box .mission-badge {
    right: 0;
    bottom: -10px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.mission-text-box {
  border-left: 4px solid var(--gold-main);
  padding-left: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .mission-text-box .lead {
    font-size: 17px;
  }
}

/* --- Philosophy Cards --- */
.philosophy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}
.philosophy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-main);
  transform: translateY(-5px);
}
.philosophy-card:hover .p-icon {
  color: #fff;
  transform: scale(1.1);
}
.philosophy-card .p-icon {
  font-size: 36px;
  color: var(--gold-main);
  margin-bottom: 20px;
  transition: 0.3s;
}
.philosophy-card h4 {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

/* --- Client Experience List --- */
.experience-list {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.experience-list .exp-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.experience-list .exp-item:last-child {
  margin-bottom: 0;
}
.experience-list .exp-item .exp-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  color: var(--gold-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.experience-list .exp-item .exp-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--primary-dark);
}
.experience-list .exp-item .exp-content p {
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

/* --- Who We Serve (Persona Cards) --- */
.persona-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.persona-card:hover {
  transform: translateY(-5px);
}
.persona-card:hover .persona-img {
  transform: scale(1.1);
}
.persona-card:hover .persona-content {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.6));
}
.persona-card .persona-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
}
.persona-card .persona-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
  color: #fff;
  transition: 0.3s;
}
.persona-card .persona-content h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}
.persona-card .persona-content p {
  color: var(--gold-light);
  font-size: 13px;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Compliance Box --- */
.compliance-box {
  background: #fff;
  border: 1px dashed #cbd5e1;
  padding: 30px;
  border-radius: 8px;
}
.compliance-box .compliance-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.compliance-box .compliance-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.compliance-box .compliance-list li:last-child {
  border-bottom: none;
}
.compliance-box .compliance-list li span, .compliance-box .compliance-list li a {
  color: var(--text-light);
  font-weight: 500;
}

/* =========================================
   STYLISH TESTIMONIALS CSS
   ========================================= */
/* =========================================
BALANCED LIGHT THEME TESTIMONIALS
========================================= */
/* --- 1. Utilities for Light Mode --- */
.bg-light-balance {
  background-color: #ffffff;
}

.text-dark-navy {
  color: var(--primary-dark);
}

.subheading-light {
  display: inline-block;
  color: var(--gold-main);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.1); /* Very light gold bg */
  padding: 6px 18px;
  border-radius: 50px;
}

/* --- 2. Navbar Adjustment --- */
/* Ensure Navbar is visible on light bg if needed, 
   but we used a dark nav for consistency. 
   Adding a class just in case you want to force dark background immediately. */
.nav-dark-mode {
  background: var(--primary-dark);
}

.nav-dark-mode.scrolled {
  background: rgba(15, 23, 42, 0.95);
}

/* --- 3. Light Hero --- */
.page-hero-light {
  padding-top: 140px; /* Space for fixed navbar */
  padding-bottom: 80px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  position: relative;
  /* Optional subtle pattern */
}
.page-hero-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: 0;
}

/* --- 4. Clean Testimonial Cards --- */
.testimonial-card-clean {
  background: #ffffff;
  border: 1px solid #e2e8f0; /* Very light gray border */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Tailwind-ish subtle shadow */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* Top Accent Line */
}
@media (max-width: 768px) {
  .testimonial-card-clean {
    padding: 15px;
  }
}
.testimonial-card-clean::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testimonial-card-clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}
.testimonial-card-clean:hover::before {
  transform: scaleX(1);
}
.testimonial-card-clean:hover .card-icon {
  color: var(--primary-dark);
  transform: scale(1.1);
}
.testimonial-card-clean .card-icon {
  font-size: 32px;
  color: var(--gold-main); /* Gold icon */
  margin-bottom: 25px;
  transition: 0.3s;
}
.testimonial-card-clean .card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}
.testimonial-card-clean .card-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569; /* Slate 600 - Readable dark gray */
  line-height: 1.7;
  margin-bottom: 30px;
}
.testimonial-card-clean .card-footer-custom {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}
.testimonial-card-clean .card-footer-custom .author-details {
  display: flex;
  flex-direction: column;
}
.testimonial-card-clean .card-footer-custom .author-details .author-role {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}
.testimonial-card-clean .card-footer-custom .author-details .author-loc {
  font-size: 13px;
  color: var(--gold-main); /* Gold accent for location */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 2px;
}

/* =========================================
   SERVICES LISTING STYLES
   ========================================= */
.service-card-detailed {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #f1f5f9;
}
.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card-detailed .s-img {
  height: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
  /* Overlay for image */
}
.service-card-detailed .s-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.service-card-detailed .s-content {
  padding: 50px;
}
.service-card-detailed .s-content a {
  color: #000;
}
@media (max-width: 991px) {
  .service-card-detailed .s-content {
    padding: 30px;
  }
}
.service-card-detailed .s-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-main);
  margin-bottom: 20px;
  transition: 0.3s;
}
.service-card-detailed:hover .s-icon {
  background: var(--gold-main);
  color: #fff;
}
.service-card-detailed h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}
.service-card-detailed .s-desc {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.7;
}
.service-card-detailed .s-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 576px) {
  .service-card-detailed .s-features {
    grid-template-columns: 1fr;
  }
}
.service-card-detailed .s-features li {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card-detailed .s-features li i {
  color: var(--gold-main);
  font-size: 12px;
}

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.btn-link-gold:hover {
  color: var(--gold-main);
  gap: 15px;
}

/* =========================================
   SERVICE DETAILS PAGE CSS
   ========================================= */
/* --- Left Sidebar --- */
.service-sidebar-wrapper {
  position: sticky;
}

.service-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}
.service-sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  color: var(--primary-dark);
}
.service-sidebar .service-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-sidebar .service-nav li {
  margin-bottom: 10px;
}
.service-sidebar .service-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #64748b;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 15px;
}
.service-sidebar .service-nav li a i {
  margin-right: 10px;
  font-size: 12px;
  opacity: 0.5;
}
.service-sidebar .service-nav li a:hover, .service-sidebar .service-nav li a.active {
  background: rgba(212, 175, 55, 0.1); /* Light Gold */
  color: var(--primary-dark);
  padding-left: 20px;
}
.service-sidebar .service-nav li a:hover i, .service-sidebar .service-nav li a.active i {
  color: var(--gold-main);
  opacity: 1;
}

/* Query Box (Sidebar) */
.query-box {
  background: var(--primary-dark);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Decor */
}
.query-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}
.query-box .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-size: 24px;
}

/* --- Right Content Styles --- */
/* Feature Items Card */
.feature-item-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  height: 100%;
  transition: 0.2s;
}
.feature-item-card:hover {
  border-color: var(--gold-main);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.feature-item-card span {
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

/* Audience Box */
.audience-box {
  background: #fdfbf7; /* Very light warm bg */
  border-left: 4px solid var(--gold-main);
  padding: 40px;
  border-radius: 0 12px 12px 0;
}
.audience-box .audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.audience-box .audience-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--primary-dark);
}
.audience-box .audience-list li::before {
  content: "\f00c"; /* FontAwesome Check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold-main);
}
.audience-box .audience-list li:last-child {
  margin-bottom: 0;
}

/* Detail Process List */
.detail-process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.detail-process-list .d-step {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}
.detail-process-list .d-step:hover {
  transform: translateX(10px);
  border-color: var(--gold-main);
}
.detail-process-list .d-step:hover .step-num {
  background: var(--gold-main);
  color: #fff;
}
.detail-process-list .d-step .step-num {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}
.detail-process-list .d-step .step-txt h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* =========================================
   PRODUCT LISTING PAGE STYLES
   ========================================= */
.product-listing-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  /* Top Gold Line on Hover */
}
.product-listing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.product-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.product-listing-card:hover::before {
  transform: scaleX(1);
}
.product-listing-card:hover .card-header-icon {
  background: var(--gold-main);
  color: #fff;
  border-color: var(--gold-main);
}
.product-listing-card .card-header-icon {
  width: 60px;
  height: 60px;
  margin: 30px 30px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-main);
  transition: 0.3s;
}
.product-listing-card .card-body-custom {
  padding: 20px 30px;
  flex-grow: 1;
}
.product-listing-card .card-body-custom h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.product-listing-card .card-body-custom .p-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-listing-card .card-body-custom .p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-listing-card .card-body-custom .p-tags span {
  font-size: 12px;
  background: #f1f5f9;
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.product-listing-card .card-body-custom .p-tags span i {
  color: var(--gold-main);
  margin-right: 5px;
  font-size: 10px;
}
.product-listing-card .card-footer-custom {
  padding: 20px 30px;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.btn-text-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-text-link:hover {
  color: var(--gold-main);
  gap: 15px;
}

/* --- Risk Disclaimer Box --- */
.risk-disclaimer-box {
  background: #fff5f5; /* Very light red */
  border: 1px solid #fed7d7;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #c53030; /* Darker red text */
  font-size: 15px;
}
.risk-disclaimer-box i {
  font-size: 20px;
  flex-shrink: 0;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  flex-shrink: 0;
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.contact-form .form-control {
  border: 1px solid #e2e8f0;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 6px;
  transition: 0.3s;
  background: #f8fafc;
}
.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--gold-main);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.contact-form .text-xs {
  font-size: 12px;
}

.map-section iframe {
  filter: grayscale(100%) invert(92%) contrast(83%); /* Custom gray map style */
}

/* =========================================
   BLOG PAGE STYLES
   ========================================= */
/* --- Blog Filter Pills --- */
.blog-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.blog-filters a {
  padding: 10px 25px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.blog-filters a:hover, .blog-filters a.active {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* --- Standard Blog Card --- */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-card:hover .read-more {
  color: var(--gold-main);
  gap: 10px;
}
.blog-card .blog-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card .blog-img .category-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-card .blog-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-body a {
  color: var(--primary-dark);
}
.blog-card .blog-body .meta {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}
.blog-card .blog-body h4 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.blog-card .blog-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card .blog-body .read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

/* --- Pagination --- */
.pagination .page-item {
  margin: 0 5px;
}
.pagination .page-item .page-link {
  border: none;
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  background: transparent;
}
.pagination .page-item .page-link:hover {
  background: #e2e8f0;
}
.pagination .page-item.active .page-link {
  background: var(--gold-main);
  color: #fff;
}
.pagination .page-item.disabled .page-link {
  color: #cbd5e1;
}

/* =========================================
   BLOG DETAIL PAGE STYLES
   ========================================= */
/* --- Badge Utility --- */
.bg-gold {
  background-color: var(--gold-main);
}

/* --- Article Body Typography --- */
.article-body {
  font-family: var(--font-body);
  color: #334155;
  /* Stylish Blockquote */
  /* Custom List */
}
.article-body p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.article-body h3 {
  font-size: 26px;
  color: var(--primary-dark);
  font-weight: 700;
}
.article-body .blockquote-custom {
  border-left: 4px solid var(--gold-main);
  background: #fdfbf7;
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 10px 10px 0;
  position: relative;
}
.article-body .blockquote-custom i {
  font-size: 24px;
  color: var(--gold-main);
  opacity: 0.5;
  margin-bottom: 15px;
  display: block;
}
.article-body .blockquote-custom p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.article-body .blockquote-custom cite {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}
.article-body .article-list {
  list-style: none;
  padding: 0;
}
.article-body .article-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}
.article-body .article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--gold-main);
  border-radius: 50%;
}

/* --- Sidebar Widgets --- */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.sidebar-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}
.sidebar-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-main);
}

/* --- Recent Posts Item --- */
.recent-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: 0.2s;
}
.recent-post-item:hover {
  transform: translateX(5px);
}
.recent-post-item:hover h6 {
  color: var(--gold-main);
}
.recent-post-item .rp-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.recent-post-item .rp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-post-item .rp-content h6 {
  font-size: 15px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recent-post-item .rp-content .date {
  font-size: 12px;
  color: #94a3b8;
}

section {
  overflow: hidden;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Active State */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-content {
  background: #111;
  color: #fff;
  max-width: 400px;
  width: 90%;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Form */
.popup-content h3 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  outline: none;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #aaa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.news-letter a {
  color: var(--gold-main);
  text-decoration: none;
}
.news-letter .tnp-field label {
  color: var(--bg-light);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #aa8412 100%);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--gold-main);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #ff8126;
}

.contact-page form p {
  margin-bottom: 0px;
}
.contact-page textarea {
  height: 112px;
}

@media only screen and (max-width: 991px) {
  .navbar-nav.align-items-center {
    background-color: #161616;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section .hero-heading {
    font-size: 30px;
  }
  .trust-indicators .t-item {
    display: flex;
    flex-direction: column;
  }
  .article-body p {
    font-size: 16px;
  }
  .article-body .blockquote-custom {
    padding: 15px;
    margin: 14px 0;
  }
  .section-padding {
    padding: 50px 0;
  }
  .footer-custom .footer-bottom {
    margin-top: 40px;
  }
  .section-heading {
    font-size: 29px;
  }
}
/* ================= Floating Action Buttons ================= */
.whatsapp-float,
.call-float {
  position: fixed;
  left: 12px;
  z-index: 999;
  margin-left: 5px;
}
.whatsapp-float a,
.call-float a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}
.whatsapp-float i,
.call-float i {
  font-size: 34px;
  color: var(--bg-light);
}

/* ================= WhatsApp Button ================= */
.whatsapp-float {
  bottom: 120px;
}
.whatsapp-float a {
  background: var(--whatsapp-green);
  border-radius: 30px;
  padding: 9px;
  color: var(--whatsapp-green);
  overflow: hidden;
}
.whatsapp-float a span {
  width: 0;
  opacity: 0;
  font-size: 18px;
  margin: 2px;
  white-space: nowrap;
  color: var(--bg-light);
  transition: var(--transition);
}
.whatsapp-float a:hover span {
  width: 110px;
  opacity: 1;
  padding-right: 16px;
}

/* ================= Call Button ================= */
.call-float {
  bottom: 50px;
  background-color: var(--gold-main);
  border-radius: 50%;
  padding: 5px;
}
.call-float a {
  border-radius: 50%;
  padding: 6px;
}

/* ================= Mobile View ================= */
@media (max-width: 500px) {
  .whatsapp-float,
  .call-float {
    left: 12px;
  }
  .whatsapp-float {
    bottom: 80px;
  }
  .call-float {
    bottom: 15px;
  }
}/*# sourceMappingURL=style.css.map */