:root {
  --earth: #4b2412;
  --sunset: #c46a1c;
  --gold: #f2b84b;
  --cream: #fff7ea;
  --dark: #1c120c;
  --green: #315c3b;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--cream);
  color: #332018;
}

.gregmas-nav {
  background: rgba(28, 18, 12, 0.9);
  backdrop-filter: blur(12px);
  padding: 16px 0;
}

.navbar-brand {
  color: var(--gold) !important;
  letter-spacing: .4px;
}

.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  margin: 0 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: #241109;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 30px rgba(196, 106, 28, .35);
}

.btn-gold:hover {
  color: #241109;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(28,18,12,.86), rgba(75,36,18,.65)),
    url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(242,184,75,.22), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(49,92,59,.35), transparent 30%);
}

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

.hero-badge,
.section-tag {
  display: inline-block;
  background: rgba(242, 184, 75, .16);
  color: var(--sunset);
  border: 1px solid rgba(242, 184, 75, .35);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
}

.hero-badge {
  color: var(--gold);
}

.section-tag.light {
  color: var(--gold);
}

.section-title {
  font-weight: 800;
  color: var(--earth);
  margin-bottom: 18px;
}

.intro-section {
  background:
    linear-gradient(90deg, rgba(255,247,234,.96), rgba(255,247,234,.96)),
    repeating-linear-gradient(45deg, #c46a1c 0 8px, #4b2412 8px 16px);
}

.pattern-card {
  background: var(--dark);
  color: white;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(75,36,18,.22);
  border-bottom: 6px solid var(--gold);
}

.pattern-card i {
  color: var(--gold);
  margin-right: 8px;
}

.pattern-card li {
  margin-bottom: 12px;
}

.services-section {
  background: #fff;
}

.service-card {
  background: var(--cream);
  padding: 32px 24px;
  border-radius: 24px;
  height: 100%;
  border: 1px solid rgba(75,36,18,.08);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(75,36,18,.12);
}

.service-card i {
  font-size: 2.4rem;
  color: var(--sunset);
}

.service-card h5 {
  margin-top: 18px;
  font-weight: 800;
  color: var(--earth);
}

.packages-section {
  background: linear-gradient(180deg, #fff7ea, #f6ead8);
}

.package-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(75,36,18,.13);
  height: 100%;
}

.package-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.package-1 {
  background-image: url('https://images.unsplash.com/photo-1586861635167-e5223aadc9fe?auto=format&fit=crop&w=900&q=80');
}

.package-2 {
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80');
}

.package-3 {
  background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=900&q=80');
}

.package-label {
  display: inline-block;
  color: var(--sunset);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 8px;
}

.package-card h4 {
  color: var(--earth);
  font-weight: 800;
}

.destinations-section {
  background: #fff;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.destination-grid span {
  background: linear-gradient(135deg, var(--earth), var(--sunset));
  color: white;
  padding: 18px;
  text-align: center;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(75,36,18,.18);
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(28,18,12,.94), rgba(75,36,18,.9)),
    url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.cta-card {
  color: white;
  padding: 60px 30px;
}

.cta-card h2 {
  font-weight: 800;
  margin-top: 15px;
}

.contact-section {
  background: var(--cream);
}

.contact-info p {
  margin-bottom: 14px;
  font-weight: 600;
}

.contact-info i {
  color: var(--sunset);
  margin-right: 8px;
}

.contact-form {
  background: white;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(75,36,18,.12);
}

.form-control {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(75,36,18,.16);
}

.form-control:focus {
  border-color: var(--sunset);
  box-shadow: 0 0 0 .2rem rgba(196,106,28,.15);
}

.footer {
  background: var(--dark);
  color: white;
}

.footer small {
  color: rgba(255,255,255,.65);
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .display-3 {
    font-size: 2.7rem;
  }
}

@media (max-width: 576px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }
}


.footer {
  background:
    linear-gradient(135deg, rgba(20,12,8,.97), rgba(52,28,16,.96)),
    url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7));
}

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

.footer-logo {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-text {
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: .25s ease;
}

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

.footer-contact p {
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: .3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: #23140c;
  transform: translateY(-4px);
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
}

.copyright {
  color: rgba(255,255,255,.65);
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: .25s ease;
}

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

@media(max-width:768px){

  .footer-bottom-links {
    justify-content: start;
  }

}