/* Deep Ocean Gold Architecture Studio Theme - CSS */

/* ============================================
   ROOT VARIABLES & BASE STYLES
   ============================================ */
:root {
  --primary-color: #1A4D7A;
  --secondary-color: #D4AF37;
  --ocean-dark: #0d2840;
  --ocean-medium: #1A4D7A;
  --ocean-light: #2d6ca6;
  --gold-dark: #b8941f;
  --gold-medium: #D4AF37;
  --gold-light: #e6c560;
  --text-light: #f8f9fa;
  --text-dark: #212529;
  --transition-speed: 0.3s;
}

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

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

/* ============================================
   NAVIGATION STYLES
   ============================================ */
.navbar {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-medium) 100%) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(26, 77, 122, 0.3);
  transition: all var(--transition-speed) ease;
}

.navbar-dark .navbar-brand {
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
}

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

.navbar-dark .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.navbar-dark .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  transition: width var(--transition-speed) ease;
}

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

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

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

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

.fixed-top {
  z-index: 1030;
}

.sticky-top {
  top: 76px;
  z-index: 1020;
}

/* ============================================
   HERO SECTION
   ============================================ */
.position-relative.overflow-hidden {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-medium) 50%, var(--ocean-light) 100%);
  position: relative;
}

.position-relative.overflow-hidden::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.05) 35px, rgba(212, 175, 55, 0.05) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
  animation: backgroundShift 20s linear infinite;
}

@keyframes backgroundShift {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-weight: 700;
  letter-spacing: -1px;
}

.text-white {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light) !important;
}

.bi-chevron-down {
  animation: bounce 2s infinite;
  color: var(--secondary-color) !important;
  font-size: 2rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.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.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark)) !important;
  color: var(--ocean-dark) !important;
  border: 2px solid var(--secondary-color) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--secondary-color)) !important;
  color: var(--ocean-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-light)) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--ocean-medium) !important;
  box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean-medium)) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 77, 122, 0.5);
}

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

.btn-outline:hover {
  background: var(--ocean-medium) !important;
  color: var(--text-light) !important;
  transform: translateY(-3px);
}

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

.btn-outline-light:hover {
  background: var(--text-light) !important;
  color: var(--ocean-medium) !important;
  transform: translateY(-3px);
}

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

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

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

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

.btn-success {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: #ffffff !important;
  border: 2px solid #28a745 !important;
}

.btn-success:hover {
  background: linear-gradient(135deg, #20c997, #28a745) !important;
  color: #ffffff !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  border: none;
  border-radius: 15px;
  transition: all var(--transition-speed) ease;
  overflow: hidden;
  background: #ffffff;
}

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

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

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

.card-body {
  padding: 1.5rem;
}

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

.card-text {
  color: var(--text-dark);
  line-height: 1.8;
}

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

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

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

/* ============================================
   ROOM/PROJECT CARDS
   ============================================ */
.room-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  transition: all var(--transition-speed) ease;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.room-card:hover .room-image {
  transform: scale(1.15);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.9), rgba(212, 175, 55, 0.7));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.price-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark));
  color: var(--ocean-dark) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
}

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

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

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(26, 77, 122, 0.95), transparent);
  padding: 2rem;
  transform: translateY(70%);
  transition: transform var(--transition-speed) ease;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-bio {
  opacity: 0;
  transition: opacity var(--transition-speed) ease 0.2s;
}

.team-card:hover .team-bio {
  opacity: 1;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2rem;
  border-left: 3px solid var(--secondary-color);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px var(--ocean-medium);
}

.timeline-item:hover::before {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all var(--transition-speed) ease;
  background: #ffffff;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
  outline: none;
}

.form-label {
  color: var(--ocean-medium) !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.form-check-input {
  border: 2px solid var(--ocean-medium);
  cursor: pointer;
}

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

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

.invalid-feedback {
  color: #dc3545 !important;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #28a745 !important;
}

/* ============================================
   BADGES & LABELS
   ============================================ */
.badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.bg-primary {
  background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-light)) !important;
  color: var(--text-light) !important;
}

.bg-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark)) !important;
  color: var(--ocean-dark) !important;
}

.bg-white {
  background: #ffffff !important;
  color: var(--text-dark) !important;
}

.bg-success {
  background: #28a745 !important;
  color: #ffffff !important;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb) !important;
  color: #0c5460 !important;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb) !important;
  color: #155724 !important;
}

.alert .bi {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

/* ============================================
   NAVIGATION TABS & PILLS
   ============================================ */
.nav-pills .nav-link {
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  color: var(--ocean-medium) !important;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  background: transparent;
  border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
  background: rgba(26, 77, 122, 0.1);
  border-color: var(--ocean-medium);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-light)) !important;
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

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

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-light)) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all var(--transition-speed) ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark)) !important;
  color: var(--ocean-dark) !important;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d2840'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

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

