/* ============================================
   ELLA DAY TOURS - MAIN STYLESHEET
   Colors: Orange #ff7a00 | Dark Green #16634f
   ============================================ */

/* Google Fonts - Adventure Style */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&display=swap');
/* CSS Variables */
:root {
  --orange: #e7b36b;
  --dark-green: #0f2f25;
  --dark-green-light: #f7f3ea;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --dark-overlay: rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.navbar.scrolled .nav-link {
  color: var(--black);
}

.navbar.scrolled .logo-text {
  color: var(--dark-green);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 -30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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



.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--orange);
}

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

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--dark-green);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(22,99,79,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e66d00;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark-green);
  transform: translateY(-3px);
}

.btn-green {
  background: var(--dark-green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--dark-green-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22, 99, 79, 0.4);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark-green);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 35px;
  color: var(--orange);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotateY(360deg);
}

.feature-title {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.feature-text {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ============================================
   PLACES SECTION
   ============================================ */
.places-section {
  background: var(--light-gray);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.place-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 400px;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.place-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.place-card:hover .place-image {
  transform: scale(1.1);
}

.place-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--white);
}

.place-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.place-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.place-description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.place-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.place-btn:hover {
  gap: 15px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 99, 79, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--gray);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--orange);
}

.blog-title {
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.blog-link:hover {
  gap: 15px;
}

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

.about-images {
  position: relative;
}

.about-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-main-image img {
  width: 100%;
  height: auto;
}

.about-sub-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.about-sub-image img {
  width: 100%;
  height: auto;
}

.about-content {
  padding: 20px 0;
}

.about-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark-green);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

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

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

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

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

.social-link:hover {
  background: var(--orange);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 25px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 10px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 3px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  left: 30px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   GO TO TOP BUTTON
   ============================================ */
.go-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
}

.go-top.visible {
  opacity: 1;
  visibility: visible;
}

.go-top:hover {
  background: var(--dark-green);
  transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@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.05);
  }
}

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.page-hero .hero-bg {
  background-attachment: scroll;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.1s;
}

