:root {
  --primary:#1e3a8a;
  --secondary:#f97316;
  --light:#f9fafb;
  --dark:#111827;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body{
  background:var(--light);
  color:var(--dark);
  line-height:1.6;
  margin: 0;
  padding: 0;
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR */
nav{
  position:fixed;
  top:0;
  width:100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  padding:15px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  transition: all 0.3s ease;
}

nav h1{
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a{
  text-decoration:none;
  margin-left:20px;
  color: white;
  font-weight:500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

nav a:hover::before {
  width: 80%;
}

/* Hamburger Menu Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 1000;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Navbar Responsive */
@media(max-width: 768px) {
  nav {
    padding: 15px 5%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 998;
  }

  .nav-menu.active {
    right: 0;
  }

  nav a {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    display: block;
  }

  nav a::before {
    display: none;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
  }

  /* Animate hamburger to X */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

@media(max-width: 480px) {
  nav h1 {
    font-size: 1.2rem;
  }

  .nav-menu {
    width: 85%;
  }
}


/* ===== HERO TWO-COLUMN LAYOUT ===== */
/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-top: 70px;
}

/* Hero Container - Two Columns */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 90vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* First Column: Content with Gradient Background */
.hero-content-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
  width: 100%;
}

/* Hero content */
.hero-content {
  max-width: 600px;
  width: 100%;
}

/* Second Column: Image */
.hero-image-column {
  position: relative;
  overflow: hidden;
  background: var(--light);
  height: 100%;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Typing headline */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Buttons */
/* Hero buttons style */
.hero-buttons .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-right: 12px;
}

/* Hover effect */
.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Individual colors */
.btn-booking {
  background: #ff5722; /* bright call-to-action orange */
}

.btn-youtube {
  background: #FF0000; /* YouTube red */
}


/* Stats counters */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2rem;
}

.stat p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; }
  100% { opacity: 0; top: 22px; }
}

/* Responsive */
@media(max-width: 968px){
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content-column {
    padding: 60px 5%;
    min-height: 50vh;
  }
  
  .hero-image-column {
    height: 50vh;
    order: -1;
  }
}

@media(max-width: 768px){
  .hero {
    height: auto;
    min-height: auto;
  }
  
  .hero-container {
    height: auto;
    min-height: auto;
  }
  
  .hero-content-column {
    padding: 50px 5%;
    min-height: auto;
  }
  
  .hero-image-column {
    height: 50vh;
    min-height: 50vh;
  }
  
  .hero-image {
    object-fit: cover;
  }
  
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
}



/* SECTIONS */
section{
  padding:80px 8%;
  position: relative;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  color:var(--primary);
  font-size:2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title p{
  color:#666;
  font-size: 1.1rem;
}

/* ABOUT */
.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about img:hover {
  transform: scale(1.02);
}

.about h3{
  color:var(--secondary);
  margin-bottom:20px;
  font-size: 1.8rem;
}

.about p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

/* About Responsive */
@media(max-width: 968px) {
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about img {
    order: -1;
  }
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:35px;
  border-radius:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.card h4{
  color:var(--primary);
  margin-bottom:15px;
  font-size: 1.3rem;
}

.card p {
  color: #666;
  line-height: 1.7;
}

/* Cards Responsive */
@media(max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* PRODUCT MARKETING SECTION */
.marketing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:40px;
}

.marketing-card{
  background:white;
  padding:35px;
  border-radius:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.marketing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.marketing-card:hover::before {
  transform: scaleX(1);
}

.marketing-card:hover{
  transform:translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.marketing-card h3{
  color:var(--primary);
  margin-bottom:15px;
  font-size: 1.3rem;
}

.marketing-card p {
  color: #666;
  line-height: 1.7;
}

/* Marketing Responsive */
@media(max-width: 768px) {
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Brand CTA button */
.brand-cta {
  text-align: center;
  margin-top: 50px;  
}
.brand-cta .btn-collab {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  margin-top: 23px;
  background: #ff5722;  /* bright orange call-to-action */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

/* Hover effect */
.brand-cta .btn-collab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: #e64a19; /* slightly darker orange on hover */
}



/* GALLERY */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 300px;
  gap: 25px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

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

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

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 20px;
}

.gallery-item:hover .gallery-image-wrapper {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.gallery-item:hover .gallery-image-wrapper::before {
  opacity: 0.2;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(249, 115, 22, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  border-radius: 20px;
}

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

.gallery-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  animation: pulse 2s infinite;
}

.gallery-content span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Gallery Responsive */
@media(max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
  }
  
  .gallery-item-large,
  .gallery-item-tall {
    grid-row: span 1;
  }
  
  .gallery-content i {
    font-size: 2rem;
  }
  
  .gallery-content span {
    font-size: 1rem;
  }
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
}

.lightbox-prev:active,
.lightbox-next:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10000;
}

/* Lightbox Responsive */
@media(max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    padding: 15px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-counter {
    bottom: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-content img {
    max-height: 80vh;
  }
}


/* YOUTUBE AUTO FEED */
.youtube-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.video-card iframe{
  width:100%;
  height:220px;
  border-radius:20px;
  border: none;
}

/* YouTube Responsive */
@media(max-width: 768px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* SOCIAL MEDIA */
.social-section{
  text-align:center;
  margin-top:60px;
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(249, 115, 22, 0.05));
  border-radius: 20px;
}

.social-section h3{
  margin-bottom:30px;
  color:var(--primary);
  font-size: 2rem;
  font-weight: 700;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.social-links a{
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  color:white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition:all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Social Responsive */
@media(max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-links a {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}


/* FORM */


.booking-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.booking-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

#bookingForm {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#bookingForm input, 
#bookingForm textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

#bookingForm input:focus, 
#bookingForm textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

#bookingForm button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

#bookingForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.form-msg {
  text-align: center;
  margin-top: 15px;
  color: green;
  font-weight: 500;
}

/* Left column */
.booking-left h2 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
}

.booking-left p {
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Right column */
.booking-right {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(249, 115, 22, 0.05));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 2px solid rgba(30, 58, 138, 0.1);
  position: sticky;
  top: 100px;
}

.booking-right h3 {
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.8rem;
}

.contact-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.contact-item p {
  margin: 5px 0;
  color: #555;
  line-height: 1.6;
}

.contact-note {
  margin-top: 25px;
  padding: 15px;
  background: rgba(30, 58, 138, 0.05);
  border-radius: 10px;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Booking Responsive */
@media(max-width: 968px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-right {
    position: static;
    margin-top: 0;
  }
  
  .booking-left h2 {
    font-size: 2rem;
  }
}

/* FOOTER */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: white;
  text-align: center;
  padding: 50px 8%;
  margin-top: 80px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

/* Footer Responsive */
@media(max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(30, 58, 138, 0.4);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5);
}


/* ADDITIONAL RESPONSIVE FIXES */
@media(max-width: 480px) {
  section {
    padding: 60px 5%;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .stat h3 {
    font-size: 1.5rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}
