
/* === GLOBAL STYLES === */
:root {
  --primary: #0a4d68;
  --secondary: #088395;
  --accent: #ff9e43;
  --light: #f8f9fa;
  --dark: #212529;
  --gradient: linear-gradient(135deg, #0a4d68 0%, #05bfdb 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

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

.section-title h2 {
  font-size: 42px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.section-title p {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: #e58e33;
  border-color: #e58e33;
  color: white;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

/* === TOP BAR === */
.topbar {
  background-color: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.topbar .social-icons a {
  color: white;
  margin-left: 15px;
}

.topbar .contact-info span {
  margin-right: 20px;
}

.topbar i {
  margin-right: 5px;
}

/* === NAVBAR === */
.navbar {
  transition: var(--transition);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: 10px 0;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-scrolled {
  background-color: white;
  box-shadow: var(--shadow);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 10px;
}

.dropdown-item:hover {
  background-color: rgba(10, 77, 104, 0.1);
}

.dropdown-item.active {
  background-color: var(--primary);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* === FEATURED DESTINATIONS === */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  height: 350px;
}

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

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

.destination-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.destination-card .overlay h3 {
  margin-bottom: 10px;
}

.destination-card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.destination-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* === ABOUT SECTION === */
.about-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.about-img .shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.about-img .shape.shape-1 {
  top: -50px;
  left: -50px;
}

.about-img .shape.shape-2 {
  bottom: -50px;
  right: -50px;
}

.about-content {
  padding: 30px 0;
}

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

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: var(--transition);
}

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

.feature-box i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  font-size: 30px;
  margin-bottom: 20px;
}

.feature-box h4 {
  margin-bottom: 15px;
}

/* === TESTIMONIAL SECTION === */
.testimonial {
  background-color: #f8f9fa;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin: 20px 15px;
}

.testimonial-card .quote {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .client {
  display: flex;
  align-items: center;
}

.testimonial-card .client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

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

.testimonial-card .client-info h5 {
  margin-bottom: 5px;
}

.testimonial-card .client-info span {
  color: #6c757d;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #ffc107;
  margin-top: 10px;
}

/* === CALL TO ACTION === */
.cta {
  background: var(--gradient);
  color: white;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 30px;
}

/* === CONTACT SECTION === */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-info {
  background: var(--primary);
  color: white;
  border-radius: 15px;
}
.contact-info h4 {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 20px;
  font-size: 20px;
}

.contact-info-item div h5 {
  margin-bottom: 5px;
}

.contact-map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

/* === FOOTER === */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 25px 0 0;
}

.footer-about h5 {
  margin-bottom: 20px;
  color: white;
}

.footer-about p {
  margin-bottom: 30px;
  color: #a9a9a9;
}

.footer-links h5 {
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-links ul li a {
  color: #a9a9a9;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact h5 {
  margin-bottom: 20px;
  color: white;
}

.footer-contact p {
  margin-bottom: 15px;
  color: #a9a9a9;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--accent);
}

.footer-bottom {
  background-color: #111111;
  padding: 20px 0;
  margin-top: 9px;
}

.footer-bottom p {
  margin: 0;
  color: #a9a9a9;
}

.footer-bottom .social a {
  color: #a9a9a9;
  margin-left: 15px;
  transition: var(--transition);
}

.footer-bottom .social a:hover {
  color: var(--accent);
}

/* === NATIONAL DESTINATIONS PAGE === */
.page-header {
  position: relative;
  height: 50vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.page-header-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item, .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

/* Package card styles */
.package-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card img {
    height: 330px;
    object-fit: cover;
}

.package-card .card-body {
  padding: 25px;
}

.package-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.package-card .price small {
  font-size: 14px;
  color: #6c757d;
  font-weight: 400;
}

.package-card .features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-card .features li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
}

.package-card .features li i {
  color: var(--accent);
  margin-right: 10px;
}

.package-card .card-footer {
  background: transparent;
  border-top: 1px solid #f1f1f1;
  padding: 20px 25px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
}

.package-meta span {
  color: #6c757d;
  font-size: 14px;
}

.package-meta span i {
  margin-right: 5px;
}

/* Filter sidebar */
.filter-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.filter-card .card-header {
  background-color: var(--primary);
  color: white;
  padding: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.filter-card .card-body {
  padding: 20px;
}

.range-slider {
  margin-bottom: 30px;
}

/* === ABOUT PAGE === */
.team-card {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card .team-info {
  padding: 25px;
  text-align: center;
}

.team-card h4 {
  margin-bottom: 5px;
}

.team-card span {
  color: #6c757d;
  margin-bottom: 15px;
  display: block;
}

.team-card .social {
  margin-top: 15px;
}

.team-card .social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #f8f9fa;
  color: var(--primary);
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  transition: var(--transition);
}

.team-card .social a:hover {
  background-color: var(--primary);
  color: white;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #f1f1f1;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: " ";
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: calc(100% - 90px);
  padding: 0 20px 0 40px;
}

.timeline > li .timeline-image {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  border: 7px solid #f1f1f1;
  border-radius: 100%;
  text-align: center;
  color: white;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

/* === CONTACT PAGE === */
.contact-form label {
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* Newsletter modal */
.newsletter-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

.newsletter-modal .modal-header {
  border-bottom: none;
  padding: 30px 30px 0;
}

.newsletter-modal .modal-body {
  padding: 30px;
}

.newsletter-modal .modal-footer {
  border-top: none;
  padding: 0 30px 30px;
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 1s ease-out;
}

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

/* Responsive styles */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 10px;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline > li .timeline-image {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .timeline > li .timeline-panel {
    width: calc(100% - 70px);
    padding: 0 15px 0 30px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .page-header-content h1 {
    font-size: 36px;
  }
}

