@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue: #3AAFE4;
  --blue-dark: #1B8EC9;
  --blue-light: #EBF6FD;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --radius: 20px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background-color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR (Glassmorphism) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
  transform: translateY(-100%);
  transition: var(--transition);
}

.navbar.scrolled {
  transform: translateY(0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--blue-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--blue);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/IMG_3636.jpg') center/cover no-repeat fixed;
  color: var(--white);
  padding: 80px 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s ease-out forwards;
}

.hero-main-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.7)) drop-shadow(0 0 15px rgba(255,255,255,0.9));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: var(--transition);
}

.btn:hover::after {
  transform: translateX(100%) skewX(-15deg);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(58, 175, 228, 0.4);
}

.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(27, 142, 201, 0.5);
}

.btn--outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.5);
}

/* SECTION BASE */
.section {
  padding: 100px 0;
  background: var(--white);
}

.section--alt {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--gray-900);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
}

/* DESCRIPTION SECTION */
.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.desc-text p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.desc-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.desc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--gray-100);
  padding: 16px;
  border-radius: 12px;
  transition: var(--transition);
}

.desc-features li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  background: var(--white);
}

.desc-features svg {
  color: var(--blue);
  width: 24px;
  height: 24px;
}

.desc-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.desc-images::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--blue-light) 10%, transparent 11%), radial-gradient(circle, var(--blue-light) 10%, transparent 11%);
  background-size: 20px 20px;
  z-index: 0;
}

.desc-images img {
  border-radius: var(--radius);
  height: 300px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.desc-images img:hover {
  transform: scale(1.03);
}

.desc-images img:nth-child(2) {
  transform: translateY(40px);
}
.desc-images img:nth-child(2):hover {
  transform: translateY(40px) scale(1.03);
}

/* LOCATION & MAP SECTION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.location-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.location-info::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--blue);
  filter: blur(80px);
  opacity: 0.3;
  border-radius: 50%;
}

.info-block {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 12px;
}

.info-block p {
  font-size: 1.15rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.9);
}

.info-block a {
  transition: color 0.2s;
}

.info-block a:hover {
  color: var(--blue) !important;
}

.info-block svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--blue);
}

.location-map {
  height: 100%;
  min-height: 500px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 250px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  position: relative;
}

.gallery-item--large {
  grid-row: span 2;
}

/* PRICING SECTION */
.pricing-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  margin: 0 -5%; /* Break out of container on mobile */
  padding-left: 5%;
  padding-right: 5%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.pricing-slider::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.pricing-slide {
  flex: 0 0 100%;
  max-width: 600px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .pricing-slide {
    flex: 0 0 calc(33.333% - 14px);
  }
}

.pricing-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pricing-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-hint {
  text-align: center;
  margin-top: 15px;
  color: var(--gray-600);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .slider-hint {
    display: none; /* Hide on desktop */
  }
}

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h3, .footer-social h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* PREMIUM FEATURES */
/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader-content {
  text-align: center;
}
.preloader-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.preloader-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Floating Chat */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(58, 175, 228, 0.4);
  z-index: 90;
  transition: var(--transition);
}
.floating-chat:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--blue-dark);
  box-shadow: 0 15px 35px rgba(27, 142, 201, 0.5);
}
.floating-chat svg {
  width: 28px;
  height: 28px;
}

/* Hamburger & Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.mobile-link {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.mobile-link:hover {
  color: var(--blue);
}
.no-scroll {
  overflow: hidden;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/IMG_8825.JPG') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}
.btn--large {
  padding: 20px 50px;
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .description-grid { grid-template-columns: 1fr; gap: 40px; }
  .desc-images img:nth-child(2) { transform: translateY(20px); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 400px; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-slider {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .pricing-slide {
    flex: 0 0 100%;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-logo-wrapper { padding: 20px; max-width: 90%; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .btn { width: 100%; }
  .desc-features { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item--large { grid-row: span 1; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand p { margin: 20px auto 0; }
  .social-icons { justify-content: center; }
}
