/* 
   Modern Custom CSS for Tatilciler 
   Theme: Professional Red & Modern UI
*/

:root {
  --primary-color: #E30613;
  --primary-hover: #c90511;
  --secondary-color: #1034A6;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bootstrap Utility Overrides */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.text-primary-hover:hover {
  color: var(--primary-hover) !important;
}

.bg-primary-hover:hover {
  background-color: var(--primary-hover) !important;
}

/* Global Selection */
::selection {
  background-color: var(--primary-color);
  color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------
   Button Overrides 
   ------------------------ */
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(227, 6, 19, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(227, 6, 19, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(30, 49, 98, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #0a237a !important;
  /* Darker shade of navy */
  border-color: #152347 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(30, 49, 98, 0.3);
}

/* ------------------------
   Header Modernization 
   ------------------------ */
.header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-top {
  background-color: white !important;
  color: var(--text-dark) !important;
}

.header-top .text-secondary {
  color: var(--secondary-color) !important;
}

.header-top .text-gray-900 {
  color: var(--text-dark) !important;
}

.header-top svg path {
  fill: currentColor !important;
  opacity: 1;
}

.webmenu .nav-link,
.webmenu a span {
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.webmenu li:hover>a span {
  color: var(--primary-color);
  background-color: rgba(227, 6, 19, 0.05);
}

/* Call Me Modal Button in Header */
.header .btn-primary {
  padding: 10px 24px;
  font-size: 14px;
}

/* ------------------------
   Hero Section 
   ------------------------ */
.hero {
  overflow: visible !important;
  height: 45vh;
  min-height: 400px;
}

@media (max-width: 991px) {
  .hero {
    height: 50vh;
    min-height: 350px;
  }
}

.hero-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-phone {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Search Box Modernization */
.hero-search {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nav-search .nav-link {
  border: none !important;
  color: var(--text-gray) !important;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
}

.nav-search .nav-link.active {
  background-color: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.search-form-content {
  border-radius: 16px;
  position: relative;
  z-index: 1000;
  background: white;
  border-radius: 12px;
}

.search-form .form-control {
  font-weight: 500;
  color: var(--text-dark);
}

.search-form label {
  color: var(--primary-color);
  font-weight: 700 !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ------------------------
   Cards & Content 
   ------------------------ */
.card,
.campaign-cards .swiper-slide a,
.theme-item {
  transition: var(--transition);
}

.campaign-cards .swiper-slide a:hover,
.theme-item:hover {
  transform: translateY(-8px);
}

.campaign-cards img,
.theme-item img {
  border-radius: 16px !important;
  box-shadow: var(--shadow-md);
}

.cards-title {
  backdrop-filter: blur(10px);
  border-left: 5px solid var(--primary-color) !important;
  border-radius: 12px !important;
}

/* Campaign List (Circles) */
.campaign-list img {
  border: 3px solid white !important;
  box-shadow: 0 0 0 3px var(--primary-color), var(--shadow-md);
  transition: var(--transition);
}

.campaign-list a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px var(--primary-hover), var(--shadow-lg);
}

/* ------------------------
   Modal (from previous code)
   ------------------------ */
body #call-me.modal .modal-dialog .modal-content {
  border: 0;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

body #call-me.modal .modal-header {
  border-bottom: 0;
  padding: 2rem 2rem 0;
}

body #call-me.modal .modal-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  position: relative;
  padding-left: 16px;
}

body #call-me.modal .modal-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

body #call-me.modal .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.15);
}

/* Swiper Arrows */
.cards-button-prev,
.cards-button-next,
.theme-button-prev i,
.theme-button-next i {
  background-color: var(--primary-color) !important;
  transition: var(--transition);
}

.cards-button-prev:hover,
.cards-button-next:hover,
.theme-button-prev i:hover,
.theme-button-next i:hover {
  background-color: var(--primary-hover) !important;
  transform: scale(1.1);
}

/* Footer (Simple modernization) */
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Menu */
.offcanvas {
  border-radius: 0 24px 24px 0;
}

/* ------------------------
   Additional Card Styles 
   ------------------------ */
.regions-item,
.tours-item {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none !important;
}

.regions-item:hover,
.tours-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tours-item .title {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.tours-item:hover .title {
  color: var(--primary-color) !important;
}

/* ------------------------
   Footer Modernization 
   ------------------------ */
footer {
  /* background-color: var(--secondary-color) !important; */
  color: #9ca3af;
  position: relative;
  overflow: hidden;
}

/* footer .bg-gray-100 {
  background-color: var(--secondary-color) !important;
} */

footer .border-bottom {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* .footer-top .text-dark,
.footer-content .text-black,
.footer-content .fw-bold {
  color: white !important;
} */

/* .footer-top .text-gray-600,
.footer-content .text-gray-600 {
  color: #9ca3af !important;
} */

.footer-content a {
  transition: var(--transition);
}

.footer-content a:hover {
  color: var(--primary-color) !important;
  padding-left: 5px;
  text-decoration: none;
}

/* Call Center & Contact in Footer */
/* .footer-top .title {
  color: white !important;
} */

.footer-top svg,
.footer-top i {
  color: var(--primary-color) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.footer-bottom p {
  color: #6b7280;
}

/* Social Icons */
.footer-bottom .social a {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: var(--text-dark) !important;
  transition: var(--transition);
}

.footer-bottom .social a:hover {
  background-color: var(--primary-color) !important;
  transform: translateY(-3px);
}

/* ------------------------
   Tabs Modernization 
   ------------------------ */
.nav-tabs {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.nav-tabs .nav-link {
  border: none;
  color: var(--text-gray);
  position: relative;
  transition: var(--transition);
}

.nav-tabs .nav-link:hover {
  color: var(--primary-color);
  border: none;
  isolation: isolate;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background: transparent;
  border: none;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* ------------------------
   Generic Button Modernization 
   ------------------------ */
.btn {
  border-radius: var(--border-radius);
}

/* ------------------------
   Checkbox Modernization 
   ------------------------ */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
  border-color: var(--primary-color);
}

/* ------------------------
   Search Form Modernization (Ecctur Style)
   ------------------------ */
.search-form {
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-form:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.165) !important;
}

.search-form-content {
  position: relative;
  z-index: 1000;
  background: white;
  border-radius: 12px;
}

.search-form .form-control {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
}

.search-form .form-control::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.search-form .form-control:focus {
  box-shadow: none;
}

.search-form i {
  color: var(--primary-color);
  opacity: 0.8;
}

.search-form label {
  font-size: 0.7rem !important;
  letter-spacing: 0.5px;
  font-weight: 700 !important;
  color: var(--text-gray);
  margin-bottom: 2px;
  text-transform: uppercase;
}

/* Override for search button icons */
.search-form button[type="submit"] i {
  color: white !important;
  opacity: 1 !important;
}

/* Custom Border for Desktop */
@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
}

/* Mobile Styles */
@media (max-width: 991px) {
  .search-form {
    border-radius: 16px !important;
  }

  .search-form-content {
    flex-direction: column;
    gap: 0;
  }

  .search-form .form-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 15px !important;
    width: 100%;
  }

  .search-form .form-group:last-child {
    border-bottom: none;
  }

  .search-form .btn {
    width: 100%;
    border-radius: 12px !important;
    margin-top: 10px;
  }

  /* Hide desktop-only elements just in case */
  .d-lg-block {
    display: none !important;
  }
}

/* Dropdown Tweaks */
.room-guest-dropdown {
  width: 320px;
  max-width: 90vw;
}

/* Easepick Customization */
/* Utility Classes */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

:root {
  --easepick-primary-color: var(--primary-color);
}

/* ------------------------
   Teal Stacked Search Design 
   ------------------------ */
.search-container-teal {
  background-color: #00BCD4 !important;
  /* Teal */
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  margin-top: -5px;
  /* Pull up to join tabs */
  position: relative;
  z-index: 10;
}

.search-item-white {
  background-color: white;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.search-item-white label {
  color: #1034A6 !important;
  /* Secondary Blue for labels */
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin-bottom: 2px;
  text-transform: none !important;
  /* Reset uppercase */
}

.search-item-white .form-control,
.search-item-white .form-select,
.search-item-white .dropdown-toggle {
  border: none;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  background: transparent;
  width: 100%;
  box-shadow: none !important;
}

.search-item-white i {
  color: #999;
  /* Grey icons inside input */
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Date Row split */
.date-row {
  display: flex;
  gap: 8px;
}

.date-row .search-item-white {
  flex: 1;
  margin-bottom: 0;
}

/* Red Search Button */
.search-btn-red {
  background-color: #E30613 !important;
  color: white !important;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-btn-red:hover {
  background-color: #c90511 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(227, 6, 19, 0.3);
}

/* Tab Overrides for this specific design */
.hero-search .nav-pills {
  background: transparent !important;
  padding: 0 !important;
  gap: 5px !important;
  justify-content: flex-start !important;
  /* Align left */
  margin-bottom: 0 !important;
  /* Sit on top of the teal box */
  margin-left: 10px;
  /* Slight indent */
}

.hero-search .nav-link {
  background-color: white !important;
  /* White inactive tabs */
  color: #555 !important;
  border-radius: 8px 8px 0 0 !important;
  /* Rounded top only */
  border: none !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.hero-search .nav-link.active {
  background-color: white !important;
  color: #E30613 !important;
  /* Red text */
  opacity: 1;
  box-shadow: none !important;
  position: relative;
  z-index: 20;
  /* Above the teal box */
}

/* Ensure the active tab connects visually */
.hero-search .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: white;
  /* Same as tab bg */
  z-index: 20;
}

.hero-search .nav-link i {
  color: inherit !important;
}

/* Icons inside inputs */
.input-icon-wrapper {
  display: flex;
  align-items: center;
}

.search-item-white i {
  color: #9ca3af;
  /* Light gray for input icons */
}

/* ------------------------
   Responsive Adjustments 
   ------------------------ */

/* Desktop Layout (Horizontal) */
@media (min-width: 992px) {
  .header {
    height: 75px;
    z-index: 1000;
  }

  .search-container-teal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    /* Stretch items to match height */
    gap: 10px;
    padding: 10px;
    /* Reduces padding slightly for compact look */
  }

  .search-item-white {
    flex: 1;
    /* Distribute space equally */
    margin-bottom: 0;
    /* Remove bottom margin in row */
    height: 100%;
    /* Ensure full height */
    min-height: 70px;
    /* Minimum height for consistency */
  }

  /* Make the date row flexible too */
  .date-row {
    flex: 1.5;
    /* Give dates slightly more space */
    margin-bottom: 0;
  }

  .date-row .search-item-white {
    height: 100%;
  }

  .search-btn-red {
    width: auto;
    /* Auto width based on content */
    min-width: 120px;
    margin-top: 0;
    /* Remove top margin */
    font-size: 1.1rem;
    padding: 0 30px;
  }

  /* Location field might need more space */
  .search-container-teal>.search-item-white:first-child {
    flex: 1.5;
  }
}

/* ------------------------
   Hero Grid Layout 
   ------------------------ */
.group-hover-video:hover img,
.group-hover-scale:hover img {
  transform: scale(1.05);
}

.transition-transform,
.object-fit-cover {
  transition: transform 0.3s ease;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.bg-gradient-to-t {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.logo-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility for header height */
.h-35px {
  height: 35px !important;
}

/* Responsive Width Utility */
@media (min-width: 992px) {
  .w-lg-auto {
    width: auto !important;
  }
}

/* Mobile Footer Contact Stylings */
@media (max-width: 991px) {

  .footer-top .text-dark,
  .footer-top .title {
    color: #111827 !important;
    /* Dark text for visibility */
  }

  .footer-top .text-gray-600,
  .footer-top .subtitle {
    color: #4b5563 !important;
    /* Gray text for subtitles */
  }

  .footer-top a {
    justify-content: center !important;
    /* Center align items */
    width: 100%;
    /* Ensure it spans full width to center effectively */
  }
}

/* Hero Page Height Reduction */
.hero-page {
  height: 50vh !important;
  min-height: 400px;
}

@media (max-width: 991px) {
  .hero-page {
    height: 55vh !important;
    min-height: 350px;
  }
}

/* Quantity Wrapper Fix */
.ustSearchContainer .quantity-wrapper .qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ustSearchContainer .quantity-wrapper .qty .value-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  /* Light border */
  border-radius: 8px;
  /* Rounded corners */
  color: #01a2d6;
  /* Blue text */
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.ustSearchContainer .quantity-wrapper .qty .value-button:hover {
  border-color: #01a2d6;
  background-color: #f0f9ff;
}

.ustSearchContainer .quantity-wrapper .qty input {
  width: 30px;
  height: 38px;
  text-align: center;
  border: none;
  background-color: transparent;
  font-weight: 600;
  font-size: 18px;
  color: #01a2d6;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

.ustSearchContainer .quantity-wrapper .qty input:focus {
  outline: none;
}

.ustSearchContainer .quantity-wrapper .qty input::-webkit-outer-spin-button,
.ustSearchContainer .quantity-wrapper .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* WhatsApp Support Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Inter', sans-serif;
}

.whatsapp-toggler {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-toggler:hover {
  transform: scale(1.1);
}

.whatsapp-toggler i {
  transition: transform 0.3s ease;
}

.whatsapp-toggler.active i {
  transform: rotate(45deg);
}

.whatsapp-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
}

.whatsapp-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-menu-header {
  background: linear-gradient(90deg, #1034A6 0%, #E30613 100%);
  padding: 20px;
  padding-bottom: 25px;
  color: white;
  position: relative;
}

.whatsapp-menu-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50px;
  height: 50px;
  background: inherit;
  border-radius: 0 0 50% 0;
  z-index: -1;
  display: none;
}

.whatsapp-menu-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.whatsapp-menu-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

.whatsapp-menu-body {
  padding: 10px 0;
  background: white;
}

.whatsapp-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
  border-bottom: 1px solid #f5f5f5;
}

.whatsapp-item:last-child {
  border-bottom: none;
}

.whatsapp-item:hover {
  background-color: #f9fafb;
}

.whatsapp-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
}

.icon-whatsapp {
  color: #25D366;
}

.icon-chat {
  color: #E30613;
}

.whatsapp-item-text {
  font-size: 15px;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Live Chat Panel */
.live-chat-panel {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
  font-family: 'Inter', sans-serif;
}

.live-chat-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.live-chat-header {
  background: linear-gradient(90deg, #1034A6 0%, #E30613 100%);
  padding: 15px 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-chat-title {
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-chat-close {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  font-size: 20px;
  display: flex;
}

.live-chat-close:hover {
  opacity: 1;
}

.live-chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #f9fafb;
}

.live-chat-intro {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

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

.live-chat-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

.live-chat-form input,
.live-chat-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.live-chat-form input:focus,
.live-chat-form textarea:focus {
  outline: none;
  border-color: #E30613;
}

.live-chat-footer {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #f0f0f0;
}

.live-chat-btn {
  width: 100%;
  padding: 12px;
  background: #E30613;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.live-chat-btn:hover {
  background: #c90511;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .live-chat-panel {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
}