/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e67e22;
  --background-color: #f8f9fa;
  --text-color: #333;
  --light-text: #fff;
  --dark-text: #222;
  --border-color: #ddd;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --section-padding: 80px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

ul {
  list-style: none;
}

section {
  padding: var(--section-padding);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Button Styles */
.btn, .btn-small, .btn-outline {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

/* Header Styles */
header {
  background-color: var(--light-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--secondary-color);
}

nav ul li a.active::after, nav ul li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
  padding: 150px 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--light-text);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Summary Section */
.summary {
  background-color: var(--light-text);
  padding: 60px 0;
}

.summary h2 {
  text-align: center;
  margin-bottom: 40px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.summary-item {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
}

.summary-item:hover {
  transform: translateY(-10px);
}

.summary-item .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--secondary-color);
}

/* Featured Destinations */
.featured-destinations {
  background-color: var(--background-color);
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 40px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.destination {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
  background-color: var(--light-text);
}

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

.destination img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-info {
  padding: 20px;
}

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

.destination-info p {
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  background-color: var(--light-text);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-content {
  position: relative;
  padding-top: 30px;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: -15px;
  left: -10px;
}

.testimonial h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial-location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--light-text);
  padding: 100px 0;
}

.cta h2 {
  color: var(--light-text);
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info .footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-links h3, .footer-contact h3 {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links ul li a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--light-text);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.social-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  transition: var(--transition);
}

.social-media a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.social-media svg {
  color: var(--light-text);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 15px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-content a {
  color: var(--light-text);
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--light-text);
  padding: 100px 0;
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* Blog Styles */
.blog-highlights {
  background-color: var(--light-text);
}

.blog-summary {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.blog-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.blog-content {
  padding: 20px;
}

.post-date {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.blog-categories {
  background-color: var(--background-color);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category {
  text-align: center;
  padding: 30px;
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.category .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--secondary-color);
}

/* Blog Post Styles */
.blog-header {
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
  padding: 80px 0;
}

.blog-header h1 {
  color: var(--light-text);
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
}

.blog-post-summary {
  background-color: var(--light-text);
  padding: 30px 0;
}

.summary-box {
  background-color: var(--background-color);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.summary-box h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.summary-box ul {
  list-style: disc;
  padding-left: 20px;
}

.summary-box ul li {
  margin-bottom: 10px;
}

.blog-content {
  padding: 60px 0;
  background-color: var(--light-text);
}

.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.main-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.featured-image {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.main-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.main-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.main-content ul, .main-content ol {
  margin-bottom: 30px;
  padding-left: 30px;
}

.main-content ul li, .main-content ol li {
  margin-bottom: 10px;
}

.author-bio {
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.author-info h3 {
  margin-top: 0;
}

.author-info p {
  margin-bottom: 0;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-block {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-block h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.related-posts li, .travel-tips li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.related-posts li:last-child, .travel-tips li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-block {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.cta-block h3 {
  color: var(--light-text);
}

/* About Page Styles */
.about-intro {
  background-color: var(--light-text);
}

.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background-color: var(--background-color);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

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

.value-item .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--secondary-color);
}

.team {
  background-color: var(--background-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

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

.team-member h3, .team-member p {
  padding: 0 20px;
}

.team-member h3 {
  margin-top: 20px;
}

.team-member p:last-child {
  padding-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
}

.social-links svg {
  color: var(--primary-color);
}

.social-links a:hover svg {
  color: var(--light-text);
}

.credentials {
  background-color: var(--light-text);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.credential {
  padding: 25px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

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

.credential .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--secondary-color);
}

/* Services Page Styles */
.services-intro {
  background-color: var(--light-text);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-categories {
  background-color: var(--background-color);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.service-content {
  padding: 30px;
}

.service-features {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 10px;
}

.specialties {
  background-color: var(--light-text);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.specialty {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.specialty img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialty h3, .specialty p {
  padding: 0 20px;
}

.specialty h3 {
  margin-top: 20px;
}

.specialty p {
  padding-bottom: 20px;
}

.process {
  background-color: var(--background-color);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 25px;
  height: calc(100% + 30px);
  width: 2px;
  background-color: var(--secondary-color);
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 50%;
  font-weight: bold;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.faq {
  background-color: var(--light-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.faq-item {
  background-color: var(--background-color);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.faq-item p {
  margin-bottom: 0;
}

/* Contact Page Styles */
.contact-content {
  padding: 60px 0;
  background-color: var(--light-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.contact-form-container h2 {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group .required {
  color: var(--error-color);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
}

.checkbox-label input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.contact-info {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-block p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.info-block .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--secondary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

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

.team-preview {
  background-color: var(--background-color);
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-preview-card {
  background-color: var(--light-text);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.team-preview-card h3, .team-preview-card p {
  padding: 0 15px;
}

.team-preview-card h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-preview-card p:last-child {
  padding-bottom: 20px;
}

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: var(--light-text);
  margin: 15% auto;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal h2 {
  margin-top: 0;
}

.close-btn {
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .about-content, .content-wrapper, .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 300px;
  }

  .blog-post {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 300px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
