@charset "UTF-8";

/* Fonts */
:root {
  --default-font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --heading-font: 'Playfair Display', Georgia, serif;
  font-display: swap;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #2c3e50;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1a252f;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgb(229, 84, 0);
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  --primary: #4f46e5;
  /* indigo-600 */
  --bg-light: #ffffff;
  --text-dark: #111827;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll — only for user-initiated clicks, not page load/refresh */
:root {
  scroll-behavior: auto;
}

/* Prevent layout shift during page load */
html {
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 80px;
  /* Space for fixed header */
  min-height: 100vh;
}

@media (min-width: 992px) {
  body {
    padding-top: 95px;
    /* Larger space for desktop header */
  }
}

/* Prevent layout shift on page load */
body::before {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

/* Exclude header links from global anchor styles */
header a,
.navbar a,
.nav-link,
.dropdown-item,
.offcanvas a {
  color: inherit;
}

header a:hover,
.navbar a:hover {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  width: 48px;
  height: 48px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(229, 84, 0, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(229, 84, 0, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 48px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
  /* Prevent layout shift */
  contain: layout style;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
    padding: 36px 0;
  }
}

@media (max-width: 767px) {

  section,
  .section {
    padding: 28px 0;
  }
}

/* Bootstrap py-5 inside a section — prevent double padding */
section.py-5,
section .py-5:first-child:last-child {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* py-5 used directly on section tag — normalize */
section.py-5 {
  padding: 48px 0 !important;
}

@media (max-width: 1199px) {
  section.py-5 {
    padding: 36px 0 !important;
  }
}

@media (max-width: 767px) {
  section.py-5 {
    padding: 28px 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

/* Prevent Bootstrap mb-5 from adding excessive gap below section headers */
.section-header.mb-5,
.section-title.mb-5,
div.mb-5:has(> .section-title),
div.mb-5:has(> h2.section-title),
div.mb-5:has(> h3) {
  margin-bottom: 1.5rem !important;
}

.section-title h2 {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 18px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 2px;
}

.section-title p {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-top: 12px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: var(--surface-color);
  position: relative;
}

.about .about-image {
  position: relative;
}

.about .about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .about-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge .years {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .about-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about .about-content .about-section-header {
  margin-bottom: 30px;
}

.about .about-content .about-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.about .about-content .about-section-header .about-subtitle {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0;
}

.about .about-content .story-text {
  margin-bottom: 30px;
}

.about .about-content .story-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

.about .about-content .story-text p:last-child {
  margin-bottom: 0;
}

.about .about-content .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about .about-content .cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .about-content .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: var(--contrast-color);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
}

.about .about-content .cta-buttons .btn.btn-primary:hover {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.4);
}

.about .about-content .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 0 0 rgba(229, 84, 0, 0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .about-content .cta-buttons .btn.btn-outline:hover {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: var(--contrast-color);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.3);
}

@media (max-width: 768px) {
  .about .about-content .about-section-header h2 {
    font-size: 28px;
  }

  .about .about-content .about-section-header .about-subtitle {
    font-size: 16px;
  }

  .about .about-content .cta-buttons .btn {
    flex: 1;
    text-align: center;
    min-width: 140px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.testimonials .testimonial-item {
  position: relative;
}

.testimonials .testimonial-item.featured .testimonial-card {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h3,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h4 {
  color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .company-logo i {
  color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-body p,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-body .quote-icon {
  color: var(--contrast-color);
}

.testimonials .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-card:hover:not(.featured .testimonial-card) {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 84, 0, 0.1);
}

.testimonials .testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonials .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .testimonial-meta {
  flex: 1;
}

.testimonials .testimonial-meta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonials .testimonial-meta h4 {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  margin-bottom: 0.75rem;
}

.testimonials .company-logo i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.testimonials .testimonial-body {
  position: relative;
}

.testimonials .testimonial-body .quote-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonials .testimonial-grid::before {
    width: 150px;
    height: 150px;
  }

  .testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-meta h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials .testimonial-item.featured .testimonial-card {
    transform: scale(1);
  }

  .testimonials .testimonial-header {
    gap: 1rem;
  }

  .testimonials .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonials .company-logo i {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Book A service Section
--------------------------------------------------------------*/
.book-a-service {
  position: relative;
  overflow: hidden;
}

.book-a-service .booking-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.book-a-service .booking-content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.book-a-service .booking-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.book-a-service .booking-content .booking-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.book-a-service .restaurant-details h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.book-a-service .restaurant-details h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.book-a-service .restaurant-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.book-a-service .reservation-form-col {
  position: relative;
  z-index: 2;
}

.book-a-service .reservation-form-container {
  background-color: var(--surface-color);
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.book-a-service .reservation-form-container .form-header {
  margin-bottom: 2rem;
}

.book-a-service .reservation-form-container .form-header p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.book-a-service .reservation-form-container form {
  flex: 1;
}

.book-a-service .reservation-form-container form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
  display: block;
}

.book-a-service .reservation-form-container form .form-control,
.book-a-service .reservation-form-container form .form-select {
  color: var(--default-color);
  background-color: #ffffff;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
}

.book-a-service .reservation-form-container form .form-control:focus,
.book-a-service .reservation-form-container form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.book-a-service .reservation-form-container form .form-control::placeholder,
.book-a-service .reservation-form-container form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.book-a-service .reservation-form-container form textarea.form-control {
  resize: none;
}

.book-a-service .reservation-form-container .btn-book-table {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: var(--contrast-color);
  border: 0;
  padding: 16px 42px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
}

.book-a-service .reservation-form-container .btn-book-table:hover {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.4);
}

.book-a-service .info-col {
  position: relative;
}

@media (max-width: 1199.98px) {
  .book-a-service .reservation-form-container {
    padding: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .book-a-service .row {
    min-height: auto;
  }

  .book-a-service .reservation-form-container {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .book-a-service h3 {
    font-size: 1.8rem;
  }

  .book-a-service h4 {
    font-size: 1.5rem;
  }

  .book-a-service .reservation-form-container {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .location-content .location-header {
  margin-bottom: 2.5rem;
  text-align: left;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 1.5rem;
}

.location .location-content .location-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.location .location-content .location-header .location-subtitle {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-style: italic;
}

.location .location-content .map-wrapper {
  position: relative;
  height: 450px;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.location .location-content .map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.location .location-content .map-wrapper .map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.location .location-content .map-wrapper .map-overlay .location-badge {
  background-color: var(--surface-color);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.location .location-content .map-wrapper .map-overlay .location-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.location .location-content .transportation-info h4 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.location .location-content .transportation-info .transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.location .location-content .transportation-info .transport-grid .transport-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.location .location-content .transportation-info .transport-grid .transport-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.location .location-content .transportation-info .transport-grid .transport-item .details strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location .location-content .transportation-info .transport-grid .transport-item .details p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.4;
}

.location .contact-sidebar .contact-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.location .contact-sidebar .contact-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location .contact-sidebar .contact-card .card-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.location .contact-sidebar .contact-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location .contact-sidebar .contact-card p {
  margin: 0;
  line-height: 1.6;
}

.location .contact-sidebar .contact-card p.phone {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location .contact-sidebar .contact-card p.note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: italic;
}

.location .contact-sidebar .contact-card .hours-list .hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
}

.location .contact-sidebar .contact-card .hours-list .hour-item:last-child {
  border-bottom: none;
}

.location .contact-sidebar .contact-card .hours-list .hour-item.closed .time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-style: italic;
}

.location .contact-sidebar .contact-card .hours-list .hour-item .day {
  font-weight: 500;
}

.location .contact-sidebar .contact-card .hours-list .hour-item .time {
  font-weight: 600;
  color: var(--accent-color);
}

.location .contact-sidebar .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location .contact-sidebar .action-buttons a {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location .contact-sidebar .action-buttons a.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.location .contact-sidebar .action-buttons a.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.location .contact-sidebar .action-buttons a.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.location .contact-sidebar .action-buttons a.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location .contact-sidebar {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .location .location-content .content-header h2 {
    font-size: 2rem;
  }

  .location .location-content .transportation-info .transport-grid {
    grid-template-columns: 1fr;
  }

  .location .contact-sidebar .action-buttons {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Price Section
--------------------------------------------------------------*/
.Price .event-hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.Price .event-hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.Price .event-hero-content .event-stats {
  display: flex;
  gap: 2rem;
}

.Price .event-hero-content .event-stats .stat-item {
  text-align: center;
}

.Price .event-hero-content .event-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.Price .event-hero-content .event-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Price .event-hero-image {
  position: relative;
}

.Price .event-hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.Price .event-hero-image .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.Price .event-hero-image .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.Price .event-hero-image .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.Price .event-packages {
  margin: 0;
}

.Price .event-packages .Price-section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.Price .event-packages .Price-section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.Price .event-packages .package-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.Price .event-packages .package-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.Price .event-packages .package-card.featured .popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.Price .event-packages .package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.Price .event-packages .package-card .package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.Price .event-packages .package-card .package-header .package-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.Price .event-packages .package-card .package-header .package-icon i {
  font-size: 2.2rem;
  color: var(--contrast-color);
}

.Price .event-packages .package-card .package-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.Price .event-packages .package-card .package-header .package-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.Price .event-packages .package-card .package-header .package-price .per {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 0.5rem;
}

.Price .event-packages .package-card .package-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.Price .event-packages .package-card .package-features ul li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.Price .event-packages .package-card .package-features ul li:last-child {
  border-bottom: none;
}

.Price .event-packages .package-card .package-features ul li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.Price .event-packages .package-card .package-capacity {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.Price .event-packages .package-card .package-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.Price .event-packages .package-card .package-cta .btn-package {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
  border: none;
  cursor: pointer;
  outline: none;
}

.Price .event-packages .package-card .package-cta .btn-package::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.Price .event-packages .package-card .package-cta .btn-package:hover::before {
  width: 300px;
  height: 300px;
}

.Price .event-packages .package-card .package-cta .btn-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.5);
}

.Price .event-packages .package-card .package-cta .btn-package i {
  transition: transform 0.3s;
}

.Price .event-packages .package-card .package-cta .btn-package:hover i {
  transform: translateX(5px);
}

.Price .event-packages .package-card.featured .package-cta .btn-package {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.4);
}

.Price .booking-section {
  margin: 5rem 0;
}

.Price .booking-section .booking-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.Price .booking-section .booking-info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.Price .booking-section .booking-info .contact-methods .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.Price .booking-section .booking-info .contact-methods .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Price .booking-section .booking-info .contact-methods .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.Price .booking-section .booking-info .contact-methods .contact-item .contact-details .contact-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.2rem;
}

.Price .booking-section .booking-info .contact-methods .contact-item .contact-details .contact-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Social Links Section */
.Price .booking-section .booking-info .social-links-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.Price .booking-section .booking-info .social-links-section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.Price .booking-section .booking-info .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.Price .booking-section .booking-info .social-links .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(229, 84, 0, 0.05));
  border: 2px solid rgba(229, 84, 0, 0.2);
  border-radius: 12px;
  color: rgb(229, 84, 0);
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.Price .booking-section .booking-info .social-links .social-link:hover {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  border-color: rgb(229, 84, 0);
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(229, 84, 0, 0.3);
}

/* Form Loading and Messages */
.Price .booking-section .quick-booking-form .loading {
  display: none;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(229, 84, 0, 0.05));
  color: rgb(229, 84, 0);
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid rgba(229, 84, 0, 0.2);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.Price .booking-section .quick-booking-form .loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 84, 0, 0.2), transparent);
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.Price .booking-section .quick-booking-form .error-message {
  display: none;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  color: #dc3545;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid rgba(220, 53, 69, 0.3);
  font-weight: 600;
}

.Price .booking-section .quick-booking-form .sent-message {
  display: none;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(229, 84, 0, 0.05));
  color: rgb(178, 65, 0);
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid rgba(229, 84, 0, 0.3);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.Price .booking-section .quick-booking-form .sent-message::before {
  content: '\f26b';
  font-family: 'bootstrap-icons';
  font-size: 20px;
  color: rgb(229, 84, 0);
}

.Price .booking-section .quick-booking-form {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.Price .booking-section .quick-booking-form h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.Price .booking-section .quick-booking-form .form-control,
.Price .booking-section .quick-booking-form .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.Price .booking-section .quick-booking-form .form-control:focus,
.Price .booking-section .quick-booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.Price .booking-section .quick-booking-form .form-control::placeholder,
.Price .booking-section .quick-booking-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.Price .booking-section .quick-booking-form .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.Price .booking-section .quick-booking-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .Price .event-hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .Price .event-hero-content h2 {
    font-size: 2.5rem;
  }

  .Price .event-hero-content .event-stats {
    justify-content: center;
  }

  .Price .event-packages .package-card.featured {
    transform: none;
  }

}

@media (max-width: 768px) {
  .Price .event-hero-content h2 {
    font-size: 2rem;
  }

  .Price .event-packages .package-card {
    margin-bottom: 2rem;
  }

  .Price .quick-booking-form {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  overflow: hidden;
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact .contact-info {
    margin-bottom: 40px;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 35px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgb(229, 84, 0), rgb(255, 140, 0));
  border-radius: 16px 16px 0 0;
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact .contact-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.contact .contact-card .contact-details .contact-item div p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 5px;
  line-height: 1.5;
}

.contact .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

.contact .contact-card .contact-details .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form .form-check {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin-top: 0.3em;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  padding-left: 5px;
}

.contact .contact-form-wrapper .php-email-form button {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: var(--contrast-color);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(178, 65, 0));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.4);
}

@media (max-width: 992px) {

  .contact .contact-card,
  .contact .newsletter-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact .contact-card h3 {
    font-size: 20px;
  }

  .contact .newsletter-card h3 {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# ENHANCED SECTIONS - UI/UX IMPROVEMENTS
--------------------------------------------------------------*/

/* ===== GLOBAL SECTION BADGE ===== */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
  /* Prevent layout shift */
  min-height: 32px;
  line-height: 1.2;
}

/* ===== ENHANCED ABOUT SECTION ===== */
.about .about-image {
  position: relative;
  /* Prevent layout shift */
  min-height: 400px;
}

.about .about-image img {
  width: 100%;
  height: auto;
  display: block;
  /* Reserve aspect ratio space */
  aspect-ratio: 3/2;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about .about-image {
    min-height: 300px;
  }
}

.about .about-image .experience-badge {
  position: absolute;
  top: -56px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  transition: all 0.3s ease;
  /* Prevent layout shift */
  will-change: transform;
  contain: layout;
}

.about .about-image .experience-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .about .about-image .experience-badge {
    top: -35px;
    right: 10px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    top: 10px;
    right: 10px;
    padding: 0.85rem;
  }

  .about .about-image .experience-badge .badge-icon {
    width: 40px;
    height: 40px;
  }

  .about .about-image .experience-badge .years {
    font-size: 1.5rem;
  }

  .about .about-image .experience-badge .text {
    font-size: 0.7rem;
  }
}

.about .about-image .experience-badge .badge-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about .about-image .experience-badge:hover .badge-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.about .about-image .experience-badge .badge-icon i {
  font-size: 1.5rem;
  color: white;
}

.about .about-image .experience-badge .badge-content {
  display: flex;
  flex-direction: column;
}

.about .about-image .experience-badge .years {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .about-image .experience-badge .text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.about .about-image .stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Prevent layout shift */
  will-change: transform;
  contain: layout;
}

.about .about-image .stats-overlay .stat-item {
  text-align: center;
}

.about .about-image .stats-overlay .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .about-image .stats-overlay .stat-label {
  font-size: 0.85rem;
  color: var(--default-color);
  font-weight: 600;
}

.about .about-content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.about .about-content .features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.about .about-content .features-grid .feature-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .about-content .features-grid .feature-item .feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.about .about-content .features-grid .feature-item .feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.about .about-content .features-grid .feature-item .feature-content p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .about-content .cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .about-content .cta-buttons .btn i {
  transition: transform 0.3s ease;
}

.about .about-content .cta-buttons .btn:hover i {
  transform: translateX(3px);
}

.about .about-content .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-content .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-content .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .about-content .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about .about-content .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ENHANCED TESTIMONIALS SECTION ===== */
.testimonials .testimonial-card {
  position: relative;
}

.testimonials .testimonial-card .rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonials .testimonial-card .rating-stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonials .testimonial-card .testimonial-body {
  position: relative;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.testimonials .testimonial-card .testimonial-body .quote-icon-left {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-card .testimonial-body .quote-icon-right {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: rotate(180deg);
}

.testimonials .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card .testimonial-footer .testimonial-image {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

.testimonials .testimonial-card .testimonial-footer .testimonial-meta h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.testimonials .testimonial-card .testimonial-footer .testimonial-meta .position {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.testimonials .testimonial-card .testimonial-footer .testimonial-meta .company-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.testimonials .testimonial-card.featured .featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* ===== ENHANCED TEAM SECTION ===== */
.team .team-member .member-photo {
  position: relative;
}

.team .team-member .member-photo .member-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.team .team-member .member-info .experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== ENHANCED BOOK A TABLE SECTION ===== */
.book-a-service .reservation-form-container {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.book-a-service .reservation-form-container .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.book-a-service .reservation-form-container .form-header .header-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.book-a-service .reservation-form-container .form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.book-a-service .reservation-form-container .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.book-a-service .reservation-form-container .form-group label .required {
  color: #dc3545;
  margin-left: 0.25rem;
}

.book-a-service .reservation-form-container .form-group .input-group {
  position: relative;
}

.book-a-service .reservation-form-container .form-group .input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
  z-index: 10;
  pointer-Price: none;
}

.book-a-service .reservation-form-container .form-group .input-group .form-control,
.book-a-service .reservation-form-container .form-group .input-group .form-select {
  padding-left: 50px !important;
}

.book-a-service .reservation-form-container .loading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
}

.book-a-service .reservation-form-container .loading .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.book-a-service .reservation-form-container .sent-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #fff5f0;
  border: 1px solid rgba(229, 84, 0, 0.3);
  border-radius: 8px;
  color: rgb(178, 65, 0);
  font-weight: 600;
}

.book-a-service .reservation-form-container .sent-message i {
  font-size: 1.5rem;
  color: rgb(229, 84, 0);
}

.book-a-service .reservation-form-container .btn-book-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.book-a-service .reservation-form-container .btn-book-table:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  gap: 1rem;
}

.book-a-service .reservation-form-container .btn-book-table i {
  transition: transform 0.3s ease;
}

.book-a-service .reservation-form-container .btn-book-table:hover i {
  transform: translateX(5px);
}

.book-a-service .consultation-info .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.book-a-service .consultation-info .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.book-a-service .consultation-info .info-card .card-header i {
  font-size: 2rem;
  color: var(--accent-color);
}

.book-a-service .consultation-info .info-card .card-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.book-a-service .consultation-info .info-card .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.book-a-service .consultation-info .info-card .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.book-a-service .consultation-info .info-card .benefits-list li:last-child {
  border-bottom: none;
}

.book-a-service .consultation-info .info-card .benefits-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.book-a-service .consultation-info .info-card .benefits-list li span {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.book-a-service .consultation-info .contact-methods h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.book-a-service .consultation-info .contact-methods .method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.book-a-service .consultation-info .contact-methods .method-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.book-a-service .consultation-info .contact-methods .method-item .method-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.book-a-service .consultation-info .contact-methods .method-item .method-content {
  flex: 1;
}

.book-a-service .consultation-info .contact-methods .method-item .method-content .label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.book-a-service .consultation-info .contact-methods .method-item .method-content .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.book-a-service .consultation-info .contact-methods .method-item .method-content .value:hover {
  color: var(--accent-color);
}

.book-a-service .consultation-info .contact-methods .method-item .method-content .note {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Contact Section - Input Icon Alignment Fix
--------------------------------------------------------------*/
.contact .contact-form-wrapper .php-email-form .form-group .input-group {
  position: relative;
}

.contact .contact-form-wrapper .php-email-form .form-group .input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
  z-index: 10;
  pointer-Price: none;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px 0 0 8px;
}

.contact .contact-form-wrapper .php-email-form .form-group .input-group .form-control {
  padding-left: 55px !important;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  background-color: #ffffff;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}


/* ===== FEATURES SECTION ===== */
.features.section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1) 0%, rgba(204, 75, 0, 0.15) 100%);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(229, 84, 0, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
}

.feature-box {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  /* Prevent layout shift */
  min-height: 350px;
  contain: layout;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(229, 84, 0), rgb(255, 140, 0));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(229, 84, 0, 0.15);
  border-color: rgba(229, 84, 0, 0.2);
}

.feature-box.featured {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.05) 0%, rgba(204, 75, 0, 0.08) 100%);
  border-color: var(--accent-color);
}

.feature-box.featured::before {
  transform: scaleX(1);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3);
}

.feature-box-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(229, 84, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(229, 84, 0, 0.35);
}

.feature-box-icon i {
  font-size: 2rem;
  color: white;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--default-color);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .popular-tag {
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }
}


/* ===== SECTION SUBTITLE STYLING ===== */
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.8;
  max-width: 700px;
  margin: 1rem auto 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}


/* ===== CONTACT PAGE ADDITIONAL STYLES ===== */

/* Trust Badges - Enhanced */
.contact .trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.contact .trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 14px;
  border: 2px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.contact .trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 84, 0, 0.05), transparent);
  transition: left 0.6s ease;
}

