@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Premium Palette */
  --bg-primary: #080c10;
  --bg-secondary: #0f1620;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-active: rgba(0, 230, 118, 0.3);
  
  --accent-mint: #00e676;       /* Tropical emerald */
  --accent-gold: #ffb300;       /* Sunset gold */
  --accent-coral: #ff5252;      /* Warm coral */
  --text-main: #f5f6f8;
  --text-muted: #94a3b8;
  
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-mint);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 16, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.8rem;
}

.logo-img {
  height: 54px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

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

.nav-link:hover {
  color: var(--accent-mint);
}

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

.nav-link.active {
  color: var(--accent-mint);
}

.btn-nav {
  background: transparent;
  color: var(--accent-mint);
  border: 1px solid var(--accent-mint);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  background: var(--accent-mint);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

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

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

/* Hero Section */
.hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  background: linear-gradient(180deg, rgba(8, 12, 16, 0.3) 0%, rgba(8, 12, 16, 0.95) 100%),
              url('../images/hero.jpg') center/cover no-repeat fixed;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  z-index: 5;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent-mint);
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(0, 230, 118, 0.05);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-mint), #00b0ff);
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  background: var(--bg-glass);
  color: #fff;
  border: 1px solid var(--border-glass);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Sections */
.section-padding {
  padding: 7rem 2rem;
}

.sec-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.sec-subtitle {
  color: var(--accent-mint);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glass-active);
  background: var(--bg-glass-hover);
  box-shadow: var(--shadow-main);
}

.feat-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-mint), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feat-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feat-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Highlighted Tours Preview */
.tours-preview {
  background-color: var(--bg-secondary);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-active);
  box-shadow: var(--shadow-main);
}

.tour-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.tour-card:hover .tour-img {
  transform: scale(1.08);
}

.tour-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-mint);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.tour-content {
  padding: 2rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

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

.tour-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tour-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.tour-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-price strong {
  font-size: 1.6rem;
  color: var(--accent-gold);
  display: block;
  font-weight: 700;
}

.btn-card {
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  border-radius: 50px;
}

/* Destinations Filtering & Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255,255,255,0.2);
}

.filter-btn.active {
  background: var(--accent-mint);
  color: var(--bg-primary);
  border-color: var(--accent-mint);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item.hidden {
  display: none;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(8, 12, 16, 0.95) 0%, rgba(8, 12, 16, 0) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.gallery-tag {
  color: var(--accent-mint);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(8, 12, 16, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--border-glass);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent-mint);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background: var(--accent-mint);
  color: var(--bg-primary);
  border-color: var(--accent-mint);
}

.lightbox-prev {
  left: -5rem;
}

.lightbox-next {
  right: -5rem;
}

/* About Us Layout */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-img-wrapper {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 320px;
}

.about-img-wrapper:nth-child(even) {
  transform: translateY(20px);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 1.5rem 1rem;
  border-radius: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-mint);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Contact Page Form */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-sidebar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 3rem 2.5rem;
  border-radius: 20px;
}

.contact-sidebar h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-title {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-detail {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent-mint);
  color: var(--bg-primary);
  border-color: var(--accent-mint);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 4rem 3.5rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.form-control {
  background: rgba(8, 12, 16, 0.6);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-mint);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.15);
  background: rgba(8, 12, 16, 0.85);
}

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

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--accent-mint);
  display: block;
}

.form-message.error {
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.3);
  color: var(--accent-coral);
  display: block;
}

.btn-submit {
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Footer Section */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 2rem 2rem 2rem;
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto 4rem auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-mint);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-mint);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-info li {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  gap: 0.8rem;
}

.footer-contact-info li span {
  color: var(--accent-mint);
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(8, 12, 16, 0.8);
  border: 1px solid var(--border-glass);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-mint);
}

.btn-newsletter {
  background: var(--accent-mint);
  color: var(--bg-primary);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-newsletter:hover {
  box-shadow: 0 0 15px rgba(0,230,118,0.4);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-grid {
    order: 2;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 46px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu.active ~ .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .sec-title {
    font-size: 2.2rem;
  }
  
  .hero-sec {
    padding: 7rem 1.5rem 3rem 1.5rem;
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .contact-sidebar {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 1.2rem 0.5rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0px;
  }
  
  .about-img-wrapper {
    height: 200px;
  }
  
  .about-img-wrapper:nth-child(even) {
    transform: none;
  }
  
  .about-img-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Lightbox on mobile */
  .lightbox-content {
    max-width: 95%;
  }
  
  .lightbox-img {
    max-height: 70vh;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-close {
    top: -2.8rem;
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.15rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.8rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Stack stats on very small heights or keep 3 columns */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* 2-column clean gallery layout for mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .gallery-item {
    height: 160px;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 34px;
    padding: 2px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .gallery-item {
    height: 130px;
  }
}
