/* ASYMMETRIC BALANCE DESIGN - Travel/Excursions */

/* === ROOT VARIABLES === */
:root {
  --primary-color: #2c3e50;
  --accent-color: #8e44ad;
  --dark-color: #1b1d23;
  --light-bg: #f0f0f0;
  --white: #ffffff;
  --text-color: #333333;
  --sand: #e9d8a6;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1600px;
  --margin-left: 8%;
  --margin-right: 4%;

  --section-spacing: 180px;
  --element-spacing: 45px;
  --gap-left: 63px;
  --gap-right: 27px;

  --border-radius: 0 22px 0 22px;
  --shadow: -23px 21px 0 #e0e0e0;

  --transition: all 0.3s ease;
}

/* === RESET & TYPOGRAPHY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }

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

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

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

/* === CONTAINER SYSTEM === */
.container-custom {
  max-width: var(--container-max);
  margin-left: var(--margin-left);
  margin-right: var(--margin-right);
  padding-left: 18px;
  padding-right: 14px;
}

.section-spacing {
  padding: var(--section-spacing) 0;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 19px 36px;
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  margin-left: 5%;
}

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

.btn-accent:hover {
  background-color: #d66d00;
  color: var(--white);
  transform: translateX(8px);
}

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

.btn-primary:hover {
  background-color: #005f8c;
  color: var(--white);
}

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

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

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

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

.btn-lg {
  padding: 17px 44px;
  font-size: 1.1rem;
}

/* === NAVBAR === */
.navbar {
  padding: 21px 0;
  background-color: var(--white);
  z-index: 1000;
}

.navbar-brand {
  margin-left: var(--margin-left);
}

.logo-img {
  max-height: 44px;
  width: auto;
}

.site-name {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.nav-link {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-color);
  padding: 8px 20px;
  margin-left: 8px;
}

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

/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  color: var(--white);
  margin-top: 20%;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-lead {
  color: var(--white);
  font-size: 1.3rem;
  max-width: 60%;
  margin-left: 10%;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,119,182,0.9) 0%, rgba(0,119,182,0.3) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* === SEARCH SECTION === */
.search-section {
  margin-top: -83px;
  position: relative;
  z-index: 100;
  padding-bottom: 58px;
}

.search-card {
  background: var(--white);
  padding: 39px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-left: 5%;
}

.search-form .form-label {
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-color);
  text-align: right;
  margin-right: 10%;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  z-index: 10;
  pointer-events: none;
}

.input-group .form-control,
.input-group .form-select {
  padding-left: 42px;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  height: 53px;
}

.input-group .form-control:focus,
.input-group .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* === PAGE HERO === */
.page-hero {
  padding: 120px 0 83px;
  background-color: var(--light-bg);
  position: relative;
}

.page-title {
  color: var(--dark-color);
  margin-bottom: 21px;
}

.page-lead {
  font-size: 1.3rem;
  color: var(--text-color);
  max-width: 60%;
  margin-left: 10%;
}

.page-meta {
  color: #777;
  font-size: 1rem;
  text-align: right;
  margin-right: 15%;
}

.page-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

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

/* === SECTIONS === */
.section-title {
  color: var(--dark-color);
  margin-bottom: 30px;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

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

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

.bg-accent {
  background-color: var(--accent-color);
}

.bg-dark {
  background-color: var(--dark-color);
}

/* === DESTINATION CARDS === */
.destination-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 42px;
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: -23px 22px 0 #d0d0d0;
}

.destination-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,119,182,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
  pointer-events: auto;
}

.destination-content {
  padding: 30px;
  text-align: right;
}

.destination-title {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 18px;
}

.destination-description {
  color: #666;
  margin-bottom: 23px;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #e0e0e0;
}

.destination-tours {
  color: var(--primary-color);
  font-weight: 500;
}

.destination-from {
  color: var(--accent-color);
  font-weight: 600;
}

/* === TOUR CARDS === */
.tour-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 38px;
}

