/*! modern-normalize | MIT License | https://github.com/sindresorhus/modern-normalize */
:root {
  --primary-color: #FFD700; /* Gold/Yellow - Brand color */
  --secondary-color: #1E3A8A; /* Dark Blue - Brand color */
  --accent-color: #E67E22; /* Orange - Accent color */
  --text-color: #333; /* Dark text */
  --light-text: #fff; /* White text */
  --dark-text: #222; /* Very dark text */
  --bg-light: #f9f9f9; /* Light background */
  --bg-dark: #1a1a1a; /* Dark background */
  --border-radius: 8px; /* Default border radius */
  --box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Default shadow */
  --transition: all 0.3s ease; /* Default transition */
}

/* Base Styles */
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

/* Header & Navigation */
.sub-header {
  position: relative;
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/tour-imgs/experttourguides.png');
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 10;
  transition: var(--transition);
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.9);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  margin: 0 10px;
  position: relative;
}

.nav-links ul li a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
  width: 100%;
}

.menu-btn,
.close-btn {
  display: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.page-header-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--light-text);
  margin: auto;
  padding: 60px 0;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.section-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.section-header .section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-map {
  grid-column: 1 / span 2;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  display: flex;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.contact-details h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--dark-text);
}

.contact-details p {
  margin: 5px 0;
  color: #666;
  font-size: 0.95rem;
}

.contact-details a {
  color: #666;
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary-color);
}

.contact-form-container {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.form-header p {
  color: #666;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  justify-content: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/tour-imgs/contactusimg.jpg');
  background-position: center;
  background-size: cover;
  color: var(--light-text);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: #ccc;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--light-text);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #ccc;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  border-radius: var(--border-radius);
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form button {
  width: 100%;
}

.footer-bottom {
  background-color: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-payments i {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #ccc;
  transition: var(--transition);
}

.footer-payments i:hover {
  color: var(--primary-color);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .page-header-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header .section-title {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    grid-column: auto;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .menu-btn,
  .close-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    padding-top: 80px;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-links ul {
    display: block;
  }
  
  .nav-links ul li {
    margin: 20px 0;
    text-align: center;
  }
  
  .nav-links ul li a {
    color: var(--light-text);
  }
  
  .page-header-content {
    padding: 80px 0 40px;
  }
  
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-payments {
    margin-top: 15px;
  }
  
  .footer-payments i {
    margin: 0 7.5px;
  }
}

@media (max-width: 576px) {
  .page-header-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header .section-title {
    font-size: 1.8rem;
  }
  
  .contact-map {
    height: 250px;
  }
  
  .contact-icon {
    font-size: 1.2rem;
    margin-right: 15px;
  }
  
  .contact-details h3 {
    font-size: 1.1rem;
  }
  
  .contact-details p {
    font-size: 0.9rem;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}