/* Nordic Twilight Architecture Studio - Custom Styles */

:root {
  --primary-color: #2C5F7C;
  --secondary-color: #D4AF37;
  --dark-primary: #1a3d4f;
  --light-primary: #4a8cae;
  --dark-secondary: #a68a2a;
  --light-gray: #f5f5f5;
  --medium-gray: #666;
  --dark-gray: #333;
  --white: #ffffff;
  --black: #000000;
  --text-light: #e8e8e8;
  --twilight-purple: #4a4a6a;
  --nordic-ice: #b8d4e8;
  --shadow-color: rgba(44, 95, 124, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
}

.display-3 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

.display-4 {
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
}

.display-5 {
  font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
}

.display-6 {
  font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-primary) 100%) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid var(--white) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 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='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  transition: all 0.3s ease !important;
  position: relative;
  border-radius: 5px;
}

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

.nav-link:hover {
  color: var(--secondary-color) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

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

.nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  font-weight: 600 !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--twilight-purple) 0%, var(--primary-color) 50%, var(--dark-primary) 100%);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  background-image: linear-gradient(rgba(44, 95, 124, 0.7), rgba(26, 61, 79, 0.8)),
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F7C" width="1200" height="600"/><g opacity="0.3"><path fill="%23D4AF37" d="M0 300L100 280L200 320L300 290L400 310L500 280L600 300L700 290L800 310L900 280L1000 300L1100 290L1200 310V600H0Z"/></g></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  animation: parallaxMove 30s ease-in-out infinite;
}

@keyframes parallaxMove {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
  color: var(--white) !important;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.rune-divider {
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  margin: 2rem auto;
  position: relative;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.rune-divider::before {
  content: '❄';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  font-size: 1.5rem;
  background-color: var(--primary-color);
  padding: 0 10px;
}

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

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

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

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

.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--dark-gray) !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--dark-secondary) !important;
  border-color: var(--dark-secondary) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
  border-color: var(--white) !important;
  color: var(--white) !important;
  background-color: transparent !important;
}

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

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

.btn-outline-secondary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
}

.btn-outline-dark {
  border-color: var(--dark-gray) !important;
  color: var(--dark-gray) !important;
}

.btn-outline-dark:hover {
  background-color: var(--dark-gray) !important;
  color: var(--white) !important;
}

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.9rem !important;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-arrow {
  color: var(--secondary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  color: var(--white);
  transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--light-gray), transparent);
}

.welcome-section img {
  border-radius: 15px;
  transition: all 0.5s ease;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.welcome-section img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 50px rgba(44, 95, 124, 0.3);
}

/* Services Showcase */
.services-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
  position: relative;
}

.services-showcase h2 {
  color: var(--primary-color) !important;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.services-showcase h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transition: all 0.5s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px var(--shadow-color) !important;
  border-color: var(--secondary-color);
}

.service-card .bi {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .bi {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary-color);
}

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

.service-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.gallery-section img {
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
  height: 300px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 10;
  position: relative;
}

/* Suite Item */
.suite-item {
  margin-bottom: 2rem;
}

.suite-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.2);
  border-color: var(--secondary-color);
}

.suite-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.suite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.suite-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(44, 95, 124, 0.9) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.suite-card:hover .suite-overlay {
  opacity: 1;
}

.suite-details {
  padding: 2rem;
}

.suite-details h3 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.suite-details .badge {
  background-color: var(--secondary-color) !important;
  color: var(--dark-gray) !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Experience Card */
.experience-card {
  border: none !important;
  border-radius: 15px !important;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

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

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

.card-body {
  padding: 2rem;
}

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

.card-text {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--twilight-purple) 100%);
  color: var(--white);
}

.testimonial-section blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  border-left: 5px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.testimonial-section blockquote:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-section blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light) !important;
  margin-bottom: 1.5rem;
}

.blockquote-footer {
  color: var(--secondary-color) !important;
  font-size: 1rem;
  font-weight: 600;
}

