* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #111;
}

.section {
  padding: 80px 8%;
}

.light {
  background: #f7f8fa;
}
/* NAVBAR */
/*  NAVBAR  */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0b1c2d, #102a43);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #4fd1c5;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/*  HAMBURGER  */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/*  MOBILE MENU  */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);

  display: flex;
  flex-direction: column;   
  align-items: flex-start;

  padding: 24px;
  gap: 22px;

  background: rgba(11, 28, 45, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translateY(-120%);
  transition: transform 0.4s ease;
  z-index: 999;
}
.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* ACTIVE MOBILE MENU */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* HERO */
/* HERO */
.hero {
  position: relative;
  height: auto;
  background: url("/image/download.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,30,0.85),
    rgba(10,20,30,0.35)
  );
  z-index: 1;
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 55%;
  color: #fff;
}

.hero-left h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-left p {
  color: #d1d5db;
  margin-bottom: 24px;
}

.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.stat-box {
  background: rgba(0,0,0,0.4);
  padding: 16px 20px;
  border-radius: 14px;
}

.explore-btn {
  display: inline-flex;
  padding: 14px 26px;
  background: #0b1c2d;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

/* FORM BOX */
.offer-box {
  position: relative;
  z-index: 3;
  width: 360px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* FORM HEADER */
.offer-header {
  background: linear-gradient(135deg, #0b1c2d, #102a43);
  color: #fff;
  padding: 24px;
}

/* FORM */
.user{
  margin-right: 30px;
}
.offer-form {
  padding: 24px;
}

.offer-form label {
  font-size: 13px;
  margin: 14px 0 6px;
  display: block;
}

.offer-form input,
.offer-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

/* PHONE GROUP */
.phone-group {
  display: flex;
  gap: 10px;
}
/* intl-tel-input container */
.iti {
  width: 100%;
}

/* input style */
.iti input {
  width: 100%;
  padding: 14px 18px 14px 58px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
}

/* focus */
.iti input:focus {
  border-color: #0b1c2d;
  box-shadow: 0 0 0 3px rgba(11, 28, 45, 0.1);
}

/* flag container */
.iti__flag-container {
  border-radius: 999px 0 0 999px;
}

/* remove ugly borders */
.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  border-right: 1px solid #e5e7eb;
}

/* dropdown */
.iti__country-list {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* BUTTON */
.request-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: #0b1c2d;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.request-btn:hover {
  background: #142f4d;
}


.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 26px;
  background: #0b1c2d;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #142f4d;
  transform: translateY(-2px);
}


/* SECTION */
.overview-section {
  padding: 80px 100px;
  background: #fff;
}

/* GRID */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.section-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #6b7280;
}

.overview-left h2 {
  font-size: 44px;
  margin: 16px 0 24px;
}

.overview-left p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #0b1c2d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-download:hover {
  background: #142f4d;
  transform: translateY(-2px);
}

/* RIGHT */
.overview-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* IMAGES */
.image-group {
  display: flex;
  gap: 24px;
}

.image-box {
  position: relative;
  overflow: hidden;       
  border-radius: 20px;
  cursor: pointer;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.image-box:hover img {
  transform: scale(1.15);
}
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-box:hover::after {
  opacity: 1;
}

.image-box.large {
  width: 360px;
  height: 300px;
}

.image-box.small {
  width: 220px;
  height: 300px;
}

/* INFO CARD */
.info-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.info-item span {
  font-size: 14px;
  color: #6b7280;
}

.info-item strong {
  display: block;
  margin-top: 6px;
  color: #0b1c2d;
  font-size: 16px;
}

.divider {
  grid-column: span 2;
  height: 1px;
  background: #e5e7eb;
}
/* ABOUT SECTION */
.about-section {
  padding: 100px 6%;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.about-container {
  max-width: 980px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
}

.about-divider {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  margin: 18px auto 0;
  border-radius: 3px;
}

/* CONTENT */
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 22px;
}

.about-content strong {
  color: #0b1c2d;
  font-weight: 600;
}
/*  GALLERY  */
.gallery-section {
  padding: 80px 6%;
  text-align: center;
  background: #fff;
  margin-bottom: -80px;
}

.gallery-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #64748b;
  margin-bottom: 50px;
}

/* Wrapper */
.big-gallery {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}

.gallery-container {
  position: relative;
  max-width: 1200px;
  height: 650px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
}

/* Slides */
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Text */
.gallery-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}


/* Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: blur(10px);
  color: #000000;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.gallery-nav.prev { left: 25px; }
.gallery-nav.next { right: 25px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.dots span {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dots span.active {
  width: 18px;
  border-radius: 10px;
  background: #fff;
}

/* WHY SECTION */
.why-section {
  background: #ffffff;
  padding: 100px 0;
}

/* CONTENT LOCK */
.why-lock {
  max-width: 920px;              
  margin: auto;
  padding: 0 20px;
}

/* HEADINGS */
.why-lock h2 {
  font-size: 42px;
  line-height: 1.25;
  color: #0b1c2d;
  margin-bottom: 28px;
}

/* SUB HEADINGS */
.why-lock h3 {
  font-size: 28px;
  margin-top: 70px;
  margin-bottom: 18px;
  color: #0b1c2d;
}

/* PARAGRAPHS */
.why-lock p {
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 22px;
}

/* LISTS (PREMIUM SPACING) */
.why-lock ul {
  margin: 24px 0 40px 18px;
}

.why-lock li {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #334155;
}

