html {
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--accent-orange);
  color: #ffffff;
}

:root {
  --primary-teal: #573d1c;
  --accent-orange: #573d1c;
  --accent-gold: #3d2b14;
  /* A slightly darker shade of brown for depth */
  --deep-bg: #573d1c;
  --text-color: #000;
  --vibrant-gradient: #573d1c;
  --orange-solid: #573d1c;
  --font-family: "DM Sans", sans-serif;
  --heading-font: Georgia, serif;

  /* Premium Shadow System */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --shadow-premium:
    0 20px 50px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.15);

  --transition-premium: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Micro-Animation Keyframes */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 61, 28, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(87, 61, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(87, 61, 28, 0);
  }
}

@keyframes pulse-premium {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 61, 28, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(87, 61, 28, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(87, 61, 28, 0.4);
  }
}

@keyframes shine {
  from {
    left: -100%;
  }

  to {
    left: 100%;
  }
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
}

a {
  text-decoration: none !important;
}

/* Font Awesome Icon Safety Fix */
.fa,
.fas,
.fa-solid,
.fa-regular,
.fab,
.far,
.fa-brands {
  font-family: inherit;
  /* Fallback to inherit but FA usually overrides this */
  font-style: normal;
  transition: var(--transition-premium);
}

.fa-solid,
.fas {
  font-weight: 900 !important;
}

.fa-regular,
.far {
  font-weight: 400 !important;
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
}

.fa-solid,
.fas,
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-style: normal !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
  /* Tighter, more modern tracking */
  line-height: 1.2;
}

h1.fw-bold,
h2.fw-bold,
h3.fw-bold,
h4.fw-bold,
h5.fw-bold,
h6.fw-bold {
  font-weight: 800;
}

/* Ensure Icons are not affected by heading font-family inheritance */
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
  font-family: "Font Awesome 6 Free" !important;
}

h1 i.fa-brands,
h2 i.fa-brands,
h3 i.fa-brands,
h4 i.fa-brands,
h5 i.fa-brands,
h6 i.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}

a,
p {
  font-family: var(--font-family);
}

/* Disclaimer Bar */
.disclaimer-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-bar marquee {
  vertical-align: middle;
}

.disclaimer-bar strong {
  color: #ffffff;
  font-weight: 700;
}

/* Top Bar Styles */
.top-bar {
  background-color: var(--deep-bg);
  color: #e0e0e0;
  font-size: 12px;
  padding: 8px 0;
}

/* Global star icon color */
.fa-star {
  color: #573d1c !important;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #f5d76e;
}

.top-bar .separator {
  margin: 0 20px;
  color: #555;
  font-size: 10px;
}

.btn-book {
  background-color: #f5d76e !important;
  color: #573d1c !important;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-premium);
  animation: pulse-premium 2s infinite ease-in-out;
}

.btn-book:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: #e5c75e;
  color: #573d1c;
  box-shadow: 0 10px 20px rgba(87, 61, 28, 0.2);
}

/* Main Navbar Styles */
.sticky-top-disclaimer {
  position: sticky;
  top: 0;
  z-index: 5;
}

.sticky-header-nav {
  position: sticky;
  top: 31px; /* Height of disclaimer-bar */
  z-index: 5;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar-brand.logo-brand-mark {
  display: inline-flex;
  flex-direction: column;
  transition: var(--transition-premium);
  padding: 0;
}

.logo-brand-mark .brand-top {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--primary-teal);
  font-weight: 500;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.logo-brand-mark .brand-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
}

.logo-brand-mark .brand-main i {
  color: var(--accent-orange);
  font-size: 18px;
}

.logo-brand-mark .brand-main span {
  color: var(--accent-orange);
}

.logo-brand-mark:hover {
  transform: scale(1.02);
}

.navbar-brand img {
  max-height: 80px;
}

.main-nav .nav-link {
  color: #000;
  font-weight: 300;
  font-size: 13px;
  padding: 8px 15px !important;
  transition: color 0.3s ease;
}



.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--accent-orange);
}

.main-nav .dropdown-toggle::after {
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  vertical-align: middle;
  margin-left: 0.3em;
}

.right-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.right-actions .phone-link {
  color: #000;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.right-actions .phone-link i {
  color: #000;
}

.right-actions .phone-link:hover,
.right-actions .phone-link:hover i {
  color: var(--accent-orange);
}

.btn-gradient-orange {
  background: #f5d76e;
  color: #573d1c;
  border: 1px solid #f5d76e;
  padding: 8px 17px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-premium);
  box-shadow: var(--shadow-md);
  animation: pulse-premium 2s infinite ease-in-out;
}

/* Shine effect removed as per no-gradient policy */

.btn-gradient-orange:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: #e5c75e;
  box-shadow: 0 12px 24px rgba(87, 61, 28, 0.35);
  color: #573d1c;
}

/* Footer Styles */
.site-footer {
  background-color: #14110e;
  color: #a0a0a0;
  font-size: 15px;
  position: relative;
  overflow-x: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #2c1f10 0%, #1d150b 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-title {
  font-family: var(--heading-font);
  font-size: 32px;
  letter-spacing: -0.5px;
}