.accordion-body {
  padding: 1.5rem;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.8;
}

/* ============================================
   TABLES
   ============================================ */
.table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.table thead {
  background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-light));
  color: var(--text-light) !important;
}

.table thead th {
  border: none;
  padding: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  color: var(--text-light) !important;
}

.table tbody tr {
  transition: all var(--transition-speed) ease;
}

.table-hover tbody tr:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: scale(1.01);
}

.table td {
  padding: 1rem;
  vertical-align: middle;
  color: var(--text-dark);
  border-bottom: 1px solid #e0e0e0;
}

/* ============================================
   ICONS
   ============================================ */
.bi {
  vertical-align: middle;
  transition: all var(--transition-speed) ease;
}

.bi-star-fill {
  color: var(--secondary-color);
}

.bi-star-half {
  color: var(--secondary-color);
}

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

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

/* ============================================
   MASONRY GRID
   ============================================ */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-grid .col {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* ============================================
   INPUT GROUPS
   ============================================ */
.input-group {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.input-group .form-control {
  border-radius: 0;
  border-right: none;
}

.input-group .btn {
  border-radius: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-medium) 100%);
  color: var(--text-light) !important;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

footer h5,
footer .h5 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  color: var(--text-light) !important;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

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

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

footer .bi {
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: all var(--transition-speed) ease;
}

footer .bi:hover {
  color: var(--gold-light);
  transform: scale(1.2) rotate(5deg);
}

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

/* ============================================
   SECTION STYLING
   ============================================ */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

.h2, .h4, .h5 {
  color: var(--ocean-medium);
  font-weight: 700;
}

.text-muted {
  color: #6c757d !important;
}

/* ============================================
   BORDERS
   ============================================ */
.border-0 {
  border: none !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-start {
  border-left: 3px solid var(--secondary-color) !important;
}

/* ============================================
   ROUNDED ELEMENTS
   ============================================ */
.rounded {
  border-radius: 0.375rem !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

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

/* ============================================
   IMAGES
   ============================================ */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: all var(--transition-speed) ease;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.text-decoration-none {
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

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

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

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

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

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

.d-flex {
  display: flex !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;
}

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

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

.gap-2 {
  gap: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

.mt-5 {
  margin-top: 3rem !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;
}

.p-0 {
  padding: 0 !important;
}

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

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

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

.pt-4 {
  padding-top: 1.5rem !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;
}

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

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

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

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

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

/* ============================================
   POSITIONING
   ============================================ */
.position-relative {
  position: relative !important;
}

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

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

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

.top-50 {
  top: 50% !important;
}

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

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

.start-50 {
  left: 50% !important;
}

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

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
  .display-1 { font-size: 3.5rem; }
  .display-2 { font-size: 3rem; }
  .display-3 { font-size: 2.5rem; }
  .display-4 { font-size: 2rem; }
  .display-5 { font-size: 1.75rem; }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(13, 40, 64, 0.98);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-nav {
    gap: 0 !important;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .display-1 { font-size: 3rem; }
  .display-2 { font-size: 2.5rem; }
  .display-3 { font-size: 2rem; }
  .display-4 { font-size: 1.75rem; }
  .display-5 { font-size: 1.5rem; }
  
  section {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .display-1 { font-size: 2.5rem; }
  .display-2 { font-size: 2rem; }
  .display-3 { font-size: 1.75rem; }
  .display-4 { font-size: 1.5rem; }
  .display-5 { font-size: 1.25rem; }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .display-1 { font-size: 2rem; }
  .display-2 { font-size: 1.75rem; }
  .display-3 { font-size: 1.5rem; }
  .display-4 { font-size: 1.25rem; }
  .display-5 { font-size: 1.1rem; }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .position-relative.overflow-hidden {
    min-height: 80vh;
  }
  
  .navbar-brand {
    font-size: 1.3rem !important;
  }
  
  .room-image-wrapper {
    height: 220px;
  }
  
  .team-card {
    height: 350px;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-slide-in-left {
  animation: slideInFromLeft 0.8s ease forwards;
}

.animate-slide-in-right {
  animation: slideInFromRight 0.8s ease forwards;
}

.animate-slide-in-bottom {
  animation: slideInFromBottom 0.8s ease forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease forwards;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 12px;
}

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

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

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

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner-border {
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top-color: var(--secondary-color);
}

/* ============================================
   SPECIAL EFFECTS
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--ocean-medium), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
  transition: all var(--transition-speed) ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}