/* Google Fonts-dan şrifti daxil edirik */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

:root {
  --accent: #2e6ab4;
  --muted: #6c757d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; 
  background: #f8f9fa; /* Bədənə açıq fon rəngi veririk */
  color: #222;
}

/* --- YENİ PROFESYONAL HEADER --- */

.navbar {
  transition: all 0.3s ease;
}

/* Ana səhifədən başqa səhifələrdəki navbar üçün */
.navbar-light .nav-link {
    color: #343a40 !important; 
}

.navbar-light .navbar-brand {
    color: #222 !important;
}

/* Header-in özü */
.hero-section-pro {
  background: linear-gradient(180deg, #6DD5FA 0%, #2980B9 100%);
  color: white;
  padding-top: 5rem; 
  padding-bottom: 150px; 
  border-bottom-left-radius: 50% 12%; 
  border-bottom-right-radius: 50% 12%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 15;
}

.hero-text-area {
  text-align: left;
}
.hero-text-area .btn-light {
    font-weight: bold;
    padding: 0.8rem 2rem;
}

.hero-animation-area {
  position: relative;
  min-height: 300px;
}

.plane-character {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 100%;
  max-width: 500px;
  animation: hoverAnimation 4s ease-in-out infinite;
}
.card-tour a.btn,
.card-tour button {
  position: relative;
  z-index: 10;
}
@keyframes hoverAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
/* --- ƏLAQƏ SƏHİFƏSİNİN YENİ DİZAYNI --- */

.contact-page-main {
    background-color: #f0f2f5;
}

.contact-wrapper {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form-side {
    padding: 3rem;
}

.contact-info-side {
    background-color: #0a192f; /* Tünd göy arxa fon */
    color: #fff;
    padding: 3rem;
    height: 100%;
}

.contact-info-side .icon-wrapper {
    font-size: 1.2rem;
    color: var(--accent);
}

.contact-form-side .form-control {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.contact-form-side .form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(46, 106, 180, 0.25);
    border-color: var(--accent);
}
.clouds-pro {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.cloud-pro {
  position: absolute;
  opacity: 0.6;
  animation: moveClouds linear infinite;
}
.cloud-pro-1 { top: 10%; width: 250px; animation-duration: 80s; animation-delay: -10s; }
.cloud-pro-2 { top: 30%; width: 180px; animation-duration: 100s; animation-delay: -40s; }
.cloud-pro-3 { top: 55%; width: 300px; animation-duration: 70s; animation-delay: -5s; }
.cloud-pro-4 { top: 70%; width: 200px; animation-duration: 120s; animation-delay: -25s; }

@keyframes moveClouds {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-300px); }
}

/* Köhnə stilləri təmizləyirik */
nav.navbar.scrolled {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

/* --- QALAN CSS KODLARI --- */

main {
  position: relative;
  z-index: 5;
  margin-top: -120px; 
  padding-top: 2rem; 
}

.interactive-section {
    perspective: 1500px;
    border-radius: 16px;
    padding: 3rem;
    background-color: #ffffff; 
    box-shadow: 0 20px 50px rgba(46, 106, 180, 0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem; 
}

.interactive-content {
    transition: transform 0.1s linear;
    will-change: transform;
    transform-style: preserve-3d;
}

main .section-padding:not(.interactive-section) {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.card-tour {
  border: none;
  transition: transform .28s, box-shadow .28s;
  background-color: #fff;
}

.card-tour:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,110,253,0.12);
}

.card-tour img {
  height: 220px;
  object-fit: cover;
  border-radius: .5rem;
}

.badge-price {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(46, 106, 180, 0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.shadow-soft {
  box-shadow: 0 8px 30px rgba(10,10,30,0.06);
}

.image-collage {
  position: relative;
  height: 350px;
}
.collage-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: auto;
}
.collage-fg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  border: 5px solid white;
}

#about-section-content {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out;
}

#about-section-content.expanded {
  max-height: 1000px;
}

.stats-section {
    background-color: #fff !important;
    border-radius: 16px;
    padding: 3rem;
    margin: 0 1rem;
}

.features-section {
  background-color: #ffffff;
  padding: 2.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(46, 106, 180, 0.1);
  border: 1px solid #e9ecef;
}

.feature-item {
  text-align: center;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: #e9ecef;
}