.newsletter-subtitle {
  font-size: 15px;
  opacity: 0.8;
}

.newsletter-form .input-group {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-premium);
}

.newsletter-form .input-group:focus-within {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(87, 61, 28, 0.25);
}

.newsletter-form .newsletter-input {
  background: transparent;
  border: none;
  color: #ffffff;
  padding-left: 15px;
}

.newsletter-form .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .newsletter-input:focus {
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.newsletter-form .newsletter-icon-bg {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
}

.btn-subscribe {
  background-color: #f5d76e;
  color: #573d1c;
  border-radius: 8px;
  font-weight: 700;
  padding: 12px 28px;
  border: 1px solid #f5d76e;
  transition: var(--transition-premium);
  box-shadow: 0 4px 15px rgba(87, 61, 28, 0.3);
  animation: pulse-premium 2s infinite ease-in-out;
}

.btn-subscribe:hover {
  background-color: #e5c75e;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(87, 61, 28, 0.4);
  color: #573d1c;
}

.text-orange {
  color: var(--accent-orange) !important;
}

.hero-italic-orange {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 800;
  color: var(--accent-orange);
  text-decoration: none !important;
  border-bottom: none !important;
}

.text-primary-color {
  color: var(--accent-orange) !important;
}

/* Visibility Guards for Monochrome Theme */
.hero-section .text-primary-color,
.trust-section .text-primary-color,
.track-record-section .text-primary-color,
.final-cta-section .text-primary-color,
.site-footer .text-primary-color {
  color: #ffffff !important;
}

.hero-section .hero-italic-orange,
.trust-section .hero-italic-orange {
  color: #ffffff;
  border-bottom: none !important;
}

/* Main Footer Lists */
.footer-logo .footer-brand-mark {
  display: inline-flex;
  flex-direction: column;
  transition: var(--transition-premium);
}

.footer-brand-mark .brand-top {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #a0a0a0;
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.footer-brand-mark .brand-main {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-mark .brand-main i {
  color: var(--accent-orange);
  filter: drop-shadow(0 0 8px rgba(255, 213, 0, 0.4));
  font-size: 24px;
}

.footer-brand-mark .brand-main span {
  color: var(--accent-orange);
}

.footer-brand-mark:hover {
  transform: translateX(5px);
}

.footer-logo img {
  max-height: 100px;
  filter: invert(1) brightness(100);
}

.footer-heading {
  font-family: var(--heading-font);
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-info a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--accent-orange);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

/* Buttons and Checklist */
.btn-footer-livechat {
  background-color: #573d1c;
  color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  border-radius: 6px;
  padding: 10px;
  font-weight: 500;
  transition: var(--transition-premium);
}

.btn-footer-livechat:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: var(--accent-orange);
  color: #f8f5e5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-footer-contact {
  background-color: transparent;
  color: #ffffff;
  border-radius: 6px;
  padding: 10px;
  font-weight: 500;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-footer-contact:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: rgba(255, 255, 255, 0.1);
  color: #f8f5e5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-checklist {
  color: #888888;
}

.footer-checklist li {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.footer-checklist i {
  color: #888888;
  font-size: 14px;
  width: 20px;
}

/* Bottom and Socials */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 12px;
  transition: var(--transition-premium);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-5px) rotate(8deg);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 20px rgba(87, 61, 28, 0.3);
}

.footer-bottom-links li {
  margin: 0 10px;
}

.footer-bottom-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Floating Actions & Contact Tab */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 999;
}

.btn-floating {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.btn-floating:hover {
  transform: translateY(-3px);
}

.btn-floating-phone {
  background-color: #ffffff;
  color: var(--accent-orange);
}

.btn-floating-phone:hover {
  color: var(--accent-orange);
}

.btn-floating-chat {
  background-color: var(--accent-orange);
  color: #ffffff;
}

.btn-floating-chat:hover {
  color: #ffffff;
}

.side-contact-tab {
  position: fixed;
  right: -38px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-color: var(--accent-orange);
  padding: 6px 12px;
  border-radius: 6px 6px 0 0;
  z-index: 998;
}

.side-contact-tab a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ========================================= */
/* HERO SECTION STYLES                       */
/* ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px 0;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Light black overlay for better text readability */
  z-index: -1;
}

.hero-content-container {
  position: relative;
  z-index: 1;
}

.hero-stars {
  font-size: 14px;
  color: #ffffff !important;
}

.hero-stars i {
  color: #ffffff !important;
}

.hero-trusted-text {
  font-size: 12px;
  font-weight: 300;
}

.hero-title {
  font-size: 50px;
  line-height: 54px;
  letter-spacing: -0.5px;
  font-weight: 800;
  position: relative;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(87, 61, 28, 0.2) 0%,
    rgba(87, 61, 28, 0) 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero-italic-orange {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 700;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  color: #e0e0e0 !important;
}

.hero-buttons {
  margin-bottom: 40px;
}

.btn-hero-primary {
  background: #f5d76e;
  color: #573d1c;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  transition: var(--transition-premium);
  border: none;
  box-shadow: 0 10px 20px rgba(255, 213, 0, 0.3);
  animation: pulse-glow 2s infinite;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 213, 0, 0.35);
  color: #573d1c;
  background-color: #e5c75e;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 6px;
  transition: var(--transition-premium);
  border: 2px solid transparent;
  backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  color: #f8f5e5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-features {
  font-size: 12px;
  font-weight: 300;
}

