/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


/* Apply globally - Modern, clean font like Giga.ai */
body, header, .navbar, .nav-links, .logo, .logo-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ================== HEADER / NAVBAR ================== */
header {
  background-color: #ffffff;
  color: #001d3d;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #001d3d !important;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #001d3d !important;
  letter-spacing: -0.5px;
  white-space: nowrap;
}


.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  padding-right: 0;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #1a1a1a !important;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #001d3d !important;
  background: rgba(0, 29, 61, 0.05);
}

.nav-links a:last-child {
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  margin-left: 0.5rem;
}

.nav-links a:last-child:hover {
  background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 29, 61, 0.2);
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #001d3d;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.login-link {
  display: flex;
  align-items: center;
  color: #001d3d !important;
  text-decoration: none;
}

.login-icon i,
.login-text {
  color: #001d3d !important;
}

.login-text {
  display: none;
}

/* ================== ABOUT SECTION ================== */
/* BIO SECTION STYLISH */
.bio-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 2rem;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.bio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.bio-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  background: #ffffff;
}

.bio-image h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  color: #001d3d;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.bio-image p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.bio-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
  display: block;
}

.bio-image img:hover {
  transform: scale(1.02);
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-content h4 {
  color: #001d3d !important;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bio-content p {
  margin-bottom: 0;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  color: #4a4a4a;
}

.bio-button {
  display: inline-block;
  align-self: flex-start;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 29, 61, 0.2);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.bio-button:hover {
  background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 29, 61, 0.3);
  transform: translateY(-2px);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0 0;
}

/* Stylish value items */
.value-item {
  background: #ffffff;
  color: #001d3d;
  font-weight: 500;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0, 29, 61, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 29, 61, 0.12);
  border-color: rgba(0, 29, 61, 0.2);
}

/* ================== SECTIONS ================== */
section {
  padding: 2rem;
}

/* ================== SERVICES SECTION ================== */
.services-section {
  background: #ffffff;
  padding: 6rem 2rem;
  font-family: 'Inter', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #001d3d;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 29, 61, 0.15);
  border-color: rgba(0, 29, 61, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 29, 61, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #001d3d;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
  width: 100%;
  opacity: 1;
}

.roomimage {
  border-radius: 8px;
  max-height: 40vh;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ================== SCROLL ICON ================== */
.scroll-down {
  position: absolute;
  bottom: 25vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down a {
  display: inline-block;
  background-color: rgba(204, 160, 0, 0.8);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #001d3d;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.scroll-down a:hover {
  background-color: #001d3d;
  color: #cca000;
}

@media (max-width: 1180px) {
  .scroll-down a {
    display: none;
  }
}

/* ================== CONTACT SECTION ================== */
.contact-section-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 2rem;
  font-family: 'Inter', sans-serif;
}

.contact-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-left,
.contact-info-right {
  padding: 3rem;
}

/* Form styling */
.contact-form-left h2 {
  margin-bottom: 2.5rem;
  color: #001d3d;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2rem);
  letter-spacing: -0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #001d3d;
  box-shadow: 0 0 0 3px rgba(0, 29, 61, 0.1);
}

.contact-form button {
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 29, 61, 0.2);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 29, 61, 0.3);
}

.contact-info-right {
  background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-right h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.contact-info-right p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-right ul {
  list-style: none;
  padding: 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.contact-info-right ul li {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-info-right ul li strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ================== FOOTER ================== */
.site-footer {
  background: #ffffff;
  color: #1a1a1a !important;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 2rem;
  gap: 2rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  color: #001d3d;
  font-size: 1.4rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #003566;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #001d3d;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #6a6a6a;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

/*======================================MODAL=====================================*/
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: rgba(255,255,255,0.85);
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(204, 160, 0, 0.15);
}


.modal-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.confirm-btn,
.cancel-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.confirm-btn {
  background-color: #28a745;
  color: white;
}

.cancel-btn {
  background-color: #dc3545;
  color: white;
}

@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Large Modal for Booking Form */
.modal-large .modal-content {
  max-width: 800px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.modal-header .close {
  font-size: 2rem;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

.modal-header .close:hover {
  color: #333;
}


/* Booking Section Styles */

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

.btn-secondary {
  background-color: #cca000;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-secondary:hover {
  background-color: #001d3d;
  color: #ffffff;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.help-text {
  display: block;
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.875rem;
}

/* Alert Messages */
.alert-message {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alert-content {
  padding: 1rem 1.5rem;
  position: relative;
  font-weight: 500;
  font-size: 1rem;
}

.alert-success {
  background-color: #cca000;
  color: #001d3d;
  border: 1px solid #001d3d;
}

.alert-error {
  background-color: #001d3d;
  color: #cca000;
  border: 1px solid #cca000;
}

.alert-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}

.alert-close:hover {
  opacity: 1;
}

/*=====================================================================================================

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  /* Navbar Mobile */
  .navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: none;
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links a {
    margin: 0;
    padding: 1rem 1.5rem;
    color: #1a1a1a !important;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    font-size: 0.9rem;
  }

  .nav-links a:last-child {
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    color: #ffffff !important;
    margin: 0.75rem 1rem 0.25rem 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
    font-size: 0.85rem;
    width: auto;
    display: block;
    box-sizing: border-box;
  }

  .nav-links a:hover {
    background: rgba(0, 29, 61, 0.05);
  }

  .nav-links a:last-child:hover {
    background: linear-gradient(135deg, #003566 0%, #001d3d 100%);
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 1.5rem;
    color: #001d3d;
    cursor: pointer;
    padding: 0.5rem;
  }

  .login-icon {
    display: none;
  }

  .login-text {
    display: inline;
  }

  /* Bio Section Mobile */
  .bio-section {
    padding: 3rem 1.5rem;
  }

  .bio-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-image {
    padding: 1.5rem;
  }

  .bio-image img {
    max-height: 300px;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  /* Contact Section Mobile */
  .contact-section-light {
    padding: 3rem 1rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-form-left,
  .contact-info-right {
    padding: 2rem;
  }

  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact-info {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo-text {
    font-size: 0.7rem;
  }

  .bio-section {
    padding: 2rem 1rem;
  }

  .bio-image {
    padding: 1rem;
  }

  .services-section {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .contact-section-light {
    padding: 2rem 0.5rem;
  }

  .contact-form-left,
  .contact-info-right {
    padding: 1.5rem;
  }
}
/*Button*/
.button-message {
  background: #cca000 !important; /* gold background color */
  color: #fff !important; /* initial text color */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition for hover */
}

.button-message:hover {
  background-color: #001d3d !important; /* dark navy blue on hover */
  color: #ffffff !important; /* text color on hover */
}


