html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f5f2;
  color: #233142;
  line-height: 1.7;
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 14px 0;
  border-bottom: 2px solid #ffc107;
}

.navbar-logo {
  text-decoration: none;
  margin-right: auto;
}

.brand-title {
  color: #233142;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.navbar-contact-icons {
  display: flex;
  gap: 12px;
}

.contact-icon-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffc107;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-icon-mobile:hover {
  background: #e6b000;
  transform: scale(1.1);
}

.navbar-contact-desktop {
  gap: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: #233142;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-info-item i {
  color: #ffc107;
  font-size: 1rem;
}

.contact-info-item:hover {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.contact-info-item span {
  color: #5f6b7a;
}

.contact-info-item:hover span {
  color: #ffc107;
}


.hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 70px;
  color: white;
  background: linear-gradient(135deg, #0f2438 0%, #1d4560 45%, #244a61 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.2), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.2);
  color: #ffd56b;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
label {
    display: inline-block;
    color: #000;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-width: 190px;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 20px;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.96);
  color: #233142;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.hero-card h3 {
  font-weight: 700;
  margin-bottom: 16px;
}

.stat-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.stat-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-card {
  padding: 8px 4px;
}

.about-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #233142;
  margin-bottom: 14px;
}

.about-card p {
  color: #5f6b7a;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}

.feature-list li {
  margin-bottom: 10px;
  color: #233142;
  font-weight: 600;
}

.feature-list i {
  color: #f4b400;
  margin-right: 8px;
}

.about-image-card {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 36, 56, 0.88), rgba(244, 180, 0, 0.75)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=900&q=80') center/cover;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.about-image-content {
  padding: 28px;
  color: white;
}

.about-image-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #233142;
  margin-top: 20px;
  margin-bottom: 10px;
}

.form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
}

.card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 18px 40px rgba(17, 24, 39, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 24px 50px rgba(17, 24, 39, 0.14);
}

.card img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 300px;
  transition: transform 0.3s ease;
}

.gallery-card {
  border-radius: 24px;
}

.gallery-thumb {
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: scale(1.02);
}

.gallery-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #233142;
  margin-bottom: 32px;
}

.gallery-preview-modal .modal-body {
  background: #f7f5f2;
}

#galleryModalImage {
  max-height: 72vh;
}

#galleryModalCaption {
  font-size: 1rem;
  color: #64748b;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.icons i {
  color: #007bff;
  font-size: 18px;
  margin-right: 10px;
}

.old-price {
  text-decoration: line-through;
  color: red;
  font-size: 14px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #28a745;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box i {
  font-size: 15px;
  color: #333;
  text-align: center;
  margin: auto;
}

.icon-box p {
  font-size: 10px;
  margin-top: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

contact-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #f9f7f2 0%, #f3eee7 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #233142;
  margin-bottom: 8px;
}

.section-title p {
  color: #5f6b7a;
  max-width: 650px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-info-box, .contact-form-box {
  background: #f9f7f2;
  border-radius: 20px;
  padding: 34px;
  min-height: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-box h3, .contact-form-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #233142;
  margin-bottom: 10px;
}

.map-box {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
}

.contact-info-box p {
  color: #5f6b7a;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #233142;
  font-weight: 600;
}

.contact-item i {
  color: #f4b400;
}

.contact-item a {
  color: #233142;
  text-decoration: none;
}

.contact-item a:hover {
  color: #f4b400;
}

.map-box {
  margin-top: 18px;
  overflow: hidden;
}

.contact-form-box .form-control {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e4dcd0;
}

.contact-form-box .form-control:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 0.2rem rgba(244, 180, 0, 0.2);
}

.contact-form-box .btn-warning {
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
}

.map-box {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
}

.map-button-container {
  display: block;
  min-height: 360px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f2438 0%, #1d4560 100%);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-button-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-button-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 30px;
}

.map-button-content i {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: #ffc107;
}

.map-button-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.map-button-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

footer {
  background-color: #333;
  padding: 10px 0;
  font-size: 14px;
  height: fit-content;
}

footer .footer .copyright {
  text-align: center;
  color: white;
  font-weight: 600;
}

footer .footer .copyright a {
  color: white;
  text-decoration: none;
}

footer .footer .copyright a:hover {
  text-decoration: underline;
}

.footer-img {
  justify-content: space-between;
  display: flex;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9999;
}

.text-white {
  background-color: #00000077;
  padding: 10px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-card {
    margin-top: 12px;
  }

  .about-image-card {
    min-height: 280px;
  }

  .text-white {
    background-color: #00000026;
    padding: 10px;
    margin-top: 0px;
  }

  .card img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 178px;
    transition: transform 0.3s ease;
}
}