/* SOFT SECTION DIVIDERS  */
.why-lock h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #0b1c2d, transparent);
  margin-bottom: 18px;
}
.why-lock h3:contains("MAHA"),
.why-lock h3:contains("Trust") {
  margin-top: 90px;
}
.enquire-now,
.enquire-btn {
  position: sticky;
  bottom: 32px;
  margin-top: 40px;
}

/* LOCATION SECTION */
/* BADGE */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 11;
}

.location-section {
  padding: 80px 6%;
  background: #fff;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  color: #666;
}

.address {
  margin-top: 10px;
  color: #444;
  font-size: 14px;
}

/* CONTENT GRID */
.location-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* MAP */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.1);
}

/* FLOATING MAP CARD */
.map-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-card p {
  font-size: 13px;
  color: #666;
}

/* NEARBY */
.nearby h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.nearby-sub {
  color: #666;
  margin-bottom: 30px;
}

/* NEARBY CARD */
.nearby-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.nearby-card .left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nearby-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby-card span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.nearby-card .right {
  text-align: right;
}

.nearby-card .right span {
  font-size: 12px;
  color: #777;
}

/* SECTION */
.amenities-section {
  padding: 100px 60px;
  background: #fff;
}

.title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.sub {
  text-align: center;
  color: #667085;
  margin-bottom: 60px;
}

/* SLIDER WRAPPER */
.slider-wrapper {
  position: relative;
  max-width: 1200px;   
  margin: 0 auto;      
  overflow: hidden;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 10px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* SLIDE BUTTONS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

.slide-btn.left {
  left: 10px;
}

.slide-btn.right {
   right: 10px;
}


.slide-btn:hover {
  background: rgba(0,0,0,0.75);
}

/* CARD */
.card {
  min-width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.12);
}

/* GRADIENT */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* TEXT */
.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.overlay h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

  .slide-btn.left { left: 5px; }
  .slide-btn.right { right: 5px; }

/* FAQ Card */
/* CONTACT US SECTION */
.contact-us-section {
  padding: 90px 6%;
  background: #f8fafc;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.contact-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 10px;
}

.contact-content h4 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-info li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #0f172a;
}

.contact-info a {
  color: #0b1c2d;
  text-decoration: none;
  font-weight: 500;
}

.contact-note {
  font-size: 15px;
  color: #64748b;
  margin-top: 10px;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.contact-form-box h3 {
  font-size: 24px;
  color: #0b1c2d;
  margin-bottom: 20px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b1c2d;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .contact-form-box {
    padding: 28px;
  }
}

/*  CONTACT CTA  */
.contact-cta {
  padding: 80px 20px;
  background: #fff;
}

.contact-card {
  max-width: 1100px;
  margin: auto;
  padding: 40px 45px;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    #eef3ff 0%,
    #f8fbff 40%,
    #fff0f6 100%
  );
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.contact-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 8px;
}

.contact-text p {
  color: #6b7280;
  margin-bottom: 28px;
}

/* FORM */
.contact-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  gap: 20px;
  align-items: end;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  outline: none;
}

.form-group input:focus {
  border-color: #4f46e5;
}

/* PHONE INPUT */
.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5f5;
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
}

.phone-input .flag {
  font-size: 20px;
  margin-right: 6px;
}

.phone-input .code {
  font-size: 14px;
  margin-right: 10px;
  color: #374151;
}

.phone-input input {
  border: none;
  padding: 14px 0;
  flex: 1;
}

/* BUTTON */
.submit-btn {
  background: #6b7280;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.submit-btn:hover {
  background: #4b5563;
}


/* FLOATING */
.enquire, .scroll-top {
  position: fixed;
  right: 20px;
  background: #0b1a2c;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 25px;
  cursor: pointer;
}

/* CONTAINER */
.floating-actions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; 
  z-index: 1000;
}

/* ENABLE CLICKS */
.floating-actions button,
.floating-actions a {
  pointer-events: auto;
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #0b1c2d;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* SHOW STATE */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ENQUIRE BUTTON */
/* Enquire button */
.enquire-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 55px rgba(0,0,0,.35);
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 999;
}

/* Active state */
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal box */
.modal-box {
  width: 430px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  transform: translateY(40px) scale(.96);
  opacity: 0;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.modal-header {
  background: radial-gradient(
    circle at top,
    #1e293b,
    #0f172a
  );
  color: #fff;
  padding: 28px;
}

.modal-header h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  opacity: .85;
  line-height: 1.6;
}

/* Close */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background .3s ease, transform .2s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,.25);
  transform: rotate(90deg);
}

/* Form */
.modal-form {
  padding: 26px;
}

.modal-form label {
  font-size: 14px;
  color: #0f172a;
  margin: 14px 0 6px;
  display: block;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: border .25s ease, box-shadow .25s ease;
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 4px rgba(15,23,42,.08);
}

/* Phone */
.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 30%;
}

/* Submit */
.submit-btn {
  margin-top: 22px;
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 34px;
  font-size: 15px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 15px 35px rgba(15,23,42,.35);
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 45px rgba(15,23,42,.45);
}
/* ================= SCROLL TO TOP ================= */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #0b1c2d, #102a43);
  color: #ffffff;
  font-size: 20px;

  cursor: pointer;
  z-index: 1000;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

/* show button */
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover effect (desktop) */
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* mobile safe */
@media (max-width: 768px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* FOOTER */
footer {
  background: #0F2A44;
  color: #fff;
  padding: 30px;
  text-align: center;
}

