/* ============================================================
   Light Edge Sound Studio — style.css  (White Theme)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a3a6b;
  --gold: #b8922a;
  --gold-lt: #d4a83a;
  --gold-pale: #f5e6c0;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #f1f0ed;
  --border: #e2e0db;
  --text-dark: #1a1a2e;
  --text-mid: #444460;
  --text-muted: #7a7a90;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --nav-h: 78px;
  --radius: 14px;
  --section-pad: 96px;
  --tr: 0.28s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  height: var(--nav-h);
  background: #0d1b3e;
  transition: background var(--tr), box-shadow var(--tr);
  z-index: 1050;
}

/* Hero state – transparent over dark image */
#mainNavbar .nav-link,
#mainNavbar .navbar-brand {
  color: #fff;
}

/* Scrolled state – white bar */
#mainNavbar.scrolled {
  background: #0D1B3E;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

#mainNavbar.scrolled .nav-link {
  color: #fff;
}

#mainNavbar.scrolled .navbar-brand {
  color: var(--text-dark);
}

.nav-logo {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Links */
.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.85rem;
  position: relative;
  transition: color var(--tr);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--tr);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}

/* Book button */
.btn-book {
  background: var(--gold);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  border: none;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-book:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 146, 42, 0.35);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 4px 2px;
  background: transparent !important;
}

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

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background var(--tr);
}

#mainNavbar.scrolled .toggler-bar {
  background: var(--text-dark);
}

/* Mobile menu */
@media (max-width: 991.98px) {
  #navMenu {
    background: var(--white);
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  #navMenu .nav-link {
    color: var(--text-dark) !important;
    padding: 0.55rem 0;
  }

  .btn-book {
    margin-top: 0.5rem;
    display: inline-block;
  }
}

/* ============================================================
   HERO CAROUSEL — 3 SLIDES
   ============================================================ */
#hero {
  position: relative;
}

.hero-slide {
  height: 94vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.788) 0%,
      rgba(0, 0, 0, 0.363) 55%,
      rgba(0, 0, 0, 0.13) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--nav-h);
  animation: heroIn 0.9s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-accent {
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-hero-primary {
  background: var(--gold);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.75rem;
  border-radius: 50px;
  border: none;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-hero-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184, 146, 42, 0.42);
}

.btn-hero-outline {
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: all var(--tr);
}

.btn-hero-outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt) !important;
  transform: translateY(-3px);
}

/* Carousel arrows */
.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: background var(--tr), transform var(--tr);
}

.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

/* Dots */
.hero-dots {
  bottom: 28px;
}

.hero-dots button {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: width var(--tr), background var(--tr);
  opacity: 1;
}

.hero-dots button.active {
  width: 52px;
  background: var(--gold-lt);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 52px 0;
}

.stat-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.col-6:last-child .stat-item,
.col-md-3:last-child .stat-item {
  border-right: none;
}

@media (max-width: 767.98px) {
  .col-6:nth-child(even) .stat-item {
    border-right: none;
  }

  .col-6:nth-child(odd) .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  margin-bottom: 0;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-pad {
  padding: var(--section-pad) 0;
}

.bg-white {
  background: var(--white) !important;
}

.services-bg {
  background: var(--off-white);
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.section-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.about-img-wrap img {
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 20px rgba(184, 146, 42, 0.4);
}

.feature-chip {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}

.feature-chip i {
  color: var(--gold);
  font-size: 1rem;
}

.feature-chip:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1.5px solid #adadad;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.service-img-wrap {
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img-wrap img {
  height: 100%;
  transition: transform 0.65s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-body {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold-lt);
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}

.service-icon--gold {
  background: var(--gold);
  color: #fff;
}

.service-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card--featured {
  border-color: var(--gold);
  background: var(--navy);
}

.service-card--featured .service-title {
  color: #fff;
}

.service-card--featured .service-desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--featured:hover {
  border-color: var(--gold-lt);
}

.service-badge {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}

/* ============================================================
   GALLERY — Uniform 3-column grid, equal height
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-gray);
  /* Fixed aspect ratio — every cell same height */
  aspect-ratio: 4 / 3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 62, 0.82) 0%, rgba(13, 27, 62, 0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity var(--tr);
}

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

.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 479.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-overlay {
    opacity: 1;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.9) 0%, rgba(26, 58, 107, 0.75) 100%);
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.btn-cta {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem 2.2rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-cta:hover {
  color: #fff;
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(184, 146, 42, 0.45);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.ci-row.last {
  border-bottom: none;
}

.ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold-lt);
}

.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.ci-value {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.ci-value a {
  color: var(--text-dark);
  transition: color var(--tr);
}

.ci-value a:hover {
  color: var(--gold);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.map-wrap iframe {
  display: block;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-heading {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-label-custom {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-bottom: 5px;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.62rem 0.9rem;
  background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.custom-input::placeholder {
  color: #bbb;
}

.custom-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 42, 0.15);
  outline: none;
}

.btn-submit {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-submit:hover {
  background: var(--navy-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13, 27, 62, 0.3);
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 9px;
  color: #15803d;
  padding: 12px 16px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
}

@media (max-width: 575.98px) {
  .form-card {
    padding: 1.5rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D1B3E;
  padding: 72px 0 0;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--tr);
}

.footer-links a:hover {
  color: var(--gold-lt);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-list i {
  color: var(--gold-lt);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--tr);
}

.footer-contact-list a:hover {
  color: var(--gold-lt);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 52px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(184, 146, 42, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-36px);
}

[data-animate="fade-left"] {
  transform: translateX(36px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  :root {
    --section-pad: 72px;
  }

  .about-img-wrap img {
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-pad: 56px;
    --nav-h: 66px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .about-img-wrap img {
    height: 280px;
  }
}

.float {
    position: fixed;
 right : 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.whatsapp {
    bottom: 90px;
    background-color: #25D366;
    color: white;
    line-height: 50px;
}

.call {
    bottom: 190px;
    background-color: #007bff;
    color: white;
    line-height: 50px;
}

.float:hover {
    transform: scale(1.1);
    transition: 0.3s;
}