.contact .trust-badge:hover::before {
  left: 100%;
}

.contact .trust-badge:hover {
  background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
  border-color: rgba(229, 84, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(229, 84, 0, 0.15);
}

.contact .trust-badge i {
  font-size: 22px;
  color: rgb(229, 84, 0);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact .trust-badge:hover i {
  transform: scale(1.15) rotate(5deg);
}

.contact .trust-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.3px;
}

/* Social Media Icons - Enhanced */
.contact .social-media-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.contact .social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 2px solid #e9ecef;
  border-radius: 14px;
  color: #6c757d;
  font-size: 19px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact .social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.contact .social-icon:hover::before {
  width: 100px;
  height: 100px;
}

.contact .social-icon:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact .social-icon.twitter::before {
  background: rgba(29, 161, 242, 0.15);
}

.contact .social-icon.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: #ffffff;
}

.contact .social-icon.facebook::before {
  background: rgba(24, 119, 242, 0.15);
}

.contact .social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}

.contact .social-icon.instagram::before {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15), rgba(252, 175, 69, 0.15));
}

.contact .social-icon.instagram:hover {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  border-color: #833AB4;
  color: #ffffff;
}

.contact .social-icon.linkedin::before {
  background: rgba(10, 102, 194, 0.15);
}

.contact .social-icon.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #ffffff;
}