.tour-card:hover {
  transform: translateY(-13px);
  box-shadow: -28px 26px 0 #d0d0d0;
}

.tour-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.tour-badge {
  position: absolute;
  top: 18px;
  left: 19px;
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 17px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
  pointer-events: none;
}

.tour-content {
  padding: 33px;
}

.tour-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 15px;
  justify-content: flex-end;
}

.tour-meta span {
  color: #777;
  font-size: 0.95rem;
}

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

.tour-title {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 13px;
}

.tour-description {
  color: #666;
  margin-bottom: 23px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.tour-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.tour-highlights li {
  padding: 8px 0;
  color: #555;
  text-align: right;
  margin-right: 5%;
}

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

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
  border-top: 1px solid #e0e0e0;
}

.tour-price {
  display: flex;
  flex-direction: column;
  margin-left: 5%;
}

.price-from {
  font-size: 0.9rem;
  color: #777;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* === FEATURE CARDS === */
.feature-card {
  padding: 38px 30px;
  text-align: right;
  margin-right: 5%;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateX(-12px);
}

.feature-icon {
  width: 78px;
  height: 82px;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: auto;
  margin-bottom: 26px;
  border-radius: 50% 0 50% 0;
  pointer-events: none;
}

.feature-title {
  font-size: 1.6rem;
  color: var(--dark-color);
  margin-bottom: 13px;
}

.feature-description {
  color: #666;
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: var(--white);
  padding: 41px;
  border-radius: var(--border-radius);
  box-shadow: -17px 16px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: -22px 17px 0 rgba(255,255,255,0.15);
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 22px;
  text-align: right;
  margin-right: 10%;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 24px;
  line-height: 1.8;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-right: 10%;
}

.testimonial-avatar {
  width: 63px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.testimonial-location {
  color: #999;
  font-size: 0.95rem;
}

/* === TEAM CARDS === */
.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 41px;
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: -25px 23px 0 #d0d0d0;
}

.team-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

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

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,119,182,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
  pointer-events: auto;
}

.team-social {
  display: flex;
  gap: 16px;
}

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

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

.team-content {
  padding: 22px;
  text-align: right;
}

.team-name {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.team-role {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: #666;
  font-size: 0.95rem;
}

/* === STATS === */
.stat-card {
  text-align: right;
  padding: 32px;
  margin-right: 10%;
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 23px;
  margin-left: auto;
  width: fit-content;
  pointer-events: none;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

/* === CTA SECTION === */
.cta-section {
  padding: 103px 0;
}

.cta-title {
  color: var(--white);
  margin-bottom: 22px;
}

.cta-description {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 60%;
  margin-left: 10%;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-left: var(--margin-left);
  margin-right: var(--margin-right);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247,127,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 3rem;
  z-index: 2;
}

.gallery-item-1 {
  grid-column: 1 / 8;
  height: 400px;
}

.gallery-item-2 {
  grid-column: 9 / 13;
  height: 400px;
}

.gallery-item-3 {
  grid-column: 2 / 6;
  height: 350px;
}

.gallery-item-4 {
  grid-column: 7 / 11;
  height: 350px;
}

.gallery-item-5 {
  grid-column: 1 / 5;
  height: 350px;
}

.gallery-item-6 {
  grid-column: 6 / 12;
  height: 350px;
}

/* === FAQ === */
.faq-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 17px;
}

.faq-accordion .accordion-button {
  background: var(--white);
  color: var(--dark-color);
  font-family: 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 22px 27px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: left;
  margin-left: 5%;
}

.faq-accordion .accordion-button::after {
  margin-left: auto;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
}

.faq-accordion .accordion-button:focus {
  box-shadow: var(--shadow);
  border: none;
}

.faq-accordion .accordion-body {
  padding: 24px 32px;
  background: var(--white);
  border-radius: 0 0 27px 0;
  margin-left: 5%;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

/* === CONTACT === */
.contact-info-card,
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 43px;
}

.contact-info-title,
.contact-form-title {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 23px;
}

.contact-info-description {
  color: #666;
  margin-bottom: 31px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.contact-info-list {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 18px;
  margin-bottom: 24px;
  justify-content: flex-end;
  margin-right: 5%;
}

.contact-info-icon {
  width: 52px;
  height: 49px;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  pointer-events: none;
}

.contact-info-content {
  text-align: right;
}

.contact-info-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.contact-info-value {
  color: #666;
}

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

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  text-align: right;
  margin-right: 5%;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  border: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 13px 14px;
}

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

/* === BOOKING === */
.booking-form-card {
  background: var(--white);
  padding: 41px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.booking-form-title {
  font-size: 2.2rem;
  color: var(--dark-color);
  margin-bottom: 29px;
}

.booking-summary-card,
.booking-help-card {
  background: var(--light-bg);
  padding: 31px;
  border-radius: var(--border-radius);
  box-shadow: -13px 18px 0 #e0e0e0;
  position: sticky;
  top: 100px;
}

.booking-summary-title,
.booking-help-title {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 22px;
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.booking-summary-label {
  font-weight: 600;
  color: var(--dark-color);
}

.booking-summary-value {
  color: #666;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 19px 0;
  font-size: 1.3rem;
}

.booking-summary-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.8rem;
}

.booking-note {
  background: #fff3cd;
  padding: 15px;
  border-radius: 8px;
  margin-top: 22px;
  color: #856404;
  font-size: 0.95rem;
}

.booking-help-text {
  color: #666;
  margin-bottom: 20px;
}

/* === BLOG === */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 41px;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: -22px 22px 0 #d0d0d0;
}

.blog-card-featured {
  box-shadow: -29px 32px 0 #d0d0d0;
}

.blog-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 23px;
  left: 22px;
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
  pointer-events: none;
}