.hero-feature-item {
  display: flex;
  align-items: center;
}

.hero-feature-item i {
  font-size: 16px;
  color: var(--accent-gold);
  animation: float 4s ease-in-out infinite;
}

/* Glassmorphism Quote Form */
.hero-quote-card {
  background: rgba(5, 24, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-premium);
}

.hero-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.quote-card-title {
  font-size: 22px;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.quote-card-subtitle {
  font-size: 13px;
  color: #b0b0b0 !important;
  font-weight: 300;
}

.quote-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 300;
  transition: var(--transition-premium);
}

.quote-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: none;
}

.quote-input::placeholder {
  color: #888;
}

.quote-select {
  appearance: none;
  background-image: none;
  color: #888;
}

.quote-select:focus,
.quote-select:valid {
  color: #fff;
}

.quote-select option {
  background: #2a2a2a;
  color: #fff;
}

.quote-input-icon,
.quote-select-icon {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 14px;
}

.btn-quote-submit {
  background: #f5d76e;
  color: #573d1c;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-quote-submit:hover {
  transform: translateY(-4px) scale(1.02);
  color: #573d1c;
  background-color: #e5c75e;
  box-shadow: 0 10px 25px rgba(255, 213, 0, 0.2);
}

.quote-guarantees {
  font-size: 10px;
  color: #888 !important;
  font-weight: 300;
}

.quote-guarantees i {
  font-size: 10px;
}

/* ========================================= */
/* TRUST SECTION STYLES                      */
/* ========================================= */
.trust-section {
  background-color: #111d21;
}