/* Privacy Policy Checkbox - Enhanced */
.contact .privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 25px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.04) 0%, rgba(229, 84, 0, 0.02) 100%);
  border-radius: 12px;
  border: 2px solid rgba(229, 84, 0, 0.12);
  transition: all 0.3s ease;
}

.contact .privacy-checkbox:hover {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.06) 0%, rgba(229, 84, 0, 0.03) 100%);
  border-color: rgba(229, 84, 0, 0.2);
}

.contact .privacy-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: rgb(229, 84, 0);
  flex-shrink: 0;
}

.contact .privacy-checkbox label {
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.contact .privacy-checkbox label a {
  color: rgb(229, 84, 0);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.contact .privacy-checkbox label a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(229, 84, 0);
  transition: width 0.3s ease;
}

.contact .privacy-checkbox label a:hover::after {
  width: 100%;
}

.contact .privacy-checkbox label a:hover {
  color: rgb(204, 75, 0);
}

/* Form Loading State - Enhanced */
.contact .php-email-form .loading {
  display: none;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08) 0%, rgba(229, 84, 0, 0.04) 100%);
  color: rgb(229, 84, 0);
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid rgba(229, 84, 0, 0.25);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(229, 84, 0, 0.1);
}

.contact .php-email-form .loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(229, 84, 0, 0.15) 50%, transparent 100%);
  animation: loading-shimmer 2s infinite;
}

