@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600&family=Playfair+Display:wght@700&display=swap');
:root {
  --brand-blue: #3a5aff;
  --brand-gradient: linear-gradient(135deg, #3a5aff 0%, #111 100%);
  --glass-bg: rgba(17, 17, 17, 0.85);
  --glass-blur: blur(12px);
  --white: #fff;
  --black: #111;
  --shadow: 0 8px 32px 0 rgba(17, 17, 17, 0.37);
  --header-blur: blur(18px);
  --header-height: 160px;
  --header-height-mobile: 100px;
  --accent: #bfcaff;
}

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Global Lucide icon styling */
i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

html, body {
  width: 100vw;
  min-height: 100vh;
  background: var(--brand-gradient);
  color: var(--white);
  font-family: 'Montserrat', 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 900px) {
  html, body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent any element from causing horizontal scroll */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Ensure all sections fit within viewport */
  section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  /* Prevent text overflow */
  p, h1, h2, h3, h4, h5, h6, span, a, button {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}

#main-content {
  padding-top: var(--header-height);
}

@media (max-width: 900px) {
  #main-content {
    padding-top: var(--header-height-mobile);
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--brand-gradient);
  width: 100vw;
  max-width: 100vw;
}

/* Header */
.main-header {
  width: 100%;
  max-width: 100vw;
  position: fixed;
  top: 0; left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.25);
  backdrop-filter: var(--header-blur);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.main-header.transparent-blur {
  background: rgba(17,17,17,0.18);
  backdrop-filter: var(--header-blur);
}
.main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0.5rem 2rem;
  position: relative;
}
.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.2rem;
}
.logo-img {
  height: 160px;
  width: auto;
  max-width: 380px;
  filter: drop-shadow(0 2px 12px #000a);
  transition: height 0.3s, max-width 0.3s;
}
.menu-toggle {
  display: none; /* Hidden by default on desktop */
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1200;
  transition: color 0.2s, transform 0.3s;
  padding: 8px;
  border-radius: 4px;
  /* Enhanced mobile support */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle.open {
  color: #bfcaff;
  transform: translateY(-50%) rotate(90deg) scale(1.1);
}

/* Menu toggle icon styles - Enhanced */
.menu-toggle .menu-icon,
.menu-toggle .close-icon {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.menu-toggle.open .menu-icon {
  display: none;
}

.menu-toggle.open .close-icon {
  display: block !important;
  stroke: #bfcaff;
}

/* Nav menu base styles - Desktop always visible */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0 0 0;
  transition: all 0.3s;
  /* Desktop: visible by default */
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  position: relative;
  width: auto;
  height: auto;
  max-height: none;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
/* Desktop hover effects for nav links */
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 2px 8px #3a5aff44;
  }
}

.nav-link:focus {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 8px #3a5aff44;
}

.nav-link.active {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 8px #3a5aff44;
}

/* Desktop: Ensure hamburger is hidden and nav is visible */
@media (min-width: 901px) {
  .menu-toggle {
    display: none !important;
    visibility: hidden;
    opacity: 0;
  }
  
  .nav-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 0 0 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* Responsive nav - Mobile and tablet only */
@media (max-width: 900px) {
  .main-nav {
    padding: 0.7rem 1rem 0.5rem 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: relative;
  }
  .logo-center {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .logo-img {
    height: 80px;
    max-width: 180px;
  }
  
  /* Mobile menu button - Show ONLY on mobile/tablet */
  .menu-toggle {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1300;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .menu-toggle:hover,
  .menu-toggle:focus,
  .menu-toggle:active {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
  }
  
  @media (hover: none) and (pointer: coarse) {
    .menu-toggle:active {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(0.95);
    }
  }
  
  .menu-toggle.open {
    color: #bfcaff;
    transform: translateY(-50%) rotate(90deg) scale(1.1);
  }
  
  /* Mobile nav links - Enhanced */
  .nav-links {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column !important;
    gap: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 100vw;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 1200;
    margin: 0;
    
    /* Hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    
    /* Smooth transition */
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
    transform: translateZ(0); /* Force hardware acceleration */
    will-change: max-height, opacity;
  }
  
  /* Active mobile menu - Enhanced */
  .nav-links.active {
    max-height: 500px;
    padding: 2rem 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
  }
  
  /* Mobile menu items - Enhanced touch targets */
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  /* Mobile menu links - Enhanced for touch */
  .nav-link {
    display: block;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px; /* Better touch target */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-link:hover,
  .nav-link:focus {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: none;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: -2px;
  }
  
  .nav-link.active {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: none;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .main-nav {
    padding: 0.5rem 0.75rem;
  }
  
  .menu-toggle {
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }
  
  .logo-img {
    height: 70px;
    max-width: 160px;
  }
}

/* Hero Section */
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Better for mobile */
  background-repeat: no-repeat;
  box-sizing: border-box;
}

/* Mobile hero optimizations */
@media (max-width: 900px) {
  .hero-fullscreen {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    height: 100vh;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content.minimal {
    padding: clamp(1.5rem, 5vh, 2rem) clamp(1rem, 4vw, 1.5rem);
    max-width: 90%;
    width: 100%;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: clamp(0.5rem, 2vh, 0.75rem);
    line-height: 1.2;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    letter-spacing: 0.02em;
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }
  
  /* Bigger camera icon on mobile */
  .hero-subtitle .camera-icon {
    width: clamp(22px, 5vw, 28px) !important;
    height: clamp(22px, 5vw, 28px) !important;
    margin-right: clamp(6px, 2vw, 10px) !important;
    flex-shrink: 0;
  }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
  .hero-content.minimal {
    padding: clamp(1.25rem, 6vh, 1.75rem) clamp(0.75rem, 3vw, 1.25rem);
    max-width: 85%;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-bottom: clamp(0.4rem, 2vh, 0.6rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.4;
    gap: 0.35rem;
  }
  
  .hero-subtitle .camera-icon {
    width: clamp(20px, 5vw, 24px) !important;
    height: clamp(20px, 5vw, 24px) !important;
    margin-right: clamp(5px, 2vw, 8px) !important;
  }
}

/* Extra small mobile devices (375px and below) */
@media (max-width: 375px) {
  .hero-content.minimal {
    padding: clamp(1rem, 5vh, 1.5rem) clamp(0.65rem, 3vw, 1rem);
    max-width: 90%;
  }
  
  .hero-title {
    font-size: clamp(1.4rem, 10vw, 1.85rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
  }
  
  .hero-subtitle {
    font-size: clamp(0.8rem, 3.8vw, 0.95rem);
    line-height: 1.45;
  }
}

/* Very small mobile devices (320px and below) */
@media (max-width: 320px) {
  .hero-content.minimal {
    padding: clamp(0.9rem, 4vh, 1.3rem) clamp(0.6rem, 2.5vw, 0.9rem);
    max-width: 92%;
  }
  
  .hero-title {
    font-size: clamp(1.3rem, 11vw, 1.7rem);
    line-height: 1.35;
  }
  
  .hero-subtitle {
    font-size: clamp(0.75rem, 4vw, 0.9rem);
  }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #111 60%, #3a5aff 100%);
  opacity: 0.7;
  z-index: 1;
}
.hero-content.minimal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 3rem) clamp(1.5rem, 4vw, 2rem);
  background: rgba(17,17,17,0.0);
  border-radius: 24px;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.hero-title {
  font-family: 'Playfair Display', 'Montserrat', 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: clamp(0.02em, 0.5vw, 0.04em);
  text-shadow: 0 2px 24px #000a;
  margin-bottom: 0.7rem;
  line-height: 1.15;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: center;
  hyphens: none;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: clamp(0.02em, 0.5vw, 0.03em);
  text-shadow: 0 2px 12px #0008;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Gallery Section */
.gallery-section {
  width: 100%;
  max-width: 100vw;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto 4rem auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.section-title {
  font-family: 'Playfair Display', 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  margin: 3rem 0 2rem 0;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2vw 4rem 2vw;
  box-sizing: border-box;
}

/* Tablet breakpoint (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 3vw 3rem 3vw;
  }
  
  .bts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 3vw 3rem 3vw;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.8rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .faq-section {
    padding: 0 3rem;
  }
  
  .faq-list {
    max-width: 850px;
  }
}

/* Mobile optimization for gallery grid */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 4vw 3rem 4vw;
  }
  
  .bts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 4vw 3rem 4vw;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 4vw 3rem 4vw;
  }
  
  /* Even bigger camera icon on small mobile screens */
  .hero-subtitle .camera-icon {
    width: 32px !important;
    height: 32px !important;
    margin-right: 12px !important;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px #3a5aff22;
  background: #181818;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 4/3;
}

.gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.4s;
  filter: brightness(0.92) contrast(1.08);
}
/* Desktop hover effects */
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:focus img,
  .gallery-item a:hover img,
  .gallery-item a:focus img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.15) blur(1px);
  }
  .gallery-item:hover .gallery-caption,
  .gallery-item:focus .gallery-caption,
  .gallery-item a:hover .gallery-caption,
  .gallery-item a:focus .gallery-caption {
    opacity: 1;
  }
}

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.92) 80%, rgba(17,17,17,0.0) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.1rem 1.2rem 0.7rem 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  letter-spacing: 0.01em;
}

/* Mobile: Always show captions */
@media (hover: none) and (pointer: coarse) {
  .gallery-caption {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Additional mobile styles for better readability */
@media (max-width: 900px) {
  .gallery-caption {
    opacity: 1;
    pointer-events: auto;
    font-size: 1rem;
    padding: 0.8rem 1rem 0.5rem 1rem;
  }
  
  .gallery-item {
    /* Remove transform transitions on mobile to prevent touch issues */
    transform: none !important;
  }
  
  .gallery-item img {
    /* Disable image scaling on mobile */
    transform: none !important;
    filter: brightness(0.92) contrast(1.08) !important;
  }
}

/* BTS Section */
.bts-section {
  width: 100%;
  max-width: 100vw;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto 4rem auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.bts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw 4rem 2vw;
  box-sizing: border-box;
}

/* Tablet adjustments for BTS grid - already handled above */

/* Ensure images load and display properly on all mobile devices */
@media (max-width: 900px) {
  .gallery-item img, .bts-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: none;
    object-fit: cover;
    object-position: center;
    background-color: #181818;
    display: block;
    aspect-ratio: auto;
  }
  
  .gallery-item, .bts-item {
    min-height: 200px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* Ensure proper image loading */
  img {
    image-rendering: auto;
    -webkit-image-rendering: auto;
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Fix any container overflow issues */
  .gallery-grid, .bts-grid {
    width: 100%;
    max-width: 100vw;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
  }
  
  /* Prevent gallery items from overflowing */
  .gallery-item, .bts-item {
    max-width: 100%;
    margin: 0 auto;
  }
}
.bts-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px #3a5aff22;
  background: #181818;
  aspect-ratio: 4/3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.4s;
  filter: brightness(0.95) contrast(1.08);
}
/* Desktop hover effects for BTS */
@media (hover: hover) and (pointer: fine) {
  .bts-item:hover img,
  .bts-item:focus img {
    transform: scale(1.06);
    filter: brightness(1.08) contrast(1.18) blur(1px);
  }
  .bts-item:hover .bts-caption,
  .bts-item:focus .bts-caption {
    opacity: 1;
  }
}

.bts-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.92) 80%, rgba(17,17,17,0.0) 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.2rem 0.7rem 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  letter-spacing: 0.01em;
}

/* Mobile: Always show BTS captions */
@media (hover: none) and (pointer: coarse) {
  .bts-caption {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Additional mobile styles for BTS section */
@media (max-width: 900px) {
  .bts-caption {
    opacity: 1;
    pointer-events: auto;
    font-size: 0.95rem;
    padding: 0.8rem 1rem 0.5rem 1rem;
  }
  
  .bts-item {
    /* Remove transform transitions on mobile */
    transform: none !important;
  }
  
  .bts-item img {
    /* Disable image scaling on mobile */
    transform: none !important;
    filter: brightness(0.95) contrast(1.08) !important;
  }
}

/* Booking Section */
.booking-section {
  width: 100%;
  max-width: 100vw;
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.booking-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.booking-text {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin-bottom: 2rem;
}
.booking-btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 18px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 3px 12px #3a5aff33;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
/* Desktop hover effects for booking button */
@media (hover: hover) and (pointer: fine) {
  .booking-btn:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 24px #3a5aff44;
  }
}

.booking-btn:focus {
  background: #fff;
  color: var(--brand-blue);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 24px #3a5aff44;
}

/* Contact Section */
.contact-section {
  width: 100%;
  max-width: 100vw;
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.contact-form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: #23243a;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px #3a5aff22;
  transition: background 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand-blue);
  background: #23243a;
}
.contact-btn {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  box-shadow: 0 3px 12px #3a5aff33;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
/* Desktop hover effects for contact button */
@media (hover: hover) and (pointer: fine) {
  .contact-btn:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px #3a5aff44;
  }
}

.contact-btn:focus {
  background: #fff;
  color: var(--brand-blue);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px #3a5aff44;
}
.contact-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
}
.contact-social a img {
  height: 32px;
  width: 32px;
  filter: drop-shadow(0 2px 8px #0008) brightness(0) saturate(100%) invert(44%) sepia(98%) saturate(749%) hue-rotate(210deg) brightness(102%) contrast(101%);
  transition: filter 0.2s, transform 0.2s;
}
/* Desktop hover effects for social icons */
@media (hover: hover) and (pointer: fine) {
  .contact-social a:hover img {
    filter: drop-shadow(0 4px 16px #3a5aff88) brightness(1.2) saturate(120%) invert(44%) sepia(98%) saturate(749%) hue-rotate(210deg) brightness(102%) contrast(101%);
    transform: scale(1.08);
  }
}

.contact-social a:focus img {
  filter: drop-shadow(0 4px 16px #3a5aff88) brightness(1.2) saturate(120%) invert(44%) sepia(98%) saturate(749%) hue-rotate(210deg) brightness(102%) contrast(101%);
  transform: scale(1.08);
}

/* Footer */
.main-footer {
  width: 100%;
  max-width: 100vw;
  background: #111;
  color: #bfcaff;
  text-align: center;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  padding: 2rem 1rem 1rem 1rem;
  box-sizing: border-box;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   FAQ SECTION STYLES
============================ */
.faq-section {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  padding: 0 2rem;
  margin: 0 auto 4rem auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.faq-section .section-title {
  color: var(--brand-blue);
  margin: 3rem 0 2rem 0;
  font-family: 'Playfair Display', 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.faq-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-item {
  background: var(--glass-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(58,90,255,0.13);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: none;
  will-change: box-shadow, border, transform;
  margin-bottom: 0;
}
.faq-item.faq-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Desktop hover effects for FAQ items */
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    box-shadow: 0 8px 32px #3a5aff44;
    border: 1.5px solid var(--brand-blue);
  }
  
  .faq-question:hover {
    background: rgba(58,90,255,0.05);
  }
}

.faq-item:focus-within {
  box-shadow: 0 8px 32px #3a5aff44;
  border: 1.5px solid var(--brand-blue);
}

/* Mobile: Remove transforms for FAQ items */
@media (max-width: 900px) {
  .faq-item {
    transform: none !important;
  }
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 3.5rem 1.5rem 1.8rem; /* Increased right padding for plus sign */
  font-size: 1.15rem;
  text-align: left;
  color: #fff;
  cursor: pointer;
  outline: none;
  position: relative;
  font-weight: 600;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.5;
  word-wrap: break-word;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.faq-question:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  background: #23243a;
  color: var(--brand-blue);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease, color 0.3s ease, font-size 0.2s ease;
  font-size: 1.5rem;
  color: var(--brand-blue);
  font-weight: 300;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.active .faq-question::after {
  content: '−';
  color: #fff;
  transform: translateY(-50%) rotate(0deg);
  font-weight: 300;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.4s cubic-bezier(.4,0,.2,1), background 0.3s ease;
  padding: 0 1.8rem;
  background: transparent;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #e6e6e6;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.8rem 1.8rem 1.8rem;
  background: rgba(58,90,255,0.08);
  color: #fff;
}
.faq-answer p {
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .faq-list {
    max-width: 100%;
    gap: 1rem;
    width: 100%;
  }
  
  .faq-section {
    padding: 0 1.5rem;
  }
  
  .faq-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.2rem 3rem 1.2rem 1.2rem;
    line-height: 1.4;
    min-height: 48px;
  }
  
  .faq-question::after {
    right: 1.2rem;
    font-size: 1.3rem;
    width: 20px;
    height: 20px;
  }
  
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 1.2rem;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

/* Extra small mobile FAQ adjustments */
@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 2.8rem 1rem 0.8rem;
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .faq-question::after {
    right: 0.8rem;
    font-size: 1.1rem;
  }
  .faq-answer {
    padding: 0 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .faq-section .section-title {
    font-size: 1.2rem;
  }
  .faq-list {
    gap: 0.7rem;
  }
  .faq-item {
    border-radius: 12px;
  }
}

/* Accessibility */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
img {
  transition: filter 0.3s, box-shadow 0.3s, transform 0.3s;
  max-width: 100%;
  height: auto;
}

/* Mobile image loading optimizations */
@media (max-width: 900px) {
  img {
    /* Improve image loading on mobile */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Prevent layout shift while images load */
  .gallery-item, .bts-item {
    background: #181818;
    min-height: 220px;
  }
  
  /* Loading state for images */
  .gallery-item img[loading="lazy"], 
  .bts-item img[loading="lazy"] {
    background: linear-gradient(90deg, #181818 0%, #2a2a2a 50%, #181818 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite ease-in-out;
  }
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .gallery-grid, .bts-grid {
    padding: 0 3vw 2rem 3vw;
    gap: 1rem;
  }
  
  .gallery-item, .bts-item {
    min-height: 180px;
    border-radius: 12px;
  }
  
  .gallery-caption, .bts-caption {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem 0.4rem 0.8rem;
  }
}

/* Mobile touch optimizations */
@media (max-width: 900px) {
  /* Prevent sticky hover states on mobile */
  .gallery-item:hover, .bts-item:hover, .faq-item:hover {
    transform: none !important;
  }
  
  .gallery-item:hover img, .bts-item:hover img {
    transform: none !important;
    filter: brightness(0.92) contrast(1.08) !important;
  }
  
  /* Ensure buttons don't have transform effects on mobile */
  .booking-btn:hover, .contact-btn:hover {
    transform: none !important;
  }
  
  /* Disable transforms for social icons on mobile */
  .contact-social a:hover img {
    transform: none !important;
  }
}

/* Touch device specific: prevent sticky hover transforms */
@media (hover: none) {
  .gallery-item, .bts-item, .faq-item, 
  .booking-btn, .contact-btn, .contact-social a img {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* Mobile body scroll lock for popup */
body.popup-open {
  position: fixed !important;
  width: 100% !important;
  overflow: hidden !important;
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

/* Prevent iOS bounce scroll when popup is open */
body.popup-open {
  overscroll-behavior: none;
  -webkit-overscroll-behavior: none;
}

/* Coming Soon Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(58, 90, 255, 0.1) 100%);
  border: 2px solid rgba(58, 90, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  animation: popupFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 5px;
  line-height: 1;
}

.popup-close:hover {
  color: #3a5aff;
}

.popup-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.popup-content h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.popup-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.popup-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.popup-btn.primary {
  background: linear-gradient(135deg, #3a5aff 0%, #111 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(58, 90, 255, 0.3);
}

.popup-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(58, 90, 255, 0.4);
  background: #3a5aff;
  color: #ffffff;
  text-decoration: none;
}

.popup-btn.secondary {
  background: transparent;
  color: #999;
  border: 2px solid rgba(58, 90, 255, 0.3);
}

.popup-btn.secondary:hover {
  background: rgba(58, 90, 255, 0.1);
  color: #bfcaff;
  border-color: #3a5aff;
}

/* Mobile responsive popup */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .popup-content {
    padding: 30px 20px;
    margin: 10px auto;
    max-width: calc(100% - 20px);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .popup-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .popup-content p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .popup-close {
    top: 10px;
    right: 15px;
    font-size: 28px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  
  .popup-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-height: 44px;
    touch-action: manipulation;
  }
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 5px;
    padding-top: 15vh;
  }
  
  .popup-content {
    padding: 25px 15px;
    margin: 5px auto;
    max-width: calc(100% - 10px);
    max-height: 85vh;
    border-radius: 16px;
  }
  
  .popup-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .popup-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .popup-close {
    top: 8px;
    right: 12px;
    font-size: 26px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .popup-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .popup-buttons {
    gap: 12px;
    margin-top: 20px;
  }
}
}