/* Cosmic Indigo & Teal Architecture Studio - Custom Styles */

:root {
  --primary-color: #1A237E;
  --secondary-color: #00BFA5;
  --primary-dark: #0D1442;
  --secondary-dark: #008C7A;
  --primary-light: #3949AB;
  --secondary-light: #1DE9B6;
  --cosmic-gradient: linear-gradient(135deg, #1A237E 0%, #283593 50%, #00BFA5 100%);
  --cosmic-gradient-reverse: linear-gradient(135deg, #00BFA5 0%, #283593 50%, #1A237E 100%);
  --text-light: #E8EAF6;
  --text-dark: #0D1442;
  --shadow-cosmic: 0 10px 40px rgba(26, 35, 126, 0.3);
  --shadow-teal: 0 10px 40px rgba(0, 191, 165, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0A0E27 !important;
  color: #E8EAF6 !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF !important;
}

.display-2, .display-3, .display-4, .display-5 {
  font-weight: 800 !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #00BFA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: #B0BEC5 !important;
  font-weight: 400;
}

.text-white {
  color: #FFFFFF !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-muted {
  color: #78909C !important;
}

.text-dark {
  color: #0D1442 !important;
}

/* Navbar Styles */
.navbar {
  background: rgba(26, 35, 126, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.fixed-top {
  border-bottom: 2px solid rgba(0, 191, 165, 0.3);
}

.navbar-dark .navbar-brand {
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 1.8rem !important;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 191, 165, 0.5);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #00BFA5 !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #E8EAF6 !important;
  font-weight: 600 !important;
  padding: 0.8rem 1.2rem !important;
  margin: 0 0.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00BFA5 !important;
  background: rgba(0, 191, 165, 0.1) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border: 2px solid #00BFA5 !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 191, 165, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300BFA5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.position-relative.overflow-hidden {
  min-height: 100vh;
  background: var(--cosmic-gradient);
  position: relative;
  padding-top: 100px;
}

.position-relative.overflow-hidden::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="stars"><stop offset="0%" stop-color="white" stop-opacity="0.8"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="2" fill="url(%23stars)"/><circle cx="300" cy="150" r="1.5" fill="url(%23stars)"/><circle cx="500" cy="80" r="1" fill="url(%23stars)"/><circle cx="700" cy="200" r="2" fill="url(%23stars)"/><circle cx="900" cy="120" r="1.5" fill="url(%23stars)"/><circle cx="200" cy="400" r="1" fill="url(%23stars)"/><circle cx="600" cy="500" r="2" fill="url(%23stars)"/><circle cx="1000" cy="450" r="1.5" fill="url(%23stars)"/><circle cx="400" cy="600" r="1" fill="url(%23stars)"/><circle cx="800" cy="650" r="2" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
  animation: twinkle 5s infinite alternate;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.position-absolute.w-100.h-100 {
  background: radial-gradient(circle at 20% 50%, rgba(0, 191, 165, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(26, 35, 126, 0.3) 0%, transparent 50%);
  animation: cosmicPulse 8s infinite alternate;
}

@keyframes cosmicPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
}

.btn-outline-light {
  border: 2px solid #FFFFFF !important;
  color: #FFFFFF !important;
  background: transparent !important;
}

.btn-outline-light:hover {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  border-color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3) !important;
}

.btn-light {
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
  border: none !important;
}

.btn-light:hover {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal) !important;
}

.btn-outline-secondary {
  border: 2px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
}

.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
}

.btn-link {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

.btn-link:hover {
  color: var(--secondary-light) !important;
}

/* Booking Widget */
.booking-widget {
  background: rgba(255, 255, 255, 0.98) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-cosmic);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 191, 165, 0.3);
  animation: floatWidget 6s ease-in-out infinite;
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.booking-widget h3 {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.booking-widget .form-label {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 0.9rem;
}

.booking-widget .small {
  color: #78909C !important;
}

/* Form Controls */
.form-control,
.form-select {
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: #FFFFFF !important;
  color: var(--primary-color) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 191, 165, 0.25) !important;
  background: #FFFFFF !important;
}

.form-control::placeholder {
  color: #B0BEC5 !important;
}

.invalid-feedback {
  color: #F44336 !important;
  font-weight: 600 !important;
}

.form-check-input {
  border: 2px solid var(--primary-color) !important;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
}

/* Input Group */
.input-group-text {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  border: 2px solid var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Cards */
.card {
  border-radius: 16px !important;
  border: none !important;
  overflow: hidden;
  transition: all 0.4s ease !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 191, 165, 0.3) !important;
}

.card-body {
  padding: 2rem !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

.card-text {
  color: #546E7A !important;
}

.card-header {
  background: var(--cosmic-gradient) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 1.5rem !important;
}

.card-footer {
  background: #F5F5F5 !important;
  border-top: 1px solid #E0E0E0 !important;
  padding: 1.5rem !important;
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

/* Promo Card */
.promo-card {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(0, 191, 165, 0.95) 100%) !important;
  color: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.promo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 191, 165, 0.5) !important;
}

.promo-card h3,
.promo-card h4,
.promo-card p {
  color: #FFFFFF !important;
  position: relative;
  z-index: 1;
}

/* Suite Card */
.suite-card {
  background: #FFFFFF !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease;
}

.suite-card:hover {
  border-color: var(--secondary-color) !important;
  box-shadow: var(--shadow-teal) !important;
}

/* Value Card */
.value-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%) !important;
  border-radius: 16px !important;
  padding: 2.5rem 2rem !important;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #E0E0E0;
}

