* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f2d5c;
  --secondary: #d4a437;
  --dark: #0b1220;
  --text: #4b5563;
  --light: #f7f8fc;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #16a34a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.section-title h2 {
  font-size: 2.3rem;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title p {
  font-size: 1rem;
}

.light-title h2,
.light-title p {
  color: var(--white);
}

.header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  color: var(--white);
  background:
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,18,32,0.92), rgba(15,45,92,0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 90px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-description {
  font-size: 1.08rem;
  max-width: 650px;
  margin-bottom: 28px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
}

.stat-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 22px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.stat-box h3 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 5px;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.about-grid,
.services-grid,
.destinations-grid,
.testimonials-grid,
.contact-grid {
  display: grid;
  gap: 25px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-card,
.service-card,
.contact-info-card,
.contact-form,
.destination-card,
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-card,
.service-card,
.contact-info-card,
.contact-form {
  padding: 28px;
}

.about-card h3,
.service-card h3,
.contact-info-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
}

.notice {
  margin-top: 28px;
  background: #fff8e7;
  border-left: 5px solid var(--secondary);
  padding: 20px;
  border-radius: 14px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.destinations-grid {
  grid-template-columns: repeat(4, 1fr);
}

.destination-card {
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-content {
  padding: 22px;
}

.destination-content h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.testimonials-section {
  background: var(--dark);
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

.testimonial-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.testimonial-content {
  padding: 24px;
}

.testimonial-content h3 {
  margin-bottom: 6px;
}

.testimonial-content span {
  color: var(--secondary);
  display: block;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary), #173d7d);
}

.cta-box {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-info-card p {
  margin-bottom: 10px;
}

.whatsapp-btn {
  background: var(--success);
  color: var(--white);
  margin-top: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

#form-message {
  color: var(--success);
  font-weight: 700;
  margin-top: 5px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  z-index: 999;
}

.footer {
  background: #060b14;
  color: #cbd5e1;
  padding: 30px 0;
}

.footer-content {
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-content,
  .about-grid,
  .services-grid,
  .destinations-grid,
  .testimonials-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .destinations-grid,
  .testimonials-grid {
    display: grid;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 75px;
    right: 5%;
    width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonials-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.testimonial-card{

background:rgba(255,255,255,0.05);

border-radius:15px;

overflow:hidden;

}

.testimonial-card img{

width:100%;

height:220px;

object-fit:cover;

}

.testimonial-content{

padding:15px;

}

.testimonial-content h3{

margin-bottom:5px;

}

.testimonial-content span{

color:#d4a437;

font-size:14px;

display:block;

margin-bottom:8px;

}

.testimonial-content p{

font-size:14px;

}

@media(max-width:900px){

.testimonials-grid{

grid-template-columns:repeat(2,1fr);

}

}