.feature-item i {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.feature-item h5 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #343a40;
}

.page-header {
  height: 45vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-content-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: -100px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(46, 106, 180, 0.15);
  border: 1px solid #e9ecef;
}

.swoosh-separator {
  position: relative;
  background: #fff;
  height: 120px;
  overflow: hidden;
}
.swoosh-separator::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -119px;
  width: 120%;
  height: 120px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='img/vip' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' class='shape-fill' fill='%23FFFFFF' fill-opacity='1'%3E%3C/path%3E%3C/svg%3E");
}

.about-content .sub-heading, .sub-heading {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

.mission-box {
  padding: 2rem;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.mission-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 106, 180, 0.15);
}

.mission-box.dark {
  background-color: var(--accent);
  color: #ffffff;
}

.mission-box.dark h5, .mission-box.dark p {
  color: #ffffff;
}

.mission-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.mission-box.dark i {
    color: #ffffff;
}

.cta-mountain-section {
    position: relative;
    padding: 10rem 0;
    background-image: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)), url('https://images.unsplash.com/photo-1549880338-65ddcdfd017b?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 5rem;
}

.cta-mountain-section .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    margin-top: 0.75rem !important;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--accent);
}

.dropdown-item.special {
    background-color: var(--accent);
    color: white;
    margin: 0.5rem;
    width: auto;
    border-radius: 8px;
    text-align: center;
}

.dropdown-item.special:hover {
    background-color: #26599c;
    color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Avtomobil Kirayəsi Səhifəsi Stilləri --- */
.multi-wave-separator, .wave-separator { display: none; }

#animated-car {
    transform: translateX(110%);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#animated-car.in-view {
    transform: translateX(0);
}

.features-grid-section {
    background-color: #f8f9fa;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-carbon.png');
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.features-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 1.5rem;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}
.central-car {
    grid-column: 3 / 4;
    grid-row: 2 / 5;
    max-width: 100%;
    z-index: 1;
}
.feature-blob {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-blob.align-right {
    flex-direction: row-reverse;
}
.feature-blob.align-right div {
    text-align: right;
}
.feature-blob.align-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.feature-blob.align-center i {
    margin: 0 0 0.5rem 0;
}
.feature-blob i {
    font-size: 1.75rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.feature-blob h6 {
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}
.feature-blob p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}
.features-grid-container .feature-blob:nth-of-type(1) { grid-column: 1 / 3; grid-row: 1; justify-content: flex-end; }
.features-grid-container .feature-blob:nth-of-type(2) { grid-column: 1 / 2; grid-row: 2; justify-content: flex-end; }
.features-grid-container .feature-blob:nth-of-type(3) { grid-column: 1 / 2; grid-row: 3; justify-content: flex-end; }
.features-grid-container .feature-blob:nth-of-type(4) { grid-column: 1 / 2; grid-row: 4; justify-content: flex-end; }
.features-grid-container .feature-blob:nth-of-type(5) { grid-column: 1 / 3; grid-row: 5; justify-content: flex-end; }
.features-grid-container .feature-blob:nth-of-type(6) { grid-column: 4 / 6; grid-row: 1; }
.features-grid-container .feature-blob:nth-of-type(7) { grid-column: 5 / 6; grid-row: 2; }
.features-grid-container .feature-blob:nth-of-type(8) { grid-column: 5 / 6; grid-row: 3; }
.features-grid-container .feature-blob:nth-of-type(9) { grid-column: 5 / 6; grid-row: 4; }
.features-grid-container .feature-blob:nth-of-type(10) { grid-column: 4 / 6; grid-row: 5; }
.features-grid-container .feature-blob:nth-of-type(11) { grid-column: 3 / 4; grid-row: 5; justify-content: center; }

.car-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 106, 180, 0.1);
}
.car-card-img {
    height: 250px;
    object-fit: cover;
}

.destinations-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #333;
}
.destinations-title span { color: #e63946; }

.destinations-slider {
    padding: 1rem 0;
}
.destination-slide {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.destination-slide:hover {
    transform: scale(1.03);
}
.destination-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.destination-slide:hover .destination-bg {
    transform: scale(1.1);
}
.destination-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}
.destination-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 129, 201, 0.9);
    color: white;
    padding: 25px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}