.blog-content {
  padding: 32px;
}

.blog-meta {
  display: flex;
  gap: 17px;
  margin-bottom: 13px;
  justify-content: flex-end;
  margin-right: 5%;
}

.blog-meta span {
  color: #777;
  font-size: 0.95rem;
}

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

.blog-title {
  font-size: 1.8rem;
  margin-bottom: 13px;
}

.blog-title a {
  color: var(--dark-color);
}

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

.blog-excerpt {
  color: #666;
  margin-bottom: 17px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

/* === ARTICLE PAGE === */
.article-page {
  background: var(--white);
}

.article-header {
  padding: 120px 0 63px;
  background: var(--light-bg);
}

.article-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 18px;
  font-weight: 600;
  margin-bottom: 19px;
  margin-left: 5%;
}

.article-title {
  color: var(--dark-color);
  margin-bottom: 27px;
}

.article-meta {
  display: flex;
  gap: 28px;
  color: #777;
  justify-content: flex-end;
  margin-right: 10%;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta i {
  color: var(--accent-color);
}

.article-featured-image {
  height: 500px;
  overflow: hidden;
  margin-bottom: 79px;
}

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

.article-content {
  padding-bottom: 81px;
}

.article-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
}

.article-body h2 {
  margin-top: 52px;
  margin-bottom: 22px;
  color: var(--dark-color);
}

