/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for fixed header when using anchor links */
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #030915;
  overflow-x: hidden;
  padding-top: 80px; /* Account for fixed header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 300;
  color: #c5b085;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: #f3f5f9;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #c5b085;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c5b085;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #f3f5f9;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: calc(100vh - 80px); /* Adjust for fixed header */
  margin-top: -80px; /* Pull up to account for body padding */
  padding-top: 80px; /* Add padding back for content positioning */
  background: linear-gradient(
      135deg,
      rgba(3, 9, 21, 0.7) 0%,
      rgba(197, 176, 133, 0.2) 50%,
      rgba(3, 9, 21, 0.8) 100%
    ),
    url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero overlay is now integrated directly into .hero background */

.hero-content {
  text-align: center;
  color: #f3f5f9;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #c5b085;
  text-shadow: 2px 2px 4px rgba(3, 9, 21, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-divider {
  width: 100px;
  height: 1px;
  background: #c5b085;
  margin: 0 auto;
}

/* Two Paths Section */
.two-paths {
  padding: 100px 0;
  background: #111;
  color: #f3f5f9;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #c5b085;
  font-weight: 300;
  letter-spacing: 2px;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.path-card {
  text-align: center;
  padding: 40px;
  background: rgba(197, 176, 133, 0.05);
  border: 1px solid rgba(197, 176, 133, 0.2);
  transition: all 0.3s ease;
}

.path-card:hover {
  background: rgba(197, 176, 133, 0.1);
  transform: translateY(-5px);
}

.path-icon {
  font-size: 2rem;
  color: #c5b085;
  margin-bottom: 20px;
}

.path-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #f3f5f9;
  font-weight: 400;
}

.path-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.8;
  line-height: 1.6;
}

.path-btn {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #c5b085;
  color: #c5b085;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.path-btn:hover {
  background: #c5b085;
  color: #030915;
}

/* Introduction Section */
.introduction {
  padding: 100px 0;
  background: #030915;
  color: #f3f5f9;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #c5b085;
  font-weight: 300;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Form Sections */
.form-section {
  padding: 80px 0;
  background: #111;
  color: #f3f5f9;
}

.form-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #c5b085;
  font-weight: 300;
}

.luxury-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(3, 9, 21, 0.5);
  padding: 40px;
  border: 1px solid rgba(197, 176, 133, 0.2);
}

.form-group {
  margin-bottom: 40px;
}

.form-group h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #c5b085;
  font-weight: 400;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(243, 245, 249, 0.05);
  border: 1px solid rgba(197, 176, 133, 0.3);
  color: #f3f5f9;
  font-size: 14px;
  transition: all 0.3s ease;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: #c5b085;
  background: rgba(197, 176, 133, 0.1);
}

.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
  color: rgba(243, 245, 249, 0.6);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.checkbox-grid label,
.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-grid input,
.radio-group input {
  width: auto;
  margin-right: 10px;
  accent-color: #c5b085;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.other-input {
  margin-top: 10px;
  margin-left: 25px;
}

.service-categories {
  display: grid;
  gap: 30px;
}

.category h4 {
  color: #c5b085;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 2px solid #c5b085;
  color: #c5b085;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
}