.contact .php-email-form .loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(229, 84, 0, 0.3);
  border-top-color: rgb(229, 84, 0);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Form Error Message - Enhanced */
.contact .php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.04) 100%);
  color: #dc3545;
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid rgba(220, 53, 69, 0.3);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
  position: relative;
}

.contact .php-email-form .error-message::before {
  content: '\f623';
  font-family: 'bootstrap-icons';
  font-size: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Form Success Message - Enhanced */
.contact .php-email-form .sent-message {
  display: none;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08) 0%, rgba(229, 84, 0, 0.04) 100%);
  color: rgb(178, 65, 0);
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid rgba(229, 84, 0, 0.3);
  font-weight: 700;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(229, 84, 0, 0.1);
  animation: slideInUp 0.5s ease-out;
}

.contact .php-email-form .sent-message::before {
  content: '\f26b';
  font-family: 'bootstrap-icons';
  font-size: 24px;
  color: rgb(229, 84, 0);
  animation: checkBounce 0.6s ease-out;
}

@keyframes checkBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit Button Enhancement */
.contact .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, rgb(229, 84, 0) 0%, rgb(204, 75, 0) 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.35);
}

.contact .btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact .btn-submit:hover::before {
  width: 400px;
  height: 400px;
}

.contact .btn-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(229, 84, 0, 0.5);
  background: linear-gradient(135deg, rgb(204, 75, 0) 0%, rgb(178, 65, 0) 100%);
}