.article-body h3 {
  margin-top: 37px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.article-body p {
  margin-bottom: 22px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.article-body .lead {
  font-size: 1.35rem;
  color: #555;
  margin-bottom: 38px;
}

.article-list {
  margin: 28px 0;
  padding-left: 0;
  list-style-position: inside;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.article-list li {
  margin-bottom: 18px;
  color: #666;
  line-height: 1.6;
}

.article-quote {
  background: var(--light-bg);
  padding: 39px;
  border-left: 5px solid var(--accent-color);
  margin: 43px 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark-color);
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.article-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 52px;
  border-radius: var(--border-radius);
  text-align: right;
  margin: 61px 0;
  margin-right: 5%;
}

.article-cta h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.article-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.article-footer {
  padding-top: 38px;
  border-top: 2px solid #e0e0e0;
  margin-top: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-tags {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.tag {
  background: var(--light-bg);
  color: var(--dark-color);
  padding: 8px 19px;
  border-radius: 22px;
  font-size: 0.9rem;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 14px;
}

.share-label {
  font-weight: 600;
  color: var(--dark-color);
}

.share-link {
  width: 43px;
  height: 39px;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.share-link:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* === NEWSLETTER === */
.newsletter-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.newsletter-title {
  color: var(--dark-color);
  margin-bottom: 13px;
}

.newsletter-description {
  color: #666;
  font-size: 1.1rem;
  max-width: 60%;
  margin-left: 10%;
}

.newsletter-form .input-group {
  border: 2px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 15px 20px;
}

.newsletter-form .btn {
  margin: 0;
  padding: 12px 32px;
  border-radius: 0;
}

/* === VALUE CARDS === */
.value-card {
  padding: 40px;
  text-align: right;
  margin-right: 10%;
}

.value-icon {
  width: 77px;
  height: 78px;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-left: auto;
  margin-bottom: 25px;
  border-radius: 0 50% 0 50%;
  pointer-events: none;
}

.value-title {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 18px;
}

.value-description {
  color: #666;
  font-size: 1.1rem;
}

/* === TRAVEL TYPE CARDS === */
.travel-type-card {
  background: var(--white);
  padding: 41px 31px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: right;
  margin-bottom: 38px;
}

.travel-type-card:hover {
  transform: translateY(-7px);
  box-shadow: -28px 28px 0 #d0d0d0;
}

.travel-type-icon {
  width: 69px;
  height: 73px;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: auto;
  margin-bottom: 22px;
  border-radius: 50%;
  pointer-events: none;
}

.travel-type-title {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.travel-type-description {
  color: #666;
}

/* === LEGAL CONTENT === */
.legal-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.legal-content h2 {
  margin-top: 53px;
  margin-bottom: 25px;
  color: var(--dark-color);
  text-align: left;
  margin-left: 5%;
}

.legal-content p {
  margin-bottom: 18px;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.legal-content ul {
  margin: 17px 0;
  padding-left: 0;
  list-style-position: inside;
  text-align: right;
  max-width: 60%;
  margin-left: 40%;
}

.legal-content li {
  margin-bottom: 13px;
  color: #666;
}

/* === FOOTER === */
.footer {
  padding: 80px 0 29px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}

.footer-brand .logo-img {
  max-height: 40px;
}

.footer-brand .site-name {
  color: var(--white);
}

.footer-description {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 60%;
  margin-left: 10%;
}

.social-links {
  display: flex;
  gap: 17px;
  margin-left: 5%;
}

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

.social-link:hover {
  background: var(--accent-color);
  color: var(--white);
}

.footer-heading {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 13px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

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

.footer-contact li {
  color: rgba(255,255,255,0.8);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 42px 0;
}

.footer-copyright {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 21px;
  margin: 0;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

/* === UTILITIES === */
.rounded-asymmetric {
  border-radius: var(--border-radius);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  :root {
    --margin-left: 5%;
    --margin-right: 5%;
  }

  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }
  h3 { font-size: 2rem; }
}

@media (max-width: 992px) {
  .container-custom {
    margin-left: 14px;
    margin-right: 12px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero-section {
    height: 60vh;
  }

  .hero-image {
    width: 100%;
    opacity: 0.3;
  }

  .hero-lead,
  .section-description,
  .text-content,
  .tour-description,
  .testimonial-quote,
  .blog-excerpt,
  .article-body p,
  .article-list,
  .article-quote,
  .legal-content p,
  .legal-content ul,
  .footer-description {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .btn,
  .search-card,
  .feature-card,
  .testimonial-card,
  .value-card,
  .travel-type-card {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
  }

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6 {
    grid-column: 1 / -1;
    height: 300px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }

  .section-spacing {
    padding: 81px 0;
  }

  .hero-title {
    margin-top: 30%;
  }

  .navbar-brand {
    margin-left: 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 13px;
  }
}