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

/* CSS Variables */
:root {
  --primary-color: #0F1E36;      /* Deep Prussian Blue */
  --primary-dark: #071120;       /* Darker Blue */
  --accent-color: #EAA023;       /* Amber Gold */
  --accent-hover: #D08A18;      /* Gold Hover */
  --text-dark: #2D3748;          /* Charcoal Body */
  --text-light: #718096;         /* Slate Grey text */
  --bg-light: #F7F9FC;           /* Soft Light Background */
  --white: #FFFFFF;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
  --border-radius: 12px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

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

/* Section Headings */
.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-color);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-title h2 span {
  color: var(--accent-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(234, 160, 35, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 160, 35, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header & Top Bar */
.topbar {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--accent-color);
}

.topbar-socials a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.topbar-socials a:hover {
  color: var(--accent-color);
}

/* Main Navigation */
.header-main {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-color);
}

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

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

/* Megamenu & Dropdowns */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: block; /* Override Bootstrap display:none */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--accent-color);
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dropdown-item a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
  padding-left: 25px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Hero Carousel / Banner */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 550px;
  background-image: linear-gradient(rgba(15, 30, 54, 0.7), rgba(15, 30, 54, 0.5)), url('../assets/img/urban_banner.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: left;
}

.hero-content {
  max-width: 700px;
}

.hero-content h5 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-color);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Search Form Section */
.search-bar-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.search-box-wrapper {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.search-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}

.form-group input, .form-group select {
  width: 100%;
  display: block;
  padding: 12px 15px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(234, 160, 35, 0.1);
}

/* Welcome Section */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.welcome-text h2 span {
  color: var(--accent-color);
}

.welcome-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.welcome-text strong {
  color: var(--primary-color);
}

.welcome-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent-color);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

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

.service-img {
  position: relative;
  overflow: hidden;
  height: 160px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin: -40px -30px 25px -30px;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(234, 160, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--accent-color);
  transition: var(--transition);
  margin-top: -65px;
  position: relative;
  z-index: 5;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.package-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.package-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.package-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.package-content h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 15px;
  margin-top: 15px;
}

.package-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Call to Action Section */
.cta-section {
  background-image: linear-gradient(rgba(15, 30, 54, 0.8), rgba(15, 30, 54, 0.8)), url('../assets/img/discover.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

/* Testimonials / Stats */
.stats-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
}

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

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

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-card-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  background-color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.info-card-details h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.info-card-details p, .info-card-details a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.info-card-details a:hover {
  color: var(--accent-color);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.contact-form textarea:focus {
  border-color: var(--accent-color);
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 50px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* Footer Section */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
  font-size: 0.9rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-about img {
  height: 55px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
}

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

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 4px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .topbar {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
    padding-left: 20px;
    border-top: none;
    display: none;
  }
  
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
  
  .welcome-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid, .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .services-grid, .packages-grid, .footer-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
