:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --dark: #2C3E50;
  --light: #F7F9FC;
  --accent: #FFE66D;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

nav.scrolled, nav.static {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 5%;
}

nav.scrolled .logo, nav.static .logo { 
  color: var(--dark); 
}

nav.scrolled .nav-links a, nav.static .nav-links a { 
  color: var(--dark); 
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after { 
  width: 100%; 
}

.nav-links a.active { 
  color: var(--primary); 
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

nav.scrolled .mobile-menu-btn, nav.static .mobile-menu-btn { 
  color: var(--dark); 
}

/* ===== BUTTONS ===== */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover { 
  background: white; 
  color: var(--dark); 
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave { 
  0%, 100% { transform: translateX(0); } 
  50% { transform: translateX(-20px); } 
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 2rem;
  max-width: 900px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

/* ===== FLOATING CARDS ===== */
.floating-cards { 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  color: white;
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) { top: 20%; left: 10%; }
.float-card:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
.float-card:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }

@keyframes float { 
  0%, 100% { transform: translateY(0) rotate(0deg); } 
  50% { transform: translateY(-20px) rotate(2deg); } 
}

/* ===== UTILITIES ===== */
.container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 5%; 
}

.section-header { 
  text-align: center; 
  margin-bottom: 4rem; 
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p { 
  color: #666; 
  font-size: 1.1rem; 
  max-width: 600px; 
  margin: 0 auto; 
}

.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: all 0.8s ease; 
}

.reveal.active { 
  opacity: 1; 
  transform: translateY(0); 
}

.bg-light { 
  background: var(--light); 
}

/* ===== GRID LAYOUTS ===== */
.grid { 
  display: grid; 
  gap: 2rem; 
  max-width: 1400px; 
  margin: 0 auto; 
}

.grid-2 { 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
}

.grid-3 { 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}

.grid-4 { 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: '✈️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 4rem;
  transition: transform 0.3s;
}

.card:hover .card-image::after { 
  transform: translate(-50%, -50%) scale(1); 
}

.card-content { 
  padding: 1.5rem; 
}

.card-content h3 { 
  font-size: 1.5rem; 
  margin-bottom: 0.5rem; 
}

/* ===== SECTIONS ===== */
section { 
  padding: 6rem 5%; 
}

.destinations { 
  background: var(--light); 
}

.destination-card { 
  cursor: pointer; 
}

.price { 
  color: var(--primary); 
  font-size: 1.3rem; 
  font-weight: 700; 
  margin-bottom: 0.5rem; 
}

.price span { 
  font-size: 0.9rem; 
  color: #666; 
  font-weight: 400; 
}

.rating { 
  color: #ffc107; 
  margin-bottom: 1rem; 
}

/* ===== SERVICES ===== */
.services { 
  background: white; 
}

.service-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: var(--light);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before { 
  transform: scaleX(1); 
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  display: inline-block; 
  transition: var(--transition); 
}

.service-card:hover .service-icon { 
  transform: scale(1.2) rotate(5deg); 
}

/* ===== SERVICE DETAIL PAGE ===== */
.page-header {
  background: var(--gradient);
  color: white;
  padding: 10rem 5% 4rem;
  text-align: center;
}

.page-header h1 { 
  margin-bottom: 1rem; 
}

.page-header p { 
  font-size: 1.2rem; 
  opacity: 0.9; 
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail:nth-child(even) { 
  direction: rtl; 
}

.service-detail:nth-child(even) > * { 
  direction: ltr; 
}

.service-detail h3 { 
  font-size: 2rem; 
  margin-bottom: 1rem; 
  color: var(--dark); 
}

.service-detail ul { 
  list-style: none; 
  margin: 1.5rem 0; 
}

.service-detail li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-visual { 
  height: 400px; 
  border-radius: 20px; 
}

/* ===== BLOG ===== */
.blog-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr; 
  gap: 3rem; 
}

.blog-posts { 
  display: flex; 
  flex-direction: column; 
  gap: 2rem; 
}

.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-content { 
  padding: 2rem; 
}

.blog-meta { 
  color: var(--primary); 
  font-size: 0.85rem; 
  font-weight: 600; 
  text-transform: uppercase; 
}

.blog-card h3 { 
  font-size: 1.5rem; 
  margin: 0.5rem 0 1rem; 
  color: var(--dark); 
}

.read-more { 
  color: var(--primary); 
  text-decoration: none; 
  font-weight: 600; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  transition: gap 0.3s; 
}

.read-more:hover { 
  gap: 1rem; 
}

.sidebar { 
  position: sticky; 
  top: 100px; 
  height: fit-content; 
}

.sidebar-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 { 
  margin-bottom: 1rem; 
  color: var(--dark); 
}

.category-list { 
  list-style: none; 
}

.category-list li { 
  padding: 0.8rem 0; 
  border-bottom: 1px solid #eee; 
}

.category-list a { 
  color: #666; 
  text-decoration: none; 
  display: flex; 
  justify-content: space-between; 
  transition: var(--transition); 
}

.category-list a:hover { 
  color: var(--primary); 
}

/* ===== ARTICLE PAGE ===== */
.article-header {
  background: var(--gradient);
  color: white;
  padding: 8rem 5% 4rem;
  text-align: center;
}

.category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  margin-bottom: 1rem;
}

.article-meta { 
  display: flex; 
  justify-content: center; 
  gap: 2rem; 
  opacity: 0.9; 
  flex-wrap: wrap; 
}

.article-image {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  margin: -3rem auto 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
}

.article-content h2 { 
  font-size: 2rem; 
  margin: 2rem 0 1rem; 
  color: var(--dark); 
}

.article-content p { 
  margin-bottom: 1.5rem; 
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: #555; 
}

.share-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  text-align: center;
}