.contact .btn-submit:active {
  transform: translateY(-2px) scale(0.98);
}

.contact .btn-submit i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.contact .btn-submit:hover i {
  transform: translateX(6px);
}

.contact .btn-submit span {
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact .trust-badges {
    flex-direction: column;
  }

  .contact .trust-badge {
    width: 100%;
  }

  .contact .social-media-links {
    justify-content: center;
  }

  .contact .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 40px;
  }

  .contact .privacy-checkbox {
    padding: 16px;
  }
}


/* ===== LOCATION SECTION ENHANCED STYLES ===== */

/* Office Image */
.location .office-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.location .office-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location .office-image-wrapper:hover .office-image {
  transform: scale(1.05);
}

.location .office-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: slideInLeft 0.8s ease-out;
}

.location .office-badge i {
  font-size: 24px;
  color: rgb(229, 84, 0);
}

.location .office-badge span {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
}

/* Section Title Enhancement */
.location .section-title p {
  font-size: 16px;
  color: #6c757d;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Cards Enhancement */
.location .contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.location .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(229, 84, 0, 0.15);
  border-color: rgba(229, 84, 0, 0.2);
}

.location .contact-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(229, 84, 0, 0.05));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.location .contact-card:hover .card-icon {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  transform: scale(1.1) rotate(5deg);
}