.trust-main-title {
  font-size: 44px;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.trust-subtitle {
  color: #a0a0a0;
  font-size: 17px;
  font-weight: 300;
}

.trust-item {
  padding: 0 10px;
}

.trust-icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: #ffffff;
  /* Solid White Background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  /* Circle for premium feel */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-item:hover .trust-icon-wrapper {
  transform: translateY(-5px) scale(1.05);
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon-wrapper i {
  font-size: 24px;
  color: #573d1c;
  /* Dark Brown Icon on White background */
}

.trust-title {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.trust-desc {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ========================================= */
/* SEE THE DIFFERENCE SECTION                */
/* ========================================= */
.difference-section {
  background-color: #ffffff;
  color: var(--text-color);
}

.diff-badge {
  background-color: rgba(38, 104, 103, 0.1);
  color: var(--primary-teal);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.diff-title {
  font-size: 56px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  font-weight: 800;
}

.diff-subtitle {
  font-size: 18px;
  line-height: 1.6;

  color: #000;
  max-width: 700px;
  margin: 0 auto;
}

.diff-image-wrapper {
  position: relative;
  padding-bottom: 30px;
  /* Space for the absolute box */
}

.diff-image-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* soft shadow */
  padding: 20px;
  display: inline-block;
  width: 100%;
}

.diff-main-img {
  border-radius: 8px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.diff-image-card:hover .diff-main-img {
  transform: scale(1.03);
}

/* Circular Promotional Badge (Premium Enhanced) */
.promo-badge-circle {
  position: absolute;
  width: 115px;
  height: 115px;
  background: linear-gradient(135deg, #ff7b00 0%, #e65100 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(255, 123, 0, 0.5),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  z-index: 4;
  transform: rotate(15deg);
  animation: pulse-badge-premium 3s infinite ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.promo-badge-circle::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
}

/* Gloss Effect */
.promo-badge-circle::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  background-size: 200% 200%;
  animation: shine-badge 4s infinite linear;
  pointer-events: none;
}

.promo-badge-circle .promo-val {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
}

.promo-badge-circle .promo-text {
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Modifier positions */
.promo-top-right {
  top: -50px;
  right: -40px;
}

.promo-top-left {
  top: -50px;
  left: -40px;
  transform: rotate(-12deg);
  animation: pulse-badge-premium-left 3s infinite ease-in-out;
}

@keyframes pulse-badge-premium {
  0%,
  100% {
    transform: scale(1) rotate(15deg);
  }

  50% {
    transform: scale(1.08) rotate(15deg);
  }
}

@keyframes pulse-badge-premium-left {
  0%,
  100% {
    transform: scale(1) rotate(-12deg);
  }

  50% {
    transform: scale(1.08) rotate(-12deg);
  }
}

@keyframes shine-badge {
  0% {
    background-position: -100% -100%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.diff-stat-box {
  position: absolute;
  bottom: 0;
  right: 20px;
  background: var(--vibrant-gradient);
  border-radius: 12px;
  padding: 18px 25px;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(183, 153, 0, 0.3);
  min-width: 220px;
  z-index: 2;
}

@media (max-width: 768px) {
  .diff-stat-box {
    right: 50%;
    transform: translateX(50%);
    bottom: -20px;
    min-width: 200px;
  }
}

.diff-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.diff-stat-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.diff-list li {
  font-size: 18px;
  color: #555555;
  line-height: 1.5;
}

.diff-list i {
  font-size: 18px;
}

.btn-pill-orange {
  background: #f5d76e;
  color: #573d1c;
  border: 1px solid #f5d76e;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-premium);
  animation: pulse-premium 2.5s infinite ease-in-out;
}

.btn-pill-orange:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: #e5c75e;
  box-shadow: 0 12px 28px rgba(183, 153, 0, 0.35);
  color: #573d1c;
}

/* ========================================= */
/* RIGHT FOR YOU SECTION                     */
/* ========================================= */
.right-for-you-section {
  background-color: #fafafa;
}

.rfy-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}

.rfy-card {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 10;
}

.rfy-card-perfect {
  background-color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  /* Soft distinct shadow */
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.rfy-card-not-fit {
  background-color: #f4f4f4;
  /* Slightly gray flat background */
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: none;
}

.rfy-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.rfy-icon-orange {
  background-color: var(--accent-orange);
}

.rfy-icon-gray {
  background-color: #d0d0d0;
  color: #777777;
}

.rfy-card-header h4 {
  font-size: 24px;
  color: #222222;
}

.rfy-list li {
  font-size: 16px;

  color: #555555;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.rfy-list li:last-child {
  margin-bottom: 0;
}

.rfy-list i {
  font-size: 16px;
  color: var(--accent-orange);
  margin-right: 12px;
  margin-top: 2px;
}

.rfy-list-gray i {
  color: #a0a0a0;
  /* Gray icons for the negative list */
}

/* ========================================= */
/* OUR SERVICES SECTION                      */
/* ========================================= */
.services-section {
  background-color: #ffffff;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-premium);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
  position: relative;
  padding: 12px;
  /* White border effect around the image inside the card */
  padding-bottom: 0;
}

.service-img {
  border-radius: 8px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(183, 153, 0, 0.3);
  z-index: 2;
  transition: var(--transition-premium);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(15deg);
  background-color: #e5c75e;
  box-shadow: 0 10px 20px rgba(245, 215, 110, 0.4);
}

.service-card:hover .service-icon i {
  color: #573d1c;
}

.service-content {
  padding: 40px 30px 30px 30px;
}

.service-title {
  font-size: 25px;
  color: #000 !important;
  letter-spacing: -0.5px;
}

.service-desc {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

.service-list li {
  font-size: 11px;
  color: #555555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.service-list i {
  font-size: 11px;
}

.service-link {
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #b79900;
}

/* ========================================= */
/* WHY CHOOSE US SECTION                     */
/* ========================================= */
.why-us-section {
  background-color: #f9f9f9;
}

.why-us-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-premium);
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(38, 104, 103, 0.1);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(183, 153, 0, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-icon i {
  font-size: 24px;
  color: var(--accent-orange);
  animation: float 3s ease-in-out infinite;
}

.why-us-title {
  font-size: 20px;
  color: #1a1a1a;
  font-family: var(--heading-font);
  font-weight: 800;
}

.why-us-desc {
  font-size: 16px;

  color: #777777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================= */
/* SERVICES MEGA MENU                        */
/* ========================================= */
.mega-dropdown {
  position: relative;
  /* keep relative so dropdown is anchored to the li */
}

.mega-menu {
  width: 560px;
  border-radius: 16px !important;
  padding: 24px !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  z-index: 9999;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.2s ease;
  margin-bottom: 2px;
}

.mega-menu-item:hover {
  background-color: rgba(38, 104, 103, 0.07);
  color: var(--accent-orange);
}

.mega-menu-item:hover .mega-icon {
  background-color: rgba(183, 153, 0, 0.2);
}

.mega-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: rgba(183, 153, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.mega-icon i {
  font-size: 15px;
  color: var(--accent-orange);
}

.mega-menu-footer {
  border-top: 1px solid #f0f0f0;
}

/* ========================================= */
/* HOW IT WORKS SECTION                      */
/* ========================================= */
.how-it-works-section {
  background-color: #f5f5f5;
}

.hiw-title {
  font-size: 48px;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hiw-step-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-premium);
}

.hiw-step-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(38, 104, 103, 0.1);
}

.hiw-step-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--vibrant-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.hiw-step-body {
  flex: 1;
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hiw-step-title {
  font-size: 19px;
  color: #1a1a1a;
  font-family: var(--heading-font);
  font-weight: 800;
}

.hiw-step-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

.hiw-step-tag {
  font-size: 11px;
  color: var(--accent-orange);
  font-weight: 500;
}

.hiw-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.hiw-image {
  border-radius: 16px;
  object-fit: cover;
  height: 420px;
  display: block;
}

.hiw-cta-card {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .hiw-cta-card {
    position: static;
    margin-top: 20px;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .hiw-image-wrapper {
    margin-bottom: 0;
  }
}

/* ========================================= */
/* TRACK RECORD SECTION                      */
/* ========================================= */
.track-record-section {
  background-color: var(--deep-bg);
  background-image: radial-gradient(
    ellipse at 50% 0%,
    rgba(87, 61, 28, 0.1) 0%,
    transparent 70%
  );
}

.track-icon-wrap {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-icon-wrap i {
  font-size: 22px;
  color: var(--accent-orange);
}

.track-number {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.track-label {
  font-size: 15px;
  color: #a0a0a0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.track-stat-item {
  padding: 12px;
}

/* Ensure no text decoration in track record section */
.track-record-section .hero-italic-orange {
  border-bottom: none !important;
  text-decoration: none !important;
}

/* ========================================= */
/* PREMIUM PORTFOLIO SLIDER SECTION          */
/* ========================================= */
.portfolio {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.portofolio_content h2 {
  font-family: var(--heading-font);
  color: var(--deep-bg);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 32px;
}

.portofolio_content p {
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.portfolio_head {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.portfolio_head .nav-pills {
  border-bottom: 1px solid #dcdcdc;
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.portfolio_head .nav-pills::-webkit-scrollbar {
  display: none;
}

.portfolio_head .nav-link {
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  background: transparent !important;
  border-radius: 0;
  padding: 10px 20px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition-premium);
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.portfolio_head .nav-link:hover {
  color: var(--accent-orange);
}

.portfolio_head .nav-link.active {
  color: #000 !important;
  font-weight: 700;
  border-bottom: 3px solid #573d1c !important;
  /* Image matched red/orange */
}

/* Slider Overrides */
.portfolio-cover-img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.portfolio-item-box {
  border-radius: 12px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.portfolio-item-box:hover .portfolio-cover-img {
  transform: scale(1.02);
}

.portfolio-slider {
  margin: 0;
}

.portfolio-slider .slick-slide {
  margin: 0 10px;
}

.portfolio-slider .slick-list {
  margin: 0 -10px;
}

/* Button */
.folio-btn .btn_orange {
  background-color: var(--accent-orange);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  border: none;
}

.folio-btn .btn_orange:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(87, 61, 28, 0.3);
}

/* ========================================= */
/* SUCCESS STORIES SECTION                   */
/* ========================================= */
.success-stories-section {
  background-color: #14110e;
  position: relative;
  overflow: hidden;
}

.success-stories-section .diff-title {
  color: #ffffff;
}

.success-stories-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 213, 0, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ss-header-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #573d1c, transparent);
  border-radius: 2px;
}

/* Glass Panels shared */
.glass-panel,
.ss-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-premium);
}

.glass-panel:hover,
.ss-glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Card */
.ss-featured-img-wrap {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.ss-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(20, 17, 14, 0.9) 95%);
}

.ss-featured-nameplate {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  padding: 15px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  color: white;
}

/* Before / After Boxes */
.ss-state-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-premium);
}

.ss-state-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.before-box {
  opacity: 0.8;
}

.after-box {
  background: rgba(87, 61, 28, 0.1);
  border-color: rgba(87, 61, 28, 0.3);
}

.tracking-wide {
  letter-spacing: 2px;
}

/* ========================================= */
/* CLIENT SUCCESS STORIES SECTION            */
/* ========================================= */
.client-success-section {
  background-color: #ffffff;
  border-top: 1px solid #f8f8f8;
}

.cs-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px 24px;
  text-align: center;
  border: 1px solid rgba(87, 61, 28, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #573d1c, #9c733b);
  opacity: 0;
  transition: var(--transition-premium);
}

.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(87, 61, 28, 0.08);
  border-color: rgba(87, 61, 28, 0.2);
}

.cs-card:hover::before {
  opacity: 1;
}

.cs-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(87, 61, 28, 0.1) 0%,
    rgba(87, 61, 28, 0.05) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(87, 61, 28, 0.1);
  transition: var(--transition-premium);
}

.cs-card:hover .cs-icon-wrap {
  background: #573d1c;
  transform: rotate(5deg) scale(1.05);
}

.cs-icon-wrap i {
  font-size: 24px;
  color: #573d1c;
  transition: var(--transition-premium);
}

.cs-card:hover .cs-icon-wrap i {
  color: #ffffff !important;
}

.cs-number {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1px;
  margin-bottom: 6px;
  line-height: 1;
}

.cs-label {
  font-size: 15px;
  color: #888888;
  font-weight: 400;
}

/* Review Cards */
.review-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: #ff9900;
  font-size: 14px;
}

.review-quote-icon {
  font-size: 38px;
  color: rgba(247, 152, 44, 0.15);
  line-height: 1;
}

.review-text {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}

.review-divider {
  height: 1px;
  background-color: #eeeeee;
  width: 100%;
}

.review-author h6 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 4px;
}

.review-role {
  font-size: 15px;
  color: #888888;
}

.review-book {
  color: var(--accent-orange);
  font-size: 15px;
  font-weight: 500;
}

/* Disclaimer Bar */
.cs-disclaimer-bar {
  background-color: #f8f8f8;
  border-radius: 50px;
  padding: 12px 30px;
  border: 1px solid #f0f0f0;
}

.cs-disclaimer-icon {
  color: var(--accent-orange);
  font-size: 16px;
}

.cs-disclaimer-bar span {
  font-size: 13px;
  color: #000;
}

.cs-disclaimer-bar strong {
  color: #1a1a1a;
}

/* ========================================= */
/* OUR COMMITMENT SECTION                    */
/* ========================================= */
.our-commitment-section {
  background-color: #ffffff;
}

.oc-card {
  background-color: #fdfdfd;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #f2f2f2;
  height: 100%;
  transition: var(--transition-premium);
}

.oc-card:hover {
  background-color: #ffffff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transform: translateY(-8px);
}

.oc-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: rgba(38, 104, 103, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 1px solid rgba(38, 104, 103, 0.2);
}

.oc-icon-wrap i {
  font-size: 26px;
  color: var(--accent-orange);
}

.oc-card h5 {
  color: #1a1a1a;
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 800;
}

.oc-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================= */
/* CONSULTATION SECTION                      */
/* ========================================= */
.consultation-section {
  background-color: var(--accent-orange);
}

.consult-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultation-form-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.form-label-custom {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #444444;
  margin-bottom: 10px;
}

.form-label-custom i {
  color: var(--accent-orange);
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  background-color: #f8f9fa;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  color: #333333;
  transition: var(--transition-premium);
}

.form-control-custom:focus,
.form-select-custom:focus {
  background-color: #ffffff;
  border-color: var(--accent-orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(183, 153, 0, 0.1);
}

/* Service Interest Grid */
.service-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .service-interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .service-interest-grid {
    grid-template-columns: 1fr;
  }
}

.interest-item {
  cursor: pointer;
  margin-bottom: 0;
}

.interest-item input {
  display: none;
}

.interest-box {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  font-size: 15px;
  color: #555555;
  transition: var(--transition-premium);
}

.interest-box i {
  font-size: 16px;
  margin-right: 12px;
}

.interest-icon-check {
  display: none;
  color: var(--accent-orange);
}

.interest-icon-uncheck {
  color: #cccccc;
}

.interest-item input:checked + .interest-box {
  border-color: var(--accent-orange);
  background-color: rgba(183, 153, 0, 0.05);
  color: #111111;
}

.interest-item input:checked + .interest-box .interest-icon-uncheck {
  display: none;
}

.interest-item input:checked + .interest-box .interest-icon-check {
  display: block;
}

/* Submit Button */
.btn-consult-submit {
  background-color: var(--accent-orange);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-premium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-consult-submit:hover {
  background-color: #b79900;
  /* darker shade for hover */
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: #f8f5e5;
}

/* ========================================= */
/* LIVE CHAT SECTION                         */
/* ========================================= */
.live-chat-section {
  background: var(--vibrant-gradient);
}

.lc-main-icon-wrap {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-main-icon-wrap i {
  font-size: 32px;
  color: #ffffff;
}

.lc-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.lc-feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
}

.lc-feature-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.lc-feature-icon i {
  font-size: 14px;
}

.lc-feature-text {
  font-size: 15px;
  font-weight: 500;
}

.btn-live-chat {
  display: inline-block;
  background-color: #f5d76e;
  color: #573d1c;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  transition: var(--transition-premium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-live-chat:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background-color: #e5c75e;
  color: #573d1c;
}

.lc-phone-call strong {
  color: #ffffff;
}

/* ========================================= */
/* FREE RESOURCES SECTION                    */
/* ========================================= */
.free-resources-section {
  background-color: #fcfcfc;
}

.fr-badge {
  background-color: rgba(38, 104, 103, 0.1);
  color: var(--accent-orange);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
}

.fr-title {
  font-size: 48px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.fr-feature-icon-wrap {
  width: 45px;
  height: 45px;
  background-color: rgba(38, 104, 103, 0.1);
  color: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fr-optin-form .min-w-250 {
  min-width: 300px;
}

@media (max-width: 576px) {
  .fr-optin-form .min-w-250 {
    min-width: 100%;
  }

  .fr-optin-form button {
    width: 100% !important;
  }
}

.fr-image-wrap {
  position: relative;
  padding: 20px;
}

.fr-image-wrap img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.fr-image-wrap img:hover {
  transform: scale(1.02);
}

/* ========================================= */
/* GET IN TOUCH SECTION                      */
/* ========================================= */
.bg-light-dotted {
  background-color: #fdfdfd;
  background-image: radial-gradient(#dddddd 0.8px, transparent 0.8px);
  background-size: 24px 24px;
}

.git-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: rgba(38, 104, 103, 0.1);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.git-fast-response {
  border-color: #eeeeee !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.text-orange {
  color: var(--accent-orange) !important;
}

/* Radio and Checkbox custom styling for contact form */
.get-in-touch-section .form-check-input:checked {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.get-in-touch-section .form-check-label {
  cursor: pointer;
}

.get-in-touch-section .form-control-custom,
.get-in-touch-section .form-select-custom {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
}

.get-in-touch-section .form-control-custom:focus,
.get-in-touch-section .form-select-custom:focus {
  background-color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(183, 153, 0, 0.08);
}

/* ========================================= */
/* FAQ SECTION                               */
/* ========================================= */
.faq-accordion .accordion-item {
  background-color: #ffffff;
  border: 1px solid #f0f0f0 !important;
  transition: var(--transition-premium);
  margin-bottom: 20px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-item:hover {
  border-color: var(--accent-orange) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-accordion .accordion-button {
  background-color: transparent;
  color: #1a1a1a;
  box-shadow: none;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  padding: 24px 30px;
  letter-spacing: -0.2px;
  transition: var(--transition-premium);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #573d1c;
  background-color: transparent;
}

/* Custom Plus/Minus Icon on Right */
.faq-accordion .accordion-button::after {
  content: "\2b";
  font-family: inherit;
  background-image: none;
  width: 32px;
  height: 32px;
  background-color: #f8f8f8;
  color: #573d1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  background-color: #573d1c;
  color: #ffffff;
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 30px 30px 30px !important;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.faq-header-wrap .fr-title {
  font-size: 42px;
  line-height: 1.1;
}

.faq-cta-box {
  border: 1px solid #f0f0f0 !important;
  transition: var(--transition-premium);
}

.faq-cta-box:hover {
  border-color: var(--accent-orange) !important;
  background-color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.accordion-body {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fr-title {
    font-size: 30px;
  }
}

/* ========================================= */
/* FINAL CTA SECTION                         */
/* ========================================= */
.final-cta-section {
  position: relative;
  border-top: 1px solid #f2f2f2;
}

.cta-stars i {
  font-size: 18px;
  margin: 0 2px;
}

.cta-main-title {
  font-size: 54px;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
}

/* CTA Specific Buttons */
.btn-live-chat-cta {
  display: inline-flex;
  align-items: center;
  background: #f5d76e;
  color: #573d1c;
  border: 1px solid #f5d76e;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  transition: var(--transition-premium);
  box-shadow: 0 10px 30px rgba(183, 153, 0, 0.2);
  text-decoration: none;
}

.btn-live-chat-cta:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: #e5c75e;
  box-shadow: 0 15px 40px rgba(183, 153, 0, 0.3);
  color: #573d1c;
}

.btn-consultation-cta {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #333333;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  transition: var(--transition-premium);
  border: 1px solid #eeeeee;
  text-decoration: none;
}

.btn-consultation-cta:hover {
  background-color: #fcfcfc;
  border-color: #dddddd;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  color: #111111;
}

.cta-feat-item span {
  font-size: 15px;
}

.cta-phone-footer p {
  font-size: 15px;
}

@media (max-width: 991px) {
  .cta-main-title {
    font-size: 38px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-live-chat-cta,
  .btn-consultation-cta {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}

.hiw-cta-card h4 {
  font-size: 26px !important;
}

.track-record-section h2 {
  font-size: 60px !important;
}

.client-success-section h2 {
  font-size: 55px !important;
}

/* ========================================= */
/* OUR PROCESS - ULTRA AESTHETIC POLISH      */
/* ========================================= */

.process-road-container {
  position: relative;
  padding-left: 20px;
}

.process-connector-line {
  position: absolute;
  top: 40px;
  left: 43px;
  bottom: 40px;
  width: 2px;
  background-color: var(--accent-orange);
  /* Solid Gold for the line */
  z-index: 0;
  opacity: 0.3;
}

.hiw-step-card.premium-polish {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-premium);
}

.hiw-step-body .hiw-step-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.hiw-step-card.premium-polish:hover {
  transform: translateX(15px) scale(1.01);
  box-shadow: var(--shadow-premium);
  border-color: var(--accent-orange);
}

.hiw-step-card.premium-polish:hover .hiw-step-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 213, 0, 0.4);
}

/* Mesh Glow Backgrounds */
.mesh-glow-bg {
  position: relative;
  overflow: hidden;
}

.mesh-glow-item {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.mesh-glow-1 {
  top: -100px;
  right: -100px;
  background: var(--accent-orange);
}

.mesh-glow-2 {
  bottom: -100px;
  left: -100px;
  background: var(--primary-teal);
}

/* Glassmorphism 2.0 Sidebar */
.glass-sidebar-premium {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 40px;
}

.hiw-step-icon {
  font-size: 22px;
  transition: var(--transition-premium);
}

/* Responsive Connectors */
@media (max-width: 991px) {
  .process-connector-line {
    left: 43px;
  }
}

.track-record-section .hero-italic-orange {
  border-bottom: none !important;
  text-decoration: none !important;
  color: #fff;
}

footer .btn-footer-livechat {
  color: #fff;
}

/* ========================================= */
/* FOOTER LOGO - WHITE                       */
/* ========================================= */
.footer-brand-mark .brand-top,
.footer-brand-mark .brand-main,
.footer-brand-mark .brand-main span,
.footer-brand-mark .brand-main i {
  color: #ffffff !important;
}

/* ========================================= */
/* PORTFOLIO GRID PAGE STYLES                */
/* ========================================= */
.portfolio-grid-page {
  background-color: #f8f9fa;
}

.portfolio-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(87, 61, 28, 0.15) !important;
}

.portfolio-img-wrapper {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.portfolio-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-grid-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(87, 61, 28, 0.85);
  /* Deep brown overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  gap: 10px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay i {
  font-size: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-overlay span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-card:hover .portfolio-overlay i,
.portfolio-card:hover .portfolio-overlay span {
  transform: translateY(0);
}

/* Ensure Fancybox Toolbar matches theme */
.fancybox__toolbar {
  background: rgba(0, 0, 0, 0.5);
}

.fancybox__content {
  border-radius: 12px;
}

/* Quote Modal Premium Styling - Enhanced */
.quote-modal-content {
  background: linear-gradient(
    135deg,
    rgba(87, 61, 28, 0.98),
    rgba(30, 20, 10, 1)
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 215, 110, 0.25);
  border-radius: 28px !important;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(245, 215, 110, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: box-shadow 0.4s ease;
}

.quote-modal-content:hover {
  box-shadow:
    0 0 40px rgba(245, 215, 110, 0.15),
    0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.quote-modal-sidebar {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.quote-modal-sidebar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(245, 215, 110, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.sidebar-list .list-icon {
  color: var(--primary-color);
  font-size: 18px;
}

.author-badge {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(5px);
}

.btn-primary-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.btn-primary-close:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: rotate(90deg) scale(1.1);
  border-color: var(--primary-color);
}

#quoteModal .hero-quote-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}

#quoteModal .quote-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 20px;
}

#quoteModal .quote-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(245, 215, 110, 0.1);
}

/* Modal Animation */
.modal.fade .quote-modal-content {
  transform: scale(0.95) translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .quote-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Modal Inner Banner Italics Optimization */
.quote-modal-content .hero-italic-orange {
  color: var(--primary-color) !important;
  font-style: italic;
  font-family: var(--heading-font);
}

.quote-modal-content .btn-quote-submit {
  position: relative;
  overflow: hidden;
  background: #f5d76e !important;
  color: #573d1c !important;
  border: none;
  transition: var(--transition-premium);
}

.quote-modal-content .btn-quote-submit:hover {
  background: #e5c54d !important;
  color: #f8f5e5 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 215, 110, 0.3);
}

.quote-modal-content .btn-quote-submit::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -60%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* Global Button & Card Micro-Animations */
.btn:hover,
.btn-hero-primary:hover,
.btn-hero-secondary:hover,
.btn-pill-orange:hover,
.portfolio-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn,
.btn-pill-orange,
.portfolio-card,
.btn-theme-gold,
.btn-theme-gold-pill {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-theme-gold {
  background-color: #f5d76e !important;
  color: #3d2b14 !important;
  border: none !important;
}

.btn-theme-gold:hover {
  background-color: #e2c45b !important;
  color: #3d2b14 !important;
}

.btn-theme-gold-pill {
  background-color: #f5d76e !important;
  color: #3d2b14 !important;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.btn-theme-gold-pill:hover {
  background-color: #e2c45b !important;
  color: #3d2b14 !important;
}

/* Float Animation for Trusted Items */
[data-aos="zoom-in"] .trust-item:hover {
  animation: float 3s ease-in-out infinite;
}

.policies ul li a {
  color: #a0a0a0;
}

/* Footer Marquee Disclaimer */
.footer-marquee-wrapper {
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.text-gold {
  color: #f5d76e !important;
}

.marquee-heading {
  z-index: 2;
  background: #212529;
  /* Match footer-dark */
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.marquee-content-scroll {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-slide-left 40s linear infinite;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}

@keyframes marquee-slide-left {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

.footer-marquee-wrapper:hover .marquee-text {
  animation-play-state: paused;
}

.hero-quote-card .promo-top-right {
  top: -143px;
  right: -55px;
}

.consultation-form-card .promo-top-right {
  top: -94px;
  right: -40px;
}

.modal-dialog .promo-top-left {
  top: 45px;
  left: -72px;
}

.consultation-form-card .promo-top-right {
  top: 3px;
  right: 6px;
}

.get-in-touch-section .consultation-form-card .promo-top-right {
  top: -80px;
  right: 6px;
}

ul.sidebar-list li {
  font-size: 14px;
}

/* Fixed Bottom Disclaimer Styles */
.fixed-bottom-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #cbcbcb;
  z-index: 5;
  padding: 8px 0;
  font-size: 11px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.fixed-bottom-disclaimer .disclaimer-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.fixed-bottom-disclaimer .disclaimer-content {
  text-align: center;
  flex: 1;
}

.fixed-bottom-disclaimer .disclaimer-content strong {
  color: #e5c75e;
}

.fixed-bottom-disclaimer .btn-read-more {
  background: #e5c75e;
  color: #000;
  border: none;
  padding: 2px 12px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fixed-bottom-disclaimer .btn-read-more:hover {
  background: #d4b64d;
}

/* Mobile specific truncation and layout */
@media (max-width: 767px) {
  .fixed-bottom-disclaimer {
    padding: 6px 0;
  }

  .fixed-bottom-disclaimer .disclaimer-flex {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .fixed-bottom-disclaimer .disclaimer-content {
    max-height: 3em; /* Show exactly 2 lines on most screens */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
  }

  .fixed-bottom-disclaimer .disclaimer-content.expanded {
    max-height: 600px; /* High enough for full text */
  }

  .fixed-bottom-disclaimer .btn-read-more {
    align-self: flex-end;
  }
}
