/* ============================================
   TRIPNEST TOURISM - PREMIUM TRAVEL WEBSITE
   Design System based on Logo
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Logo Color Palette */
:root {
  /* Primary Colors */
  --orange: #E8630A;
  --orange-light: #F57C00;
  --orange-dark: #D84315;
  --dark-blue: #1B3A8C;
  --dark-blue-light: #2E4A9C;
  --dark-blue-dark: #0F2460;
  
  /* Secondary Colors */
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --medium-grey: #E0E0E0;
  --dark-grey: #333333;
  --text-grey: #666666;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--orange) 0%, var(--dark-blue) 50%, #6B2D7D 100%);
  --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  --gradient-blue: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
  --shadow-orange: 0 8px 30px rgba(232, 99, 10, 0.3);
  
  /* Border Radius - Circular from logo */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 50px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-grey);
  background: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

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

.section-title span {
  display: inline-block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-grey);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 99, 10, 0.4);
}

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

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

.btn-whatsapp {
  background: linear-gradient(135deg, #E8630A 0%, #ff8c42 100%);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #C94F08 0%, #e67e33 100%);
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

.logo img {
  height: 55px;
  width: auto;
  border-radius: var(--radius-full);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
}

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

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

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-grey);
  position: relative;
  padding: 5px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  animation: gradientShift 15s ease infinite;
  background-size: 400% 400%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: rotate(0deg); opacity: 0.3; }
  50% { transform: rotate(180deg); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: var(--radius-xl);
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge i {
  color: var(--orange);
  font-size: 18px;
}

.hero-badge span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  min-height: 30px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions .btn {
  padding: 18px 40px;
  font-size: 16px;
}

/* Floating Airplane Animation */
.airplane {
  position: absolute;
  font-size: 40px;
  color: rgba(255,255,255,0.2);
  animation: fly 20s linear infinite;
  z-index: 1;
}

.airplane:nth-child(1) { top: 20%; animation-delay: 0s; }
.airplane:nth-child(2) { top: 50%; animation-delay: 7s; }
.airplane:nth-child(3) { top: 70%; animation-delay: 14s; }

@keyframes fly {
  0% { left: -100px; transform: translateY(0); }
  25% { transform: translateY(-30px); }
  50% { transform: translateY(20px); }
  75% { transform: translateY(-15px); }
  100% { left: calc(100% + 100px); transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  gap: 10px;
}

.scroll-indicator i {
  font-size: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

/* Stats Bar */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-left: 20px;
  margin-right: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-grey);
  font-size: 15px;
}

/* Section Padding */
.section {
  padding: var(--section-padding) 0;
}

.section-light {
  background: var(--light-grey);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--light-grey);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--orange);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--gradient-orange);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.7;
}

/* Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.package-badge.luxury { background: linear-gradient(135deg, #FFD700, #FFA500); }
.package-badge.budget { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.package-badge.honeymoon { background: linear-gradient(135deg, #E91E63, #C2185B); }

.package-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.package-price span {
  display: block;
  font-size: 12px;
  color: var(--text-grey);
}

.package-price strong {
  font-size: 1.3rem;
  color: var(--orange);
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.package-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-grey);
}

.package-meta i {
  color: var(--orange);
  margin-right: 5px;
}

.package-includes {
  margin-bottom: 20px;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 8px;
}

.package-includes i {
  color: #4CAF50;
  font-size: 12px;
}

/* Testimonials Section */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 25px;
  border: 4px solid var(--orange);
}

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

.testimonial-rating {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark-grey);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author h4 {
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-grey);
  font-size: 14px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  border: 2px solid var(--medium-grey);
  background: var(--white);
  color: var(--dark-blue);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--medium-grey);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dots span.active {
  background: var(--orange);
  width: 30px;
  border-radius: 6px;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-orange);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
}

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

.cta-section .btn:hover {
  background: var(--dark-blue);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--dark-blue);
  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 {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-normal);
}

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

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