.destination-slide:hover .destination-overlay {
    opacity: 1;
    transform: translateY(0);
}
.destination-slide:hover .destination-name {
    opacity: 0;
    transform: translateY(20px);
}
.overlay-content {
    position: relative;
    height: 100%;
}
.overlay-content .fa-heart {
    position: absolute;
    top: 0; right: 0;
    font-size: 1.5rem;
}
.overlay-content p {
    font-size: 0.9rem;
    margin-top: 10px;
}
.overlay-content .map-image {
    position: absolute;
    bottom: 40px;
    left: 0;
    max-width: 100px;
}
.overlay-content .line {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255,255,255,0.5);
}
.destinations-slider .swiper-button-next, .destinations-slider .swiper-button-prev {
    color: var(--accent);
}

/* --- TURLAR SƏHİFƏSİ ÜÇÜN YENİ DİZAYN --- */

.tours-page-body {
    background-color: #f0f2f5;
}

.tours-header-redesigned {
    height: 45vh;
    background-image: linear-gradient(rgba(20, 20, 40, 0.5), rgba(20, 20, 40, 0.5)), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Turlar səhifəsindəki navbarın şəffaf olması üçün */
.tours-page-body .navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}
.tours-page-body .navbar .nav-link, .tours-page-body .navbar .navbar-brand {
    color: #fff !important;
}

/* Find this existing rule in your style.css */
.tours-content-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 4rem 2.5rem; /* Changed from padding: 2.5rem; */
    margin-top: -120px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}
.tours-content-wrapper .card-tour {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}
.tours-content-wrapper .card-tour:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.tours-content-wrapper .badge-price {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    font-size: 1rem;
}
.tours-content-wrapper .btn-outline-primary {
    border-radius: 8px;
    font-weight: 600;
}

/* --- MARAQLI SƏYAHƏT İDEYALARI BÖLMƏSİ --- */

.ideas-title {
    font-weight: 300;
    font-size: 2.5rem;
    color: #333;
    text-transform: lowercase;
}
.ideas-title span {
    font-weight: 700;
    color: #e63946;
}
.idea-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}
.idea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.idea-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.idea-card:hover .idea-card-img {
    transform: scale(1.1);
}
.idea-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.idea-card-title {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.3;
}
.ideas-slider .swiper-button-next,
.ideas-slider .swiper-button-prev {
    color: var(--accent);
}

/* --- HAQQIMIZDA SƏHİFƏSİ ÜÇÜN YENİ DİZAYN --- */

.about-section-redesigned {
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 16px;
}
.about-image-stack {
    position: relative;
    padding: 1rem;
    min-height: 400px;
}
.about-image-stack__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: #eef5ff;
    border-radius: 16px;
    z-index: 1;
}
.about-image-stack__foreground {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    top: 10%;
    left: 10%;
    width: 90%;
    height: auto;
    object-fit: cover;
}
.stats-redesigned {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}
.stat-item-redesigned h3 {
    line-height: 1;
    margin-bottom: 0.5rem;
}
.vision-section-redesigned {
    position: relative;
    background-color: var(--accent);
    color: white;
    border-radius: 20px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.vision-section-redesigned .sub-heading {
    color: rgba(255, 255, 255, 0.8);
}
.vision-section-redesigned h2 {
    color: white;
}
.about-content, .vision-section {
    display: none;
}

/* --- AVTOMOBİL KİRAYƏSİ SƏHİFƏSİ ÜÇÜN ESTETİK DİZAYN --- */

#car-animation-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 60px rgba(46, 106, 180, 0.12);
  overflow: visible;
}
.car-intro-text-box .sub-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.car-intro-text-box h2 {
  line-height: 1.2;
  color: #212529;
}
.car-intro-text-box .lead {
  font-size: 1.1rem;
  color: #6c757d;
}
.car-intro-text-box .btn {
  padding: 0.8rem 2.5rem;
  font-weight: bold;
}

/* --- NƏQLİYYAT XİDMƏTLƏRİ SƏHİFƏSİ ÜÇÜN YENİ DİZAYN --- */
.transport-page-body {
    background-color: #f8f9fa;
}

.transport-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    color: white;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.transport-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.transport-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.transport-card:hover::before {
    filter: grayscale(0%);
}