.share-buttons { 
  display: flex; 
  justify-content: center; 
  gap: 1rem; 
  margin-top: 1rem; 
  flex-wrap: wrap; 
}

.share-btn { 
  padding: 0.8rem 1.5rem; 
  border-radius: 10px; 
  text-decoration: none; 
  color: white; 
  font-weight: 500; 
  transition: var(--transition); 
}

.share-btn:hover { 
  transform: translateY(-3px); 
}

.share-btn.facebook { 
  background: #3b5998; 
}

.share-btn.twitter { 
  background: #1da1f2; 
}

.share-btn.whatsapp { 
  background: #25d366; 
}

/* ===== CONTACT PAGE ===== */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.contact-info h3 { 
  font-size: 1.8rem; 
  margin-bottom: 1rem; 
  color: var(--dark); 
}

.contact-info > p { 
  color: #666; 
  margin-bottom: 2rem; 
  line-height: 1.8; 
}

.info-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 1rem; 
  margin-bottom: 1.5rem; 
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item h4 { 
  margin-bottom: 0.3rem; 
  color: var(--dark); 
}

.info-item p { 
  color: #666; 
  margin: 0; 
}

.social-large { 
  display: flex; 
  gap: 1rem; 
  margin-top: 2rem; 
}

.social-large a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  font-size: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-large a:hover { 
  background: var(--primary); 
  transform: translateY(-5px); 
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-form-container h3 { 
  margin-bottom: 1.5rem; 
  color: var(--dark); 
}

.map-section {
  margin-top: 4rem;
  height: 400px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* ===== FORMS ===== */
.form-grid { 
  display: grid; 
  gap: 1.5rem; 
  margin-bottom: 1.5rem; 
}

.form-group { 
  display: flex; 
  flex-direction: column; 
}

.form-group label { 
  margin-bottom: 0.5rem; 
  font-weight: 500; 
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea { 
  min-height: 150px; 
  resize: vertical; 
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials { 
  background: var(--light); 
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { 
  transform: translateY(-5px); 
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-text { 
  font-style: italic; 
  margin-bottom: 1.5rem; 
  color: #555; 
  line-height: 1.8; 
}

.testimonial-author { 
  display: flex; 
  align-items: center; 
  gap: 1rem; 
}

.testimonial-author p { 
  font-size: 0.9rem; 
  color: #666; 
  margin: 0; 
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-section > p { 
  color: #aaa; 
  line-height: 1.8; 
  margin-bottom: 1rem; 
}

.footer-section ul { 
  list-style: none; 
}

.footer-section li { 
  margin-bottom: 0.8rem; 
  color: #aaa; 
}

.footer-section a { 
  color: #aaa; 
  text-decoration: none; 
  transition: var(--transition); 
}

.footer-section a:hover { 
  color: var(--primary); 
}

.footer-section form { 
  display: flex; 
  gap: 0.5rem; 
  margin-top: 1rem; 
}

.footer-section input { 
  padding: 0.8rem; 
  border-radius: 5px; 
  border: none; 
  flex: 1; 
}

.footer-section button { 
  padding: 0.8rem 1.2rem; 
  background: var(--primary); 
  color: white; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
}

.social-links { 
  display: flex; 
  gap: 1rem; 
  margin-top: 1rem; 
  flex-wrap: wrap; 
}

.social-links a {
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
}

.social-links a:hover { 
  background: var(--primary); 
  transform: translateY(-3px); 
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .blog-grid { 
    grid-template-columns: 1fr; 
  }
  .blog-card { 
    grid-template-columns: 1fr; 
  }
  .sidebar { 
    position: static; 
  }
  .service-detail { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .service-detail:nth-child(even) { 
    direction: ltr; 
  }
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
  }
  .article-image { 
    height: 300px; 
    margin-top: -2rem; 
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.active { 
    display: flex; 
  }
  .nav-links a { 
    color: var(--dark) !important; 
  }
  .mobile-menu-btn { 
    display: block; 
  }
  .page-header { 
    padding: 8rem 5% 4rem; 
  }
  .contact-form-container { 
    padding: 2rem; 
  }
  .grid-2 { 
    grid-template-columns: 1fr; 
  }
}