/* ===== Queen Hotel - Custom Styles ===== */

:root {
  --primary: #0F4C5C;
  --secondary: #C8A97E;
  --background: #F8F8F8;
  --text: #2D2D2D;
  --white: #FFFFFF;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

/* ===== Navbar ===== */
.navbar {
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  z-index: 1050;
  width: 100%;
  max-width: 100vw;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-brand .brand-text h5 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  color: inherit;
}

.navbar-brand .brand-text span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

.navbar-toggler {
  border: none;
  padding: 4px;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 1.1rem;
  height: 1.1rem;
}

.navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--secondary) !important;
}

.navbar.scrolled .nav-link {
  color: var(--text) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--secondary) !important;
}

.navbar-scrolled-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(45, 45, 45, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar.scrolled .navbar-brand .brand-text h5 {
  color: var(--primary);
}

.navbar:not(.scrolled) .navbar-brand .brand-text h5 {
  color: var(--white);
}

.navbar.scrolled .navbar-brand .brand-text span {
  color: var(--secondary);
}

/* ===== Buttons ===== */
.btn-luxury-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-luxury-primary:hover {
  background: #0d3f4c;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 76, 92, 0.3);
}

.btn-luxury-secondary {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-luxury-secondary:hover {
  background: #b89a6f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.btn-luxury-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-luxury-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: kenBurns 1.5s ease-out forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

@keyframes kenBurns {
  to { transform: scale(1); }
}

.hero-bg img {
  animation: kenBurnsImg 1.5s ease-out forwards;
}

@keyframes kenBurnsImg {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-subtitle {
  color: var(--secondary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .text-secondary {
  color: var(--secondary);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: bounce 1.5s infinite ease-in-out;
}

.scroll-indicator span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary);
}

.page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* ===== Section Styles ===== */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .subtitle {
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-title .bar {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Cards ===== */
.card-luxury {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
}

.card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

.card-luxury .card-body {
  padding: 1.75rem;
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--background);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(15, 76, 92, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: rgba(200, 169, 126, 0.15);
  color: var(--secondary);
}

.service-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Amenity Cards ===== */
.amenity-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 76, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  background: rgba(200, 169, 126, 0.15);
  color: var(--secondary);
  transform: scale(1.1);
}

.amenity-card p {
  font-weight: 500;
  font-size: 0.85rem;
  margin: 0;
  color: var(--text);
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.testimonial-card .stars {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.testimonial-card .review {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card .reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
  margin-right: 0.75rem;
}

.testimonial-card .reviewer h6 {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card .reviewer small {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Offer Cards ===== */
.offer-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.offer-header {
  padding: 1.5rem;
  color: var(--white);
}

.offer-header .duration {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.offer-body {
  padding: 1.5rem;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offer-price .current {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.offer-price .original {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--background);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-item .faq-question:hover {
  color: var(--secondary);
}

.faq-item .faq-question i {
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item .faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== Forms ===== */
.form-luxury .form-control,
.form-luxury .form-select {
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--background);
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
  outline: none;
}

.form-luxury .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  z-index: 5;
}

.form-luxury textarea ~ .input-icon {
  top: 1.25rem;
  transform: none;
}

.form-luxury .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-luxury .text-secondary-custom {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.35rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: var(--white);
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 0.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 8px 0 0 8px;
  padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
  outline: none;
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Stats ===== */
.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-item .stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
  color: var(--secondary);
}

/* ===== About Section ===== */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--secondary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(200, 169, 126, 0.4);
  text-align: center;
}

.about-badge .number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: block;
}

.about-badge .label {
  font-size: 0.8rem;
}

/* ===== Mission/Vision Cards ===== */
.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.mv-card i {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mv-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===== Contact Cards ===== */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(15, 76, 92, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--secondary);
}

.contact-card .label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.contact-card .value {
  font-weight: 600;
  color: var(--primary);
}

/* ===== CTA Banner ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3f4c 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.08);
}

.cta-section::before {
  width: 256px;
  height: 256px;
  top: -128px;
  right: -128px;
}

.cta-section::after {
  width: 256px;
  height: 256px;
  bottom: -128px;
  left: -128px;
}

/* ===== Contact Form Wrapper ===== */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Success Message ===== */
.success-message {
  text-align: center;
  padding: 3rem 1rem;
}

.success-message i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.success-message p {
  color: #666;
  font-size: 1.05rem;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100vw;
  }

  .navbar-brand .brand-text {
    max-width: 140px;
    overflow: hidden;
  }

  .navbar-brand .brand-text h5 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-collapse {
    background: var(--primary);
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: calc(100vw - 2rem);
    max-width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-collapse .navbar-nav {
    gap: 0 !important;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .navbar-collapse .nav-item {
    width: 100%;
  }

  .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.6rem 0.75rem !important;
    border-radius: 8px;
    font-size: 0.85rem;
    display: block;
    width: 100%;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary) !important;
  }

  .navbar-collapse .btn-luxury-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.6rem 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .navbar-brand .brand-text {
    display: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

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

/* ===== Utility ===== */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-secondary-custom { background-color: var(--secondary) !important; }