.location .contact-card .card-icon i {
  font-size: 32px;
  color: rgb(229, 84, 0);
  transition: color 0.3s ease;
}

.location .contact-card:hover .card-icon i {
  color: #ffffff;
}

.location .contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.location .contact-card .address-text,
.location .contact-card .phone {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 500;
}

.location .contact-card .note {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 15px;
}

/* Button Link Enhancement */
.location .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08), rgba(229, 84, 0, 0.04));
  color: rgb(229, 84, 0);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(229, 84, 0, 0.2);
  margin-top: 10px;
}

.location .btn-link:hover {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: #ffffff;
  border-color: rgb(229, 84, 0);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.3);
}

.location .btn-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.location .btn-link:hover i {
  transform: translateX(3px);
}

/* Office Hours Enhancement */
.location .hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.location .hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.04), rgba(229, 84, 0, 0.02));
  border-radius: 12px;
  border-left: 4px solid rgb(229, 84, 0);
  transition: all 0.3s ease;
}

.location .hour-item:hover {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08), rgba(229, 84, 0, 0.04));
  transform: translateX(5px);
}

.location .hour-item.closed {
  border-left-color: #9ca3af;
  opacity: 0.6;
}

.location .hour-item .day {
  font-weight: 700;
  color: #2c3e50;
  font-size: 14px;
}