.submit-btn:hover {
  background: #c5b085;
  color: #030915;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #030915;
  color: #f3f5f9;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #111;
  color: #f3f5f9;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand h3 {
  color: #c5b085;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #f3f5f9;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c5b085;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 176, 133, 0.2);
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(3, 9, 21, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .paths-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .luxury-form {
    padding: 20px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .path-card {
    padding: 20px;
  }

  .luxury-form {
    padding: 15px;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Performance Optimizations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* GPU Acceleration for smooth animations */
.hero,
.path-btn,
.submit-btn,
.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  will-change: transform;
  transform: translateZ(0);
}

/* Optimize font loading */
@font-face {
  font-family: "Playfair Display";
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  font-display: swap;
}

/* Reduce layout shifts */
.hero {
  contain: layout style paint;
}

.container {
  contain: layout style;
}

/* Optimize images for performance */
img {
  max-width: 100%;
  height: auto;
  loading: lazy;
  decoding: async;
}

/* Critical resource hints */
.preload-font {
  font-display: swap;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .hero {
    background: #030915;
  }

  .path-card {
    border-width: 2px;
  }
}

/* Services Page Styles */
.services-hero {
  height: 60vh;
  background: linear-gradient(rgba(3, 9, 21, 0.7), rgba(3, 9, 21, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="services-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><rect width="80" height="80" fill="%23111"/><circle cx="40" cy="40" r="0.5" fill="%23d4af37" opacity="0.4"/></pattern></defs><rect width="100%" height="100%" fill="url(%23services-pattern)"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.services-intro {
  padding: 80px 0;
  background: #030915;
  color: #f3f5f9;
}

.services-categories {
  padding: 80px 0;
  background: #111;
  color: #f3f5f9;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.category-card {
  background: rgba(3, 9, 21, 0.5);
  border: 1px solid rgba(197, 176, 133, 0.2);
  padding: 30px;
  transition: all 0.3s ease;
}

.category-card:hover {
  background: rgba(197, 176, 133, 0.05);
  border-color: rgba(197, 176, 133, 0.4);
  transform: translateY(-5px);
}

.category-icon {
  font-size: 2.5rem;
  color: #c5b085;
  margin-bottom: 20px;
  text-align: center;
}

.category-title {
  font-size: 1.5rem;
  color: #c5b085;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 176, 133, 0.1);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.category-list li:before {
  content: "■";
  color: #c5b085;
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 12px;
}

.category-list li:last-child {
  border-bottom: none;
}

.service-process {
  padding: 80px 0;
  background: #030915;
  color: #f3f5f9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  font-size: 3rem;
  color: #c5b085;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.3rem;
  color: #f3f5f9;
  margin-bottom: 15px;
  font-weight: 400;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.services-cta {
  padding: 80px 0;
  background: #111;
  color: #f3f5f9;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  color: #c5b085;
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  transition: all 0.3s ease;
  border: 2px solid #c5b085;
  min-width: 200px;
}

.cta-btn.primary {
  background: #c5b085;
  color: #030915;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #c5b085;
}

.cta-btn.secondary {
  background: #030915;
  color: #c5b085;
}

.cta-btn.secondary:hover {
  background: #c5b085;
  color: #030915;
}

.testimonials {
  padding: 80px 0;
  background: #030915;
  color: #f3f5f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial {
  background: rgba(197, 176, 133, 0.05);
  border: 1px solid rgba(197, 176, 133, 0.2);
  padding: 30px;
  text-align: center;
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  color: #c5b085;
  font-weight: 500;
  font-size: 14px;
}

.author-title {
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link.active {
  color: #c5b085;
}

.nav-link.active::after {
  width: 100%;
}

/* Terms Page Styles */
.terms-hero {
  height: 50vh;
  background: linear-gradient(rgba(3, 9, 21, 0.8), rgba(3, 9, 21, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="terms-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="%23111"/><rect x="29" y="29" width="2" height="2" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23terms-pattern)"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.terms-content {
  padding: 80px 0;
  background: #030915;
  color: #f3f5f9;
}

.terms-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(197, 176, 133, 0.1);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  color: #c5b085;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.terms-section h3 {
  color: #f3f5f9;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
  font-weight: 400;
}

.terms-section p {
  margin-bottom: 15px;
  font-size: 15px;
  opacity: 0.9;
}

.terms-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.terms-section li {
  margin-bottom: 8px;
  font-size: 15px;
  opacity: 0.9;
}

.contact-details {
  background: rgba(197, 176, 133, 0.05);
  border: 1px solid rgba(197, 176, 133, 0.2);
  padding: 20px;
  margin-top: 20px;
}

.contact-details p {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-details strong {
  color: #c5b085;
}

.terms-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(197, 176, 133, 0.3);
  text-align: center;
}

.terms-footer p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 5px;
}

/* Responsive adjustments for terms page */
@media (max-width: 768px) {
  .terms-wrapper {
    padding: 0 15px;
  }

  .terms-section h2 {
    font-size: 1.5rem;
  }

  .terms-section h3 {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 9, 21, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #030915;
  border: 2px solid rgba(197, 176, 133, 0.3);
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 20px;
  border-bottom: 1px solid rgba(197, 176, 133, 0.2);
}

.modal-header .form-title {
  margin: 0;
  font-size: 1.8rem;
  color: #c5b085;
}

.modal-close {
  color: #f3f5f9;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 5px;
}

.modal-close:hover,
.modal-close:focus {
  color: #c5b085;
  text-decoration: none;
}

.modal-body {
  padding: 20px 40px 40px;
}

.modal-body .luxury-form {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Form trigger container styles */
.form-trigger-container {
  text-align: center;
  padding: 40px 20px;
  background: rgba(197, 176, 133, 0.05);
  border: 1px solid rgba(197, 176, 133, 0.2);
  border-radius: 8px;
  margin: 20px 0;
}

.form-description {
  font-size: 1.1rem;
  color: #f3f5f9;
  margin-bottom: 25px;
  opacity: 0.9;
  font-style: italic;
}
.modal-trigger-btn {
  cursor: pointer;
}

.modal-trigger-btn:active {
  transform: translateY(0);
}

/* Modal animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive modal styles */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 10px;
  }

  .modal-header {
    padding: 20px 20px 15px;
  }

  .modal-header .form-title {
    font-size: 1.4rem;
  }

  .modal-body {
    padding: 15px 20px 30px;
  }

  .modal-close {
    font-size: 24px;
  }

  .form-trigger-container {
    padding: 30px 15px;
  }

  .modal-trigger-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    max-height: 98vh;
    border-radius: 4px;
  }

  .modal-header {
    padding: 15px 15px 10px;
  }

  .modal-header .form-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 10px 15px 20px;
  }

  .form-trigger-container {
    padding: 20px 10px;
  }
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #030915;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #c5b085 50%, #b8a06e 100%);
  border-radius: 6px;
  border: 2px solid #030915;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0c649 0%, #d4af37 50%, #c5b085 100%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #c5b085 0%, #b8a06e 50%, #a89660 100%);
}

::-webkit-scrollbar-corner {
  background: #030915;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #c5b085 #030915;
}

/* Modal scrollbar */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(3, 9, 21, 0.1);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c5b085 0%, #c5b085 100%);
  border-radius: 4px;
  border: 1px solid rgba(3, 9, 21, 0.1);
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c5b085 0%, #c5b085 100%);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .services-hero {
    background: none;
    color: black;
  }
}