.value-card:hover {
  background: var(--cosmic-gradient) !important;
  transform: translateY(-10px);
  box-shadow: var(--shadow-cosmic) !important;
  border-color: transparent;
}

.value-card:hover h4,
.value-card:hover p,
.value-card:hover i {
  color: #FFFFFF !important;
}

.value-card i {
  font-size: 3rem;
  color: var(--secondary-color) !important;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

/* Team Card */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 35, 126, 0.98) 0%, rgba(0, 191, 165, 0.9) 100%);
  transition: top 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #FFFFFF !important;
}

.team-card:hover .team-overlay {
  top: 0;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-overlay h4,
.team-overlay p {
  color: #FFFFFF !important;
}

/* Badge */
.badge {
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item .rounded-circle {
  width: 60px;
  height: 60px;
  background: var(--cosmic-gradient) !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 191, 165, 0.4);
}

/* Carousel */
.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--secondary-color) !important;
  border: 2px solid #FFFFFF !important;
  margin: 0 5px !important;
}

.carousel-indicators .active {
  background-color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color) !important;
  border-radius: 50% !important;
  padding: 1.5rem !important;
  border: 2px solid var(--secondary-color) !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--secondary-color) !important;
}

/* Marquee */
.awards-marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  position: relative;
}

.awards-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.award-item {
  flex-shrink: 0;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin: 0 1rem;
  color: #FFFFFF !important;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(0, 191, 165, 0.3);
  transition: all 0.3s ease;
}