.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;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* Page Banner */
.page-banner {
  background: var(--gradient-hero);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 100px;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.page-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

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

.breadcrumb span {
  color: var(--white);
}

/* Services Page */
.services-detail {
  padding: var(--section-padding) 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  transition: var(--transition-normal);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-image {
  min-height: 300px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-image::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: rotate 15s linear infinite;
}

.service-detail-image i {
  font-size: 80px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-detail-content {
  padding: 40px;
}

.service-detail-content h3 {
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.service-detail-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-detail-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-grey);
}

.service-detail-content ul li i {
  color: var(--orange);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

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

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-grey);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-feature i {
  width: 50px;
  height: 50px;
  background: var(--light-grey);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
}

.about-feature span {
  font-weight: 600;
  color: var(--dark-blue);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
}

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

.team-image {
  height: 280px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 25px;
}

.team-info h4 {
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.team-info span {
  color: var(--orange);
  font-size: 14px;
}

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item i {
  width: 60px;
  height: 60px;
  background: var(--light-grey);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.contact-info-item p {
  color: var(--text-grey);
  font-size: 15px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--medium-grey);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-normal);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-error {
  color: #E53935;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #E53935;
}

.form-group.error .form-error {
  display: block;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

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

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

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

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

.gallery-overlay i {
  color: var(--white);
  font-size: 30px;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }

/* Blog Page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

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

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

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

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-grey);
}

.blog-meta i {
  color: var(--orange);
  margin-right: 5px;
}

.blog-content h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-grey);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  gap: 12px;
}

/* Admin Panel */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 20px;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-card .logo {
  justify-content: center;
  margin-bottom: 30px;
}

.login-card h2 {
  margin-bottom: 10px;
}

.login-card p {
  color: var(--text-grey);
  margin-bottom: 30px;
}

.login-card .form-group {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  margin-top: 10px;
}

.login-error {
  background: #FFEBEE;
  color: #C62828;
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
}

.login-error.show {
  display: block;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

/* Admin Dashboard */
.admin-dashboard {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 30px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar .logo {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .logo-text {
  color: var(--white);
}

.admin-nav li {
  margin-bottom: 10px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7);
  transition: var(--transition-normal);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.admin-nav a i {
  width: 24px;
}

.admin-main {
  flex: 1;
  margin-left: 280px;
  background: var(--light-grey);
  min-height: 100vh;
}

.admin-header {
  background: var(--white);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.admin-header h2 {
  font-size: 1.5rem;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-user img {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.logout-btn {
  background: none;
  border: none;
  color: var(--text-grey);
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition-normal);
}

.logout-btn:hover {
  color: #E53935;
}

.admin-content {
  padding: 40px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.stat-card-header i {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-card-header i.orange {
  background: rgba(232, 99, 10, 0.1);
  color: var(--orange);
}

.stat-card-header i.blue {
  background: rgba(27, 58, 140, 0.1);
  color: var(--dark-blue);
}

.stat-card-header i.green {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.stat-card-header i.purple {
  background: rgba(156, 39, 176, 0.1);
  color: #9C27B0;
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat-card p {
  color: var(--text-grey);
  font-size: 14px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.admin-card-header h3 {
  font-size: 1.3rem;
}

/* Package Form */
.package-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

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

/* Package List Table */
.packages-table {
  width: 100%;
  border-collapse: collapse;
}

.packages-table th,
.packages-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--medium-grey);
}

.packages-table th {
  font-weight: 600;
  color: var(--dark-blue);
  background: var(--light-grey);
}

.packages-table td {
  color: var(--text-grey);
}

.packages-table img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.packages-table .badge {
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
}

.packages-table .badge.popular { background: #FFF3E0; color: var(--orange); }
.packages-table .badge.luxury { background: #FFF8E1; color: #F57F17; }
.packages-table .badge.budget { background: #E8F5E9; color: #2E7D32; }
.packages-table .badge.honeymoon { background: #FCE4EC; color: #C2185B; }

.delete-btn {
  background: #FFEBEE;
  color: #C62828;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-btn:hover {
  background: #C62828;
  color: var(--white);
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    transition: var(--transition-normal);
    gap: 25px;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .services-grid,
  .packages-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img-small {
    display: none;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  
  .service-detail-image {
    min-height: 200px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .admin-sidebar {
    width: 100%;
    position: relative;
    height: auto;
  }
  
  .admin-main {
    margin-left: 0;
  }
  
  .admin-dashboard {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .services-grid,
  .packages-grid,
  .blog-grid,
  .team-grid,
  .stats-grid,
  .stats-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .stats-bar {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .service-detail-content ul {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .package-form {
    grid-template-columns: 1fr;
  }
  
  .package-form .form-group.full-width {
    grid-column: span 1;
  }
  
  .testimonial-item {
    padding: 30px 20px;
  }
  
  .contact-form-card,
  .login-card {
    padding: 30px 20px;
  }
  
  .admin-content {
    padding: 20px;
  }
  
  .admin-header {
    padding: 15px 20px;
  }
  
  .packages-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .service-card,
  .package-card,
  .blog-card,
  .team-card {
    padding: 25px 20px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
