/* Base Styles */
:root {
  --primary-color: #34b0a3;
  --primary-dark: #278c81;
  --secondary-color: #ff6b35;
  --secondary-dark: #e55a2b;
  --accent-color: #ffd166;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-light: #e9ecef;
  --gray-medium: #adb5bd;
  --gray-dark: #495057;
  --font-main: 'Open Sans', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--primary-dark);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

section {
  padding: 5rem 0;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

/* Header & Navigation */
header {
  background-color: white;
  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: 1rem 15px;
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

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

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p.slogan {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.page-banner h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

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

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  margin-bottom: 0.5rem;
}

.destination-info p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--primary-color);
  color: white;
}

.testimonials h2 {
  color: white;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  flex: 1 1 400px;
}

.quote {
  position: relative;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.quote i.fa-quote-left {
  position: absolute;
  top: -5px;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

.quote i.fa-quote-right {
  position: absolute;
  bottom: -5px;
  right: 0;
  color: rgba(255, 255, 255, 0.3);
}

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

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.client-info h4 {
  color: white;
  margin-bottom: 0.2rem;
}

.client-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* CTA Section */
.cta {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background-color: white;
  color: var(--secondary-color);
}

.cta .btn-primary:hover {
  background-color: var(--light-color);
}

.cta .btn-secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta .btn-secondary:hover {
  background-color: white;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--gray-medium);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-details i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.footer-content h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul li, .footer-legal ul li {
  margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
  color: var(--gray-medium);
  transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog Posts */
.blog-posts {
  background-color: var(--light-color);
}

.blog-post {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blog-post {
    flex-direction: row;
  }
}

.post-image {
  flex: 1;
}

.post-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.post-content {
  flex: 2;
  padding: 2rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.post-meta i {
  margin-right: 0.3rem;
  color: var(--primary-color);
}

.blog-post h2 {
  margin-bottom: 1rem;
}

.blog-post p {
  margin-bottom: 1.5rem;
}

/* Newsletter */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.newsletter h2 {
  color: white;
}

.newsletter p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* About Us Page */
.about-story {
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-values {
  background-color: var(--light-color);
  text-align: center;
}

.achievements {
  background-color: white;
}

.achievements-grid {
  display: grid;
  grid-gap: 2rem;
}

.achievement {
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.achievement:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.achievement-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.achievement-content h3 {
  margin-bottom: 0.5rem;
}

.achievement-content p {
  margin-bottom: 0;
}

.partners {
  background-color: var(--light-color);
  text-align: center;
}

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

.partner {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Team Section */
.our-team {
  background-color: white;
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

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

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

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

.team-member h3, .team-member p {
  padding: 0 1.5rem;
}

.team-member h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p:nth-of-type(2) {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

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

.team-social a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Services Page */
.services-intro {
  background-color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.intro-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.service-categories {
  background-color: var(--light-color);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-features {
  margin: 1.5rem 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.service-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.service-card .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.popular-tours {
  background-color: white;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

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

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tour-image {
  position: relative;
}

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

.tour-duration {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.tour-content {
  padding: 1.5rem;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.tour-highlights i {
  color: var(--primary-color);
  margin-right: 0.3rem;
}

.tour-price {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.view-more {
  text-align: center;
  margin-top: 3rem;
}

.featured-service {
  padding: 5rem 0;
}

.featured-service:nth-child(odd) {
  background-color: var(--light-color);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .featured-grid.reverse {
    grid-template-areas: "content image";
  }
  
  .featured-grid.reverse .featured-image {
    grid-area: image;
  }
  
  .featured-grid.reverse .featured-content {
    grid-area: content;
  }
}

.featured-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.services-small-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.small-service {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.small-service:hover {
  transform: translateY(-3px);
}

.small-service i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.small-service h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.small-service p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.process {
  background-color: var(--light-color);
  text-align: center;
}

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

.process-step {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0;
}

/* Contact Page */
.contact-content {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0.5rem;
}

.info-item a {
  color: var(--primary-color);
}

.social-contact {
  margin-top: 2rem;
}

.contact-form-container {
  background-color: var(--light-color);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

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

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.map-section {
  background-color: var(--light-color);
  text-align: center;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-section {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  color: var(--primary-color);
}

.faq-answer {
  padding-bottom: 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .fa-plus:before {
  content: "\f068";
}

/* Thank You Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-medium);
}

.thank-you-message i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.modal-close-btn {
  margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

@media (min-width: 992px) {
  .cookie-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cookie-content p {
  margin-bottom: 1rem;
  max-width: 800px;
}

@media (min-width: 992px) {
  .cookie-content p {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-accept:hover {
  background-color: var(--primary-dark);
}

.btn-customize {
  background-color: var(--gray-medium);
  color: white;
}

.btn-customize:hover {
  background-color: var(--gray-dark);
}

.btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white !important;
}

.btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-buttons a {
  color: var(--accent-color);
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .nav-links {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .nav-links li {
    opacity: 0;
    margin: 1.5rem 0;
  }
  
  .burger {
    display: block;
  }
  
  .nav-active {
    transform: translateX(0%);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
    opacity: 0;
  }
  
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  .nav-links {
    width: 70%;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p.slogan {
    font-size: 1rem;
  }
  
  .page-banner {
    padding: 4rem 0;
  }
  
  .testimonial {
    flex: 1 1 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--radius);
    width: 100%;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .info-item i {
    margin-bottom: 1rem;
  }
}
