/* 
  Al Massar Travel & Tourism Landing Page Stylesheet
  Design: Modern luxury, Elegant, Gulf-travel agency style
  Color Palette: Primary Blue (#0D47A1), Dark Blue (#082C52), Gold (#F2B23D), White (#FFFFFF)
*/

/* --- Design Tokens / CSS Variables --- */
:root {
  --primary: #0D47A1;
  --primary-rgb: 13, 71, 161;
  --dark: #082C52;
  --dark-rgb: 8, 44, 82;
  --gold: #F2B23D;
  --gold-rgb: 242, 178, 61;
  --gold-hover: #DDA232;
  --white: #FFFFFF;
  --charcoal: #222222;
  
  --bg-light: #F7F9FC;
  --bg-dark-card: rgba(8, 44, 82, 0.95);
  --text-main: #333333;
  --text-muted: #666666;
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(13, 71, 161, 0.08);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(13, 71, 161, 0.08), 0 4px 6px -2px rgba(13, 71, 161, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(13, 71, 161, 0.12), 0 10px 10px -5px rgba(13, 71, 161, 0.04);
  
  --font-arabic: 'Almarai', 'Cairo', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
}

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

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

body {
  font-family: var(--font-arabic);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Global Layout Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

/* --- Typographical Details --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(242, 178, 61, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(242, 178, 61, 0.4);
}

.btn-secondary-nav {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-secondary-nav:hover {
  background-color: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
}

/* --- Navigation Header --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
  background-color: rgba(8, 44, 82, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  max-width: 140px;
}

.nav-logo {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1); /* Forces logo text/icon to remain crisp white on header overlay */
  transition: var(--transition-smooth);
}

.main-header.scrolled .nav-logo {
  height: 48px;
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

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

.icon-ws {
  width: 18px;
  height: 18px;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  background-color: var(--dark);
  z-index: 999;
  padding: 100px 30px 40px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-right: 8px;
}

.mobile-drawer-cta {
  margin-top: auto;
}

.mobile-drawer-cta .btn {
  width: 100%;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(8,44,82,0.4) 0%, rgba(8,44,82,0.85) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-logo-box {
  max-width: 250px;
  margin: 0 auto 30px;
  animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-title {
  font-family: 'Cairo', var(--font-arabic);
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.icon-ws-lg {
  width: 24px;
  height: 24px;
}

/* Scroll Arrow Button */
.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

.scroll-down-arrow svg {
  width: 32px;
  height: 32px;
}

/* --- Section Formatting --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-tagline {
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cairo', var(--font-arabic);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- Services Section --- */
.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 45px 30px;
  border-radius: 20px;
  border: 1px solid rgba(13, 71, 161, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 178, 61, 0.2);
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background-color: rgba(13, 71, 161, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.service-icon {
  width: 36px;
  height: 36px;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Destinations Section --- */
.destinations-section {
  background-color: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.card-span-2 {
  grid-column: span 2;
}

.destination-image-box {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(8, 44, 82, 0.95) 0%, rgba(8, 44, 82, 0.6) 40%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 35px;
  transition: var(--transition-smooth);
}

.destination-content {
  width: 100%;
  color: var(--white);
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.destination-name {
  font-family: 'Cairo', var(--font-arabic);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.destination-desc {
  font-size: 0.95rem;
  opacity: 0;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(8, 44, 82, 0.98) 0%, rgba(8, 44, 82, 0.8) 60%, rgba(0,0,0,0.1) 100%);
}

.destination-card:hover .destination-content {
  transform: translateY(0);
}

.destination-card:hover .destination-desc {
  opacity: 1;
  max-height: 100px;
}

/* --- Why Choose Us Section --- */
.why-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.why-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at -20% -20%, rgba(13, 71, 161, 0.05) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 71, 161, 0.03);
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 178, 61, 0.2);
}

.why-icon-circle {
  width: 70px;
  height: 70px;
  background-color: rgba(242, 178, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-circle {
  background-color: var(--gold);
  color: var(--dark);
}

.why-icon {
  width: 30px;
  height: 30px;
}

.why-icon-ws-card {
  width: 32px;
  height: 32px;
}

.why-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Gallery Section --- */
.gallery-section {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 44, 82, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-icon {
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

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

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

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

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 44, 82, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

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

/* --- Contact Section --- */
.contact-section {
  background-color: var(--white);
  padding-bottom: 120px;
}

.contact-box {
  background: radial-gradient(circle at 100% 100%, rgba(13, 71, 161, 0.05) 0%, rgba(255,255,255,0) 80%), var(--white);
  padding: 60px 40px;
  border-radius: 30px;
  border: 1px solid rgba(13, 71, 161, 0.06);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(13, 71, 161, 0.05);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details-icon {
  width: 26px;
  height: 26px;
}

.contact-text h3 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-link:hover {
  color: var(--gold);
}

.contact-cta {
  margin-top: 20px;
}

/* --- Footer Section --- */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 4px solid var(--gold);
}

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 65px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 5px;
}

.footer-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

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

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

.social-icon-link:hover {
  background-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.icon-social {
  width: 18px;
  height: 18px;
}

/* Footer Bottom Bar */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex a {
  color: var(--gold);
}

/* --- Animation Keyframes & Utility classes --- */
.pulse-glow {
  position: relative;
}

.pulse-glow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(242, 178, 61, 0.6);
  opacity: 0;
  z-index: -1;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.2; }
  50% { transform: scale(1.08); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

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

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

/* Scroll reveal initial states */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */

/* Tablet & Smaller Desktop Screens */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-span-2 {
    grid-column: span 2;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .main-header {
    padding: 15px 0;
  }
  
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1000;
  }
  
  /* Hamburger to Cross icon transition */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-span-2 {
    grid-column: span 1;
  }
  
  .destination-card {
    height: 320px;
  }
  
  .destination-overlay {
    padding: 25px;
  }
  
  .destination-content {
    transform: translateY(0);
  }
  
  .destination-desc {
    opacity: 1;
    max-height: 80px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-box {
    padding: 40px 20px;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