.location .hour-item .time {
  font-weight: 700;
  color: rgb(229, 84, 0);
  font-size: 14px;
}

.location .hour-item.closed .time {
  color: #9ca3af;
}

/* Action Button Enhancement */
.location .action-buttons {
  margin-top: 25px;
}

.location .action-buttons .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.location .action-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.location .action-buttons .btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.location .action-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(229, 84, 0, 0.5);
}

.location .action-buttons .btn-primary i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.location .action-buttons .btn-primary:hover i {
  transform: scale(1.2) rotate(15deg);
}

/* Transportation Info Enhancement */
.location .transportation-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location .transportation-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location .transportation-info h4 i {
  color: rgb(229, 84, 0);
  font-size: 24px;
}

.location .transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.location .transport-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.03), rgba(229, 84, 0, 0.01));
  border-radius: 14px;
  border: 2px solid rgba(229, 84, 0, 0.1);
  transition: all 0.3s ease;
}

.location .transport-item:hover {
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.08), rgba(229, 84, 0, 0.04));
  border-color: rgba(229, 84, 0, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(229, 84, 0, 0.1);
}

.location .transport-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(204, 75, 0));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.location .transport-item:hover .transport-icon {
  transform: scale(1.1) rotate(5deg);
}

.location .transport-icon i {
  font-size: 24px;
  color: #ffffff;
}