/* Carousel */
.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.carousel-inner {
  border-radius: 15px;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

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

.carousel-indicators button {
  background-color: var(--secondary-color) !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary-color) 50%, var(--light-primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '❄';
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 5rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.cta-section::after {
  content: '❄';
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 4rem;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-section h2 {
  color: var(--white) !important;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Forms */
.form-floating {
  margin-bottom: 1.5rem;
}

.form-control,
.form-select {
  border: 2px solid var(--light-gray) !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  transition: all 0.3s ease;
  background-color: var(--white) !important;
  color: var(--dark-gray) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(44, 95, 124, 0.25) !important;
  background-color: var(--white) !important;
}

.form-label {
  color: var(--medium-gray) !important;
  font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color) !important;
}

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

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

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

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* Progress Bar */
.progress {
  height: 25px;
  border-radius: 15px;
  background-color: var(--light-gray) !important;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-primary) 100%) !important;
  border-radius: 15px;
  transition: width 0.6s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alert */
.alert {
  border-radius: 10px !important;
  border: none !important;
  padding: 1.5rem !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.alert-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.alert-info {
  background-color: rgba(44, 95, 124, 0.1) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
}

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

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

/* Accordion */
.accordion {
  border-radius: 15px;
  overflow: hidden;
}

.accordion-item {
  border: 1px solid rgba(44, 95, 124, 0.2) !important;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  padding: 1.5rem !important;
  border: none !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(44, 95, 124, 0.25) !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(31%) sepia(54%) saturate(747%) hue-rotate(157deg) brightness(92%) contrast(88%);
}

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

.accordion-body {
  padding: 2rem !important;
  background-color: var(--light-gray) !important;
  color: var(--dark-gray) !important;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-primary) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
}

.footer h5,
.footer h6 {
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer a {
  color: var(--text-light) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.3rem 0;
}

.footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.footer .bi {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.footer a:hover .bi {
  transform: scale(1.2);
}

.footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 3rem;
}

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

.footer .small {
  font-size: 0.9rem;
}

/* Social Media Icons */
.bi-facebook,
.bi-instagram,
.bi-twitter {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-twitter:hover {
  transform: translateY(-5px) scale(1.2);
}

/* Privacy Navigation */
.privacy-nav {
  position: sticky;
  top: 100px;
}

.privacy-nav .nav-link {
  color: var(--medium-gray) !important;
  padding: 0.75rem 1rem !important;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.privacy-nav .nav-link:hover,
.privacy-nav .nav-link.active {
  color: var(--primary-color) !important;
  border-left-color: var(--secondary-color);
  background-color: var(--light-gray);
}

.privacy-content {
  line-height: 1.8;
  color: var(--dark-gray);
}

.privacy-content h2,
.privacy-content h3 {
  color: var(--primary-color) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Card */
.card {
  border-radius: 15px !important;
  border: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
}

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

.card.border-0 {
  box-shadow: none !important;
}

/* Badge */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

.text-muted {
  color: var(--medium-gray) !important;
}

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

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

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

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

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

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

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

.shadow {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

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

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

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

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

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

/* Opacity */
.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

/* Object Fit */
.object-fit-cover {
  object-fit: cover !important;
}

/* Responsive Utilities */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(26, 61, 79, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  }
  
  .nav-link {
    padding: 1rem !important;
    margin: 0.5rem 0;
    border-radius: 8px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-content p {
    font-size: 1.1rem !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .welcome-section,
  .services-showcase,
  .gallery-section,
  .testimonial-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.8rem !important;
  }
  
  .carousel-item img {
    height: 350px;
  }
  
  .suite-image {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero-content p {
    font-size: 1rem !important;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .me-3 {
    margin-right: 0 !important;
  }
  
  .gallery-section img {
    height: 250px;
  }
  
  .testimonial-section blockquote {
    padding: 2rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .carousel-item img {
    height: 250px;
  }
  
  .suite-image {
    height: 200px;
  }
  
  .accordion-button,
  .accordion-body {
    padding: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .hero-content h1 {
    font-size: 1.75rem !important;
  }
  
  .display-1,
  .display-3,
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .service-card .bi {
    font-size: 2.5rem;
  }
  
  .gallery-section img {
    height: 200px;
  }
  
  .welcome-section,
  .services-showcase,
  .gallery-section,
  .testimonial-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .carousel-item img {
    height: 200px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

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

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

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

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

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

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

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

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

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

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

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

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

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--light-primary));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-primary);
}

/* Print Styles */
@media print {
  .navbar,
  .scroll-indicator,
  .btn,
  .footer {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
}