.award-item:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.award-item i {
  color: var(--secondary-light) !important;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 350px;
  max-height: 500px;
  z-index: 1040;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.chat-widget.d-none {
  transform: scale(0);
  opacity: 0;
}

.chat-widget .card-header {
  cursor: pointer;
}

.chat-widget .overflow-auto {
  height: 300px;
  background: #F5F5F5;
}

.chat-widget .btn {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 191, 165, 0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.chat-widget .btn:hover {
  background: var(--secondary-dark) !important;
  transform: scale(1.1);
}

/* Accordion */
.accordion-item {
  border: none !important;
  margin-bottom: 1rem !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.accordion-button {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  padding: 1.5rem !important;
  border: none !important;
  font-size: 1.1rem !important;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 2rem !important;
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
}

/* Modal */
.modal-content {
  border-radius: 20px !important;
  border: none !important;
  overflow: hidden;
  background: #FFFFFF !important;
}

.modal-header {
  background: var(--cosmic-gradient) !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 2rem !important;
}

.modal-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.modal-body {
  padding: 2rem !important;
  color: var(--text-dark) !important;
}

.modal-footer {
  border-top: 1px solid #E0E0E0 !important;
  padding: 1.5rem 2rem !important;
}

/* List Group */
.list-group-item {
  border: 1px solid #E0E0E0 !important;
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
  padding: 1rem 1.5rem !important;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  transform: translateX(5px);
}

/* Alert */
.alert {
  border-radius: 12px !important;
  border: none !important;
  padding: 1.5rem !important;
  font-weight: 600 !important;
}

.alert-success {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%) !important;
  color: #FFFFFF !important;
}

/* Nav Tabs/Pills */
.nav {
  gap: 0.5rem;
}

.nav-link {
  border-radius: 10px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  background: #F5F5F5 !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

.nav-link:hover,
.nav-link.active {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
  border-color: var(--secondary-color) !important;
}

/* Filter Buttons */
.filter-btn {
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color) !important;
  color: #FFFFFF !important;
}

/* Compare Toggle */
.compare-toggle {
  position: relative;
}

.compare-toggle input:checked + label {
  background: var(--secondary-color) !important;
  color: #FFFFFF !important;
}

/* Sticky Elements */
.sticky-top {
  top: 80px !important;
}

.position-sticky {
  position: sticky !important;
}

/* Section Spacing */
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-4 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.my-5 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

/* Background Utilities */
.bg-light {
  background-color: #F5F5F5 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-secondary {
  background-color: #546E7A !important;
}

/* Shadows */
.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Border Utilities */
.border-0 {
  border: none !important;
}

.border-top {
  border-top: 1px solid #E0E0E0 !important;
}

.border-bottom {
  border-bottom: 1px solid #E0E0E0 !important;
}

.rounded {
  border-radius: 12px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Bootstrap Icons */
.bi {
  vertical-align: middle;
  transition: all 0.3s ease;
}

.bi-star-fill {
  color: #FFC107 !important;
}

.bi-check-circle-fill {
  color: #4CAF50 !important;
}

.bi-exclamation-triangle {
  color: #FF9800 !important;
}

.bi-x-circle {
  color: #F44336 !important;
}

/* Image Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Overflow Utilities */
.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

/* Opacity */
.opacity-75 {
  opacity: 0.75 !important;
}

/* Text Decoration */
.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

/* Display Utilities */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

/* Flex Utilities */
.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-lg-end {
  justify-content: flex-end !important;
}

.justify-content-md-end {
  justify-content: flex-end !important;
}

/* Gap Utilities */
.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.g-0 {
  gap: 0 !important;
}

.g-3 {
  gap: 1rem !important;
}

.g-4 {
  gap: 1.5rem !important;
}

/* Margin Utilities */
.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

.mb-md-0 {
  margin-bottom: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* Padding Utilities */
.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-lg-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Width/Height Utilities */
.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

/* Font Weight */
.fw-bold {
  font-weight: 700 !important;
}

/* Font Size */
.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

/* Position Utilities */
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.top-0 {
  top: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

/* List Styles */
.list-unstyled {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Container */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 35, 126, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 12px;
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .display-2 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .booking-widget {
    margin-top: 3rem;
  }
  
  .chat-widget {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 1rem;
  }
  
  .col-lg-7,
  .col-lg-5,
  .col-lg-4,
  .col-lg-6,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-3 {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .justify-content-lg-end {
    justify-content: center !important;
  }
  
  .px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  .col-md-4,
  .col-md-6,
  .col-md-3,
  .col-md-2 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .justify-content-md-end {
    justify-content: center !important;
  }
  
  .mb-md-0 {
    margin-bottom: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .timeline-container {
    padding-left: 1rem;
  }
}

@media (max-width: 575.98px) {
  .col-sm-6 {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1rem !important;
  }
  
  .booking-widget {
    padding: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Spinner */
.spinner-border {
  border: 3px solid rgba(0, 191, 165, 0.3) !important;
  border-top-color: var(--secondary-color) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1A237E;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-light);
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--secondary-color);
  color: #FFFFFF;
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .chat-widget,
  .btn,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}