.location .transport-item .details strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.location .transport-item .details p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Map Wrapper Enhancement */
.location .map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.location .map-overlay .location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.location .map-overlay .location-badge i {
  font-size: 20px;
  color: rgb(229, 84, 0);
}

.location .map-overlay .location-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 991px) {
  .location .office-image-wrapper {
    height: 300px;
  }

  .location .transport-grid {
    grid-template-columns: 1fr;
  }

  .location .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .location .office-image-wrapper {
    height: 250px;
  }

  .location .contact-card {
    padding: 25px;
  }

  .location .transportation-info {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Form Submission States & Animations
--------------------------------------------------------------*/

/* Loading State */
.form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.05), rgba(229, 84, 0, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(229, 84, 0, 0.2);
  animation: fadeInSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-loading span {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Spinner Animation */
.form-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(229, 84, 0, 0.2);
  border-top-color: rgb(229, 84, 0);
  border-radius: 50%;
  animation: spin 0.8s linear infinite, bounceUpDown 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceUpDown {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-4px) rotate(90deg);
  }

  50% {
    transform: translateY(0) rotate(180deg);
  }

  75% {
    transform: translateY(-4px) rotate(270deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Success Message */
.form-sent-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(229, 84, 0, 0.1), rgba(229, 84, 0, 0.15));
  border: 1px solid rgba(229, 84, 0, 0.3);
  border-radius: 12px;
  color: rgb(204, 75, 0);
  font-weight: 500;
  font-size: 15px;
  animation: fadeInSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1), successPulse 0.6s ease-out;
}

.form-sent-message i {
  font-size: 20px;
  color: rgb(229, 84, 0);
  animation: successIcon 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successIcon {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes successPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 84, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(229, 84, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 84, 0, 0);
  }
}

/* Error Message */
.form-error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.15));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #dc2626;
  font-weight: 500;
  font-size: 15px;
  animation: fadeInSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1), shake 0.5s ease-in-out;
}

.form-error-message::before {
  content: "⚠️";
  margin-right: 10px;
  font-size: 18px;
  animation: errorIcon 0.5s ease-out;
}

@keyframes errorIcon {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

/* Fade In Slide Down Animation */
@keyframes fadeInSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for all form states */
.form-loading,
.form-error-message,
.form-sent-message {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .form-loading,
  .form-error-message,
  .form-sent-message {
    padding: 14px 16px;
    font-size: 14px;
  }

  .form-spinner {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .form-sent-message i {
    font-size: 18px;
  }
}

/* ── Reading Progress Bar (global) ── */
.blg-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, rgb(229, 84, 0), rgb(255, 140, 0));
  box-shadow: 0 0 12px rgba(229, 84, 0, 0.6);
  transition: width 0.1s linear;
}

/* ── Remove borders from all primary/package buttons ── */
.btn-package,
button.btn-package,
.btn.btn-primary,
a.btn.btn-primary,
.cta-buttons .btn,
.package-cta .btn-package {
  border: none !important;
  outline: none !important;
}

/*--------------------------------------------------------------
# Performance — CLS, rendering, and paint optimizations
--------------------------------------------------------------*/

/* Prevent layout shift from images without explicit dimensions */
img {
  max-width: 100%;
  height: auto;
}

/* GPU-accelerate animated elements to avoid layout thrashing */
[data-aos],
.animated,
.scroll-top,
header {
  will-change: transform;
}

/* content-visibility: auto defers rendering of off-screen sections,
   improving initial paint time significantly on long pages */
.section:not(#hero-section):not(.about.section:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px; /* estimated height prevents CLS */
}

/* Smooth image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Prevent invisible text during webfont load */
@font-face {
  font-display: swap;
}

/* Optimize scrolling performance */
.offcanvas,
.modal,
.dropdown-menu {
  will-change: transform;
  transform: translateZ(0);
}

/* Prevent horizontal overflow — use clip instead of hidden to preserve sticky */
html {
  overflow-x: clip; /* clip doesn't break position:sticky unlike hidden */
  max-width: 100vw;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
}