.breadcrumb a {
  color: var(--white);
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb i {
  color: var(--orange);
  font-size: 12px;
}

.breadcrumb span {
  color: var(--orange);
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-sub-image {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--dark-green);
    font-size: 1.2rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-close {
    position: absolute;
    top: 14px;
    right: 4px;
    width: 45px;
    height: 45px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid,
  .places-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact li {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .whatsapp-btn {
    left: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
  
  .go-top {
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .place-card {
    height: 350px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
}
.navbar .logo-text,
.navbar .nav-link {
  font-weight: 700;
}
/* Main website font */
body,
button,
input,
textarea,
select,
a {
  font-family: 'Poppins', Arial, sans-serif !important;
}

/* Fancy font for logo and big headings */
.logo-text,
.hero-title,
.section-title,
.about-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
}
/* Premium buttons */
.btn {
  border-radius: 999px !important;
  padding: 14px 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 30px rgba(15, 47, 37, 0.18) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #c89b3c, #e6c879) !important;
  color: #0f2f25 !important;
  border: none !important;
}

.btn-secondary,
.btn-green {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-3px);
}
/* Premium hero look */
.hero-overlay {
  background: linear-gradient(
    0deg,
    rgba(15, 47, 37, 0.82),
    rgba(15, 47, 37, 0.45),
    rgba(0, 0, 0, 0.25)
  ) !important;
}


.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem) !important;
  line-height: 0.95 !important;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  color: #e6c879 !important;
  letter-spacing: 4px !important;
  font-weight: 800 !important;
}

.hero-description {
  max-width: 720px;
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
}
/* More premium spacing */
.section {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.4rem) !important;
  line-height: 1.05 !important;
}

.section-subtitle {
  color: #c89b3c !important;
  letter-spacing: 3px !important;
  font-weight: 800 !important;
}

.section-description {
  max-width: 760px;
  line-height: 1.9 !important;
}
/* Navbar menu font only - PC and Mobile */
.navbar .nav-link {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
}
/* ===============================
   White transparent navbar on scroll
   =============================== */

/* Normal navbar - top of page */
.navbar {
  background: transparent !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

/* Navbar after scrolling */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Menu text after scrolling */
.navbar.scrolled .nav-link {
  color: #0f2f25 !important;
}

/* Logo text after scrolling */
.navbar.scrolled .logo-text {
  color: #0f2f25 !important;
}

.navbar.scrolled .logo-text span {
  color: #c89b3c !important;
}

/* Active menu item after scrolling */
.navbar.scrolled .nav-link.active,
.navbar.scrolled .nav-link:hover {
  color: #c89b3c !important;
}
/* ===============================
   PREMIUM ANIMATIONS
   =============================== */

/* Smooth page feel */
html {
  scroll-behavior: smooth;
}

/* Reveal animation default */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Normal reveal: bottom to top */
.reveal {
  transform: translateY(45px);
}

/* Left side reveal */
.reveal-left {
  transform: translateX(-55px);
}

/* Right side reveal */
.reveal-right {
  transform: translateX(55px);
}

/* When visible */
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay classes */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* Hero text animation */
.hero-subtitle {
  animation: heroFadeDown 1s ease forwards;
}

.hero-title {
  animation: heroZoomIn 1.2s ease forwards;
}

.hero-description {
  animation: heroFadeUp 1.3s ease forwards;
}

.hero-buttons {
  animation: heroFadeUp 1.5s ease forwards;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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


/* Card hover premium animation */
.feature-card,
.place-card,
.blog-card,
.team-card,
.value-card,
.contact-card,
.gallery-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.blog-card:hover,
.team-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-10px);
}

/* Image zoom on hover */
.place-card img,
.gallery-item img,
.blog-image img,
.about-main-image img,
.about-sub-image img {
  transition: transform 0.7s ease;
}

.place-card:hover img,
.gallery-item:hover img,
.blog-card:hover .blog-image img,
.about-main-image:hover img,
.about-sub-image:hover img {
  transform: scale(1.08);
}

/* Button hover animation */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

/* Floating WhatsApp button */
.whatsapp-btn {
  animation: whatsappFloat 2.5s ease-in-out infinite;
}

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

/* Go top button soft pop */
.go-top {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.go-top:hover {
  transform: translateY(-5px);
}/* ===============================
   PREMIUM ANIMATIONS
   =============================== */

/* Smooth page feel */
html {
  scroll-behavior: smooth;
}

/* Reveal animation default */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Normal reveal: bottom to top */
.reveal {
  transform: translateY(45px);
}

/* Left side reveal */
.reveal-left {
  transform: translateX(-55px);
}

/* Right side reveal */
.reveal-right {
  transform: translateX(55px);
}

/* When visible */
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay classes */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* Hero text animation */
.hero-subtitle {
  animation: heroFadeDown 1s ease forwards;
}

.hero-title {
  animation: heroZoomIn 1.2s ease forwards;
}

.hero-description {
  animation: heroFadeUp 1.3s ease forwards;
}

.hero-buttons {
  animation: heroFadeUp 1.5s ease forwards;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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


/* Card hover premium animation */
.feature-card,
.place-card,
.blog-card,
.team-card,
.value-card,
.contact-card,
.gallery-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.blog-card:hover,
.team-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-10px);
}

/* Image zoom on hover */
.place-card img,
.gallery-item img,
.blog-image img,
.about-main-image img,
.about-sub-image img {
  transition: transform 0.7s ease;
}

.place-card:hover img,
.gallery-item:hover img,
.blog-card:hover .blog-image img,
.about-main-image:hover img,
.about-sub-image:hover img {
  transform: scale(1.08);
}

/* Button hover animation */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

/* Floating WhatsApp button */
.whatsapp-btn {
  animation: whatsappFloat 2.5s ease-in-out infinite;
}

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

/* Go top button soft pop */
.go-top {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.go-top:hover {
  transform: translateY(-5px);
}
/* ===============================
   SIDE SLIDE CARD ANIMATION
   Cards come from left and right
   =============================== */

/* Animation apply වෙන card types */
.feature-card,
.place-card,
.blog-card,
.team-card,
.value-card,
.contact-card,
.gallery-item {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.feature-card:nth-child(odd),
.place-card:nth-child(odd),
.blog-card:nth-child(odd),
.team-card:nth-child(odd),
.value-card:nth-child(odd),
.contact-card:nth-child(odd),
.gallery-item:nth-child(odd) {
  transform: translateX(-90px) scale(0.96);
}


.feature-card:nth-child(even),
.place-card:nth-child(even),
.blog-card:nth-child(even),
.team-card:nth-child(even),
.value-card:nth-child(even),
.contact-card:nth-child(even),
.gallery-item:nth-child(even) {
  transform: translateX(90px) scale(0.96);
}


.feature-card.active,
.place-card.active,
.blog-card.active,
.team-card.active,
.value-card.active,
.contact-card.active,
.gallery-item.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}


.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

.stagger-4 {
  transition-delay: 0.32s;
}

.stagger-5 {
  transition-delay: 0.40s;
}

/* Hover එකට premium lift effect */
.feature-card.active:hover,
.blog-card.active:hover,
.team-card.active:hover,
.value-card.active:hover,
.contact-card.active:hover {
  transform: translateY(-10px) scale(1.01);
}

/* Place card / gallery hover image zoom එක smooth කරමු */
.place-card img,
.gallery-item img,
.blog-image img {
  transition: transform 0.7s ease;
}

.place-card:hover img,
.gallery-item:hover img,
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

/* Mobile එකේ side distance අඩු කරන්න */
@media (max-width: 768px) {
  .feature-card:nth-child(odd),
  .place-card:nth-child(odd),
  .blog-card:nth-child(odd),
  .team-card:nth-child(odd),
  .value-card:nth-child(odd),
  .contact-card:nth-child(odd),
  .gallery-item:nth-child(odd) {
    transform: translateX(-35px) scale(0.97);
  }

  .feature-card:nth-child(even),
  .place-card:nth-child(even),
  .blog-card:nth-child(even),
  .team-card:nth-child(even),
  .value-card:nth-child(even),
  .contact-card:nth-child(even),
  .gallery-item:nth-child(even) {
    transform: translateX(35px) scale(0.97);
  }

  .feature-card.active,
  .place-card.active,
  .blog-card.active,
  .team-card.active,
  .value-card.active,
  .contact-card.active,
  .gallery-item.active {
    transform: translateX(0) scale(1);
  }
}
/* Fix CTA hero title size */
section.hero[style*="height: 50vh"] .hero-title {
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: 1.05 !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* Fix hidden green buttons on white sections */
.btn-green {
  background: linear-gradient(135deg, #0f2f25, #1f5b46) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(15, 47, 37, 0.22) !important;
}

.btn-green:hover {
  background: linear-gradient(135deg, #c89b3c, #e6c879) !important;
  color: #0f2f25 !important;
  transform: translateY(-3px);
}