.transport-card.colored-hover::before {
    filter: grayscale(0%);
}
.transport-card.colored-hover:hover::before {
     filter: grayscale(20%);
}

.transport-card-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
}

.transport-card:hover .transport-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.transport-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.transport-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.transport-card .btn {
    align-self: flex-start;
    font-weight: 600;
    border-width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.transport-card .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.transport-modal-content {
    border-radius: 12px;
    border: none;
}
.transport-modal-content .form-control,
.transport-modal-content .form-select {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
}
.transport-modal-content .form-control:focus,
.transport-modal-content .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 106, 180, 0.25);
    border-color: var(--accent);
}


/* --- SƏYAHƏT XİDMƏTLƏRİ SƏHİFƏSİ ÜÇÜN DÜZƏLİŞ EDİLMİŞ DİZAYN --- */
.sv-body {
    background-color: #fff;
}
.sv-header {
    height: 60vh;
    min-height: 400px;
    background-image: url('img/travell.jpg');
    background-size: cover;
    background-position: center 70%;
    position: relative;
    color: rgb(18, 47, 175);
}
.sv-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(10, 25, 47, 0.4);
}
.sv-header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sv-wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='img/travell.jpg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,154.7C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.sv-explore {
    padding: 5rem 0;
    background-color: #fff;
}
.sv-services-grid {
    background-color: #f8f9fa;
    padding: 5rem 0;
}
.service-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent);
}
.service-item .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eef5ff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.service-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-item p {
    color: #6c757d;
    font-size: 0.9rem;
}
.sv-plane-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('https://i.ibb.co/k5Fz2k0/clouds-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #0a192f;
}
.plane-animated {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 60%;
    max-width: 600px;
    opacity: 0.9;
    transform: rotate(-10deg);
}
.sv-plane-cta .content-overlay {
    position: relative;
    z-index: 10;
}
.sv-footer-cta {
    position: relative;
    padding: 8rem 0;
    background-image: url('https://i.ibb.co/tZ5S4Qz/cappadocia-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.sv-footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7));
}
.sv-footer-cta .container {
    position: relative;
    z-index: 5;
}
.hot-air-balloon {
    position: absolute;
    width: 150px;
    bottom: 50%;
    right: 15%;
    transform: translateY(50%);
    animation: hoverAnimation 5s ease-in-out infinite;
}

@media (max-width: 991px) {
    .hero-text-area { text-align: center; }
    .hero-animation-area { display: none; }
    .features-grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 2rem;
    }
    .central-car,
    .features-grid-container .feature-blob:nth-of-type(1),
    .features-grid-container .feature-blob:nth-of-type(6),
    .features-grid-container .feature-blob:nth-of-type(11) {
        grid-column: 1 / 3;
    }
    .feature-blob {
        justify-content: flex-start !important;
        text-align: left;
    }
    .feature-blob.align-right {
        flex-direction: row;
    }
    .feature-blob.align-right div {
        text-align: left;
    }
    .about-image-stack {
        margin-bottom: 2rem;
    }
    .vision-image-wrapper {
        margin-top: 2rem;
    }
    .vision-section-redesigned, .about-section-redesigned {
        text-align: center;
    }
    .stats-redesigned {
        justify-content: center;
    }
}
@media (max-width: 767px) {
  .overlay, .page-header .container {
    padding: 1.25rem;
  }
  .image-collage {
    margin-top: 2rem;
    height: 280px;
  }
  .feature-item:nth-child(2n)::after,
  .feature-item:nth-child(3)::after,
  .feature-item:last-child::after {
    display: none;
  }
  .features-section {
    padding: 2rem 0.5rem;
  }
  .interactive-section {
    padding: 1.5rem;
  }
  .page-content-wrapper {
    padding: 1.5rem;
    margin-top: -80px;
  }
  .cta-mountain-section {
      padding: 6rem 0;
  }
  .hot-air-balloon { display: none; }
}
@media (max-width: 576px) {
    .features-grid-container {
        display: none;
    }
    .features-grid-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
/* Naviqasiya panelindən sonra gələn məzmuna avtomatik boşluq ver (ana səhifə istisna olmaqla) */
nav.navbar.sticky-top + *:not(.hero-section-pro) {
  margin-top: 0.5rem; /* Təxminən 88px, istəyə görə dəyişə bilərsiniz */
}