@charset "UTF-8";
/* Base Styles */
:root 
{
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --secondary: #3f37c9;
  --accent: #4895ef;
  --danger: #f72585;
  --warning: #f77f00;
  --success: #4cc9f0;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html 
{
  scroll-behavior: smooth;
  font-size: 16px;
}

body 
{
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

section 
{
  padding: 60px 0;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 
{
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 
{
  font-size: 2.5rem;
}

h2 
{
  font-size: 2rem;
}

h3 
{
  font-size: 1.5rem;
}

h4 
{
  font-size: 1rem;
}

p 
{
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

ul 
{
  list-style: none;
}

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

/* Helper Classes */
.text-center 
{
  text-align: center;
}

.text-primary 
{
  color: var(--primary);
}

.text-white 
{
  color: var(--white);
}

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

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

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

.highlight 
{
  color: var(--accent);
  font-weight: 700;
}

/* Profil şəkli ilə bağlı tənzimləmələr */
.profile-icon-with-image 
{
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-icon-with-image:hover 
{
    transform: translateY(-2px);
}

.profile-icon-with-image .profile-image-small 
{
    transition: transform 0.3s ease;
}

.profile-icon-with-image:hover .profile-image-small 
{
    transform: scale(1.1);
}

.profile-icon 
{
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-icon:hover 
{
    transform: translateY(-2px);
}

.profile-icon .profile-placeholder 
{
    transition: transform 0.3s ease;
}

.profile-icon:hover .profile-placeholder 
{
    transform: scale(1.1);
}

.btn-logout 
{
    margin-left: 15px;
}

/* Mobil üçün tənzimləmələr */
@media (max-width: 768px) 
{
    .profile-icon-with-image span,
    .profile-icon span 
    {
        display: none;
    }
    
    .profile-icon-with-image,
    .profile-icon 
    {
        gap: 0;
    }
    
    .btn-logout 
    {
        margin-left: 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

/*Haqqımızda*/
.info-item:hover 
{
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover 
        {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 768px) 
        {
            .info-item 
            {
                max-width: 100% !important;
                padding: 12px 20px !important;
            }
            
            .social-links a 
            {
                width: 45px !important;
                height: 45px !important;
                line-height: 45px !important;
                font-size: 18px !important;
                margin: 0 8px !important;
            }
        }
        
        @media (max-width: 480px) 
        {
            .info-item 
            {
                flex-direction: column;
                text-align: center !important;
                gap: 10px !important;
            }
            
            .social-links a 
            {
                width: 40px !important;
                height: 40px !important;
                line-height: 40px !important;
                font-size: 16px !important;
                margin: 0 6px !important;
            }
        }

/* Buttons */
.btn 
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  gap: 8px;
}

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

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

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

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

.btn-login 
{
  padding: 8px 14px;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
}

.btn-login:hover 
{
  color: var(--primary);
}


.btn-search 
{
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

/* Çıxış düyməsi */
.btn-logout 
{
  background-color: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}

.btn-logout:hover 
{
  background-color: var(--primary); /* Hover zamanı göy */
  color: #fff; /* Yazı oxunsun */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Profil ikonu */
.profile-icon 
{
  font-size: 2.5rem; /* Böyüdülmüş ölçü */
  color: var(--primary);
  transition: 0.3s;
}

.profile-icon:hover 
{
  color: #1a3bb8; /* Hover zamanı daha tünd mavi */
}

/* Loader */
.loader 
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-content 
{
  text-align: center;
}

.loader-icon 
{
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin 
{
  0% 
  {
    transform: rotate(0deg);
  }
  100% 
  {
    transform: rotate(360deg);
  }
}

/* Particles Background */
.particles-background 
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Navbar ümumi stil */
.header {
    background-color: #3B3F8C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: -35px;
}

/* Logo və sol nav linkləri */
.logo-nav-left 
{
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.logo span {
  display: inline-block;
}

.logo span img {
  font-size: 1.2rem; /* Base font size */
  width: 5em; /* 5 x 16px = 80px */
  height: 5em; /* 5 x 16px = 80px */
  object-fit: contain;
}

/* Sol nav links */
.nav-left-links 
{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    
}

.nav-left-links li 
{
    display: inline-block;
}

.nav-left-links li a 
{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-left-links li a.active 
{
    color: var(--primary);
}

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

.nav-left-links li a:hover 
{
    color: var(--primary);
}

/* Sağ nav links (Əlaqə, Haqqımızda, telefon, qeydiyyat) */
.nav-right-links 
{
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    
}

/* Sağ nav linkləri */
.nav-right-links li a 
{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-right-links li a:hover 
{
    color: var(--black);
}

/* Telefon nömrəsi */
.phone-number 
{
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    background-color: var(--primary);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

/* User profile nav */
.user-profile-nav 
{
    display: flex;
    align-items: center;
    /**display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;**/
}

.profile-link 
{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333 !important;
}

.profile-avatar-nav 
{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
}

.profile-avatar-nav img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-placeholder 
{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #667eea;
}

.profile-avatar-placeholder i 
{
    color: white;
    font-size: 20px;
}

.user-name 
{
    margin: 0;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    background-color: var(--primary);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

/* Çıxış düyməsi */
.btn-logout 
{
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    min-width: 80px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-logout:hover 
{
    background-color: #ff3742;
    transform: translateY(-2px);
}

/* Qeydiyyat düyməsi */
.btn-register 
{
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    min-width: 150px; /* Minimum en */
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center; /* Mətnin ortalanması üçün */
    gap: 8px;
    text-decoration: none;
}

/* Hamburger menyu (mobil üçün) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Desktop login düyməsi */
.btn-register, .btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-auth-section,
.mobile-phone-section,
.mobile-user-profile{
    display: none;

}

/* Mobil üçün responsive tənzimləmələr */
@media (max-width: 1100px) {
    .logo-nav-left {
        gap: 30px;
    }
    
    .nav-left-links {
        gap: 20px;
    }
    
    .nav-right-links {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
        order: 1;
        margin-left: auto;
        margin-right: 20px;
    }

    

    .logo-nav-left {
        order: 0;
    }

    .nav{
      margin-top: -32px;
    }

    .nav-right-links {
        order: 2;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Desktop telefon nömrəsini və login düyməsini gizlə */
    .nav-right-links .phone-number,
    .nav-right-links .nav-actions {
        display: none !important;
    }

    /* Mobil menyu stiləri */
    .nav-left-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px 100px 30px; /* Aşağıda yer üçün padding */
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-left-links.active {
        left: 0;
    }

    .nav-left-links li {
        width: 100%;
    }

    .nav-left-links li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        color: #333;
        width: 100%;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .nav-left-links li a:hover {
        color: #007bff;
        padding-left: 10px;
    }

    .nav-left-links li a.active {
        color: #007bff;
        font-weight: 600;
    }

    /* Mobil menyuda telefon nömrəsi */
    .mobile-phone-section {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
        text-align: center;
        width: 100%;
    }

    .mobile-phone-section .phone-number {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 15px;
    }

    .mobile-phone-section .phone-number i {
        color: #007bff;
        font-size: 20px;
    }

    /* Mobil menyuda login/çıxış düymələri */
    .mobile-auth-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    /* Login düyməsi mobil üçün */
    .mobile-login-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .mobile-login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Çıxış düyməsi mobil üçün */
    .mobile-logout-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        background: #ff4757;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .mobile-logout-btn:hover {
        background: #ff3742;
        transform: translateY(-2px);
    }

    /* Desktop login düyməsini gizlə */
    .nav-right-links .btn-register {
        display: none;
    }

    /* Mobil üçün user profile */
    .mobile-user-profile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }

    .mobile-user-info {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .mobile-user-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        font-weight: 600;
    }

    .mobile-user-name {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    /* Desktop versiyanı gizlə */
    .user-profile-nav {
        display: none !important;
    }
}

/* Tablet üçün */
@media (max-width: 768px) {
    .logo span {
        font-size: 24px;
    }
    
    .nav-left-links {
        padding: 20px 25px 90px 25px;
    }
    
    .mobile-phone-section .phone-number {
        font-size: 16px;
    }
    
    .mobile-login-btn,
    .mobile-logout-btn {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .mobile-user-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .mobile-user-name {
        font-size: 16px;
    }
}

/* Kiçik mobil üçün */
@media (max-width: 576px) {
    .nav {
        padding: 10px 0;
    }
    
    .hamburger {
        margin-right: 15px;
        font-size: 22px;
    }
    
    .nav-left-links {
        max-width: 300px;
        padding: 20px 20px 80px 20px;
    }
    
    .nav-left-links li a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    .mobile-phone-section {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .mobile-auth-section {
        margin-top: 15px;
    }
}




/* Hero Section */
.hero {
  position: relative;
  background: 
    /* Şəffaf qara overlay üstündə gradient */
    linear-gradient(90deg, rgba(44, 47, 108, 0.8), rgba(59, 63, 140, 0.8)),
    /* Şəkil */
    url("https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-content 
{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 
{
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .subtitle 
{
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Hero Search */


.hero-search 
{
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  margin-top: 40px;
}

.search-tabs 
{
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-btn 
{
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active 
{
  color: var(--primary);
  position: relative;
}

.tab-btn.active::after 
{
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.search-form 
{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Sadələşdirilmiş Nəqliyyat Formu */
.transport-simple 
{
  text-align: center;
  padding: 30px 20px;
}

.transport-message 
{
  margin-bottom: 25px;
}

.transport-message i 
{
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.transport-message h3 
{
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.transport-message p 
{
  color: var(--gray);
  font-size: 1rem;
}

.btn-transport-order 
{
  padding: 15px 30px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.btn-transport-order:hover 
{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-transport-order:active 
{
  transform: translateY(-1px);
}

/* Form Group (Turlar formu üçün) */
.form-group 
{
  position: relative;
}

.form-group label 
{
  position: absolute;
  top: -10px;
  left: 15px;
  background-color: var(--white);
  padding: 0 5px;
  font-size: 0.8rem;
  color: var(--gray);
  z-index: 1;
}

.form-group input 
{
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus 
{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}


.form-group input 
{
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus 
{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.people-selector 
{
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
}

.people-selector button 
{
  flex: 0 0 40px;
  height: 100%;
  background-color: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.people-selector button:hover 
{
  background-color: var(--primary);
  color: var(--white);
}

.people-selector input 
{
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  height: 100%;
}

/* Hero Features */
.hero-features 
{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item 
{
  flex: 1 200px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(5px);
}

.feature-item i 
{
  font-size: 1.2rem;
  flex-shrink: 0;
}


.none2 {
    display: none !important;
}

.dropdown {
    position: relative;
}

/* Düymə */
.services-btn {
    background: none;
    border: none;
    font: inherit;
    color: var(--light);
    cursor: pointer;
    padding: 10px 16px;
}

/* Ox */
.services-btn .arrow {
    margin-left: 6px;
    font-size: 0.9em;
}

/* Açılan menyu */
.dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: #ffffff;
    min-width: 200px;
}

/* Açıq olanda */
.dropdown-menu.show {
    display: block;
}

/* Desktop üçün: aşağıdan açılsın */
@media (min-width: 769px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;      /* düymənin altı */
        left: 0;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        border-radius: 8px;
        z-index: 1000;
    }
}

/* Linklər */
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f2f2f2;
}

/* Mobil üçün: menyunun içində axsın */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }

    .services-btn {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
        color: var(--black);
    }

    .dropdown-menu li a {
        padding: 12px 20px;
    }
}


/* Nəqliyyat formu üçün xüsusi stillər */
#transport-form .passenger-selector 
{
  background: #f8f9fa;
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

#transport-form .passenger-type 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#transport-form .passenger-type:last-child 
{
  margin-bottom: 0;
}

#transport-form .passenger-controls 
{
  display: flex;
  align-items: center;
}

#transport-form .passenger-controls button 
{
  background: var(--primary);
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

#transport-form .passenger-controls input 
{
  width: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 5px;
}

#transport-form select 
{
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  background: white;
}

/* Popular Tours */
.section-header 
{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-header h2 
{
  font-size: 2.5rem;
  margin-bottom: 15px;
  padding-bottom: 30px; /* əlavə boşluq */
  position: relative;
  z-index: 1;
}


.section-header h2 span 
{
  color: var(--primary);
}

.section-header p 
{
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.controls 
{
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 20px;
}

.controls .prev-tour 
{
  position: absolute;
  top: -60px; /* slider kartlarının üstündə */
  left: -10px; /* slider-in bir az kənarında */
  z-index: 2;
}

/* Sağ ox */
.controls .next-tour 
{
  position: absolute;
  top: -60px;
  right: -10px;
  z-index: 2;
}

.control-btn 
{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--light); /* açıq rəng */
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.tours-slider 
{
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.tours-slider::-webkit-scrollbar 
{
  display: none;
}

.tour-card 
{
  flex: 0 0 350px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  scroll-snap-align: start;
  position: relative;
}

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

.tour-badge 
{
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--danger);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

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

.tour-image img 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-price 
{
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--white);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.tour-content 
{
  padding: 20px;
}

.tour-meta 
{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray);
}

.tour-meta span 
{
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-meta i 
{
  font-size: 0.8rem;
}


.tour-description 
{
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.tour-footer 
{
  display: flex;
  gap: 10px;
}

.tour-footer .btn 
{
  flex: 1;
  padding: 10px;
}

/* AI Planner */
.ai-planner 
{
  background-color: var(--light);
  padding: 60px 0;
}

.planner-container 
{
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}

.price-banner 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--light);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 500;
}

.planner-banner h2 
{
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.price-banner span 
{
  color: var(--dark);
}

.planner-banner p 
{
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.progress-step 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.progress-bar 
{
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--light);
  z-index: 1;
}

.progress-fill 
{
  height: 100%;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.step 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 25%;
  float: left;
}

.step-number 
{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--gray);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
  border: 4px solid var(--light);
  transition: var(--transition);
}

.step.active .step-number 
{
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.step-label 
{
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

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

.step-content 
{
  clear: both;
}

.step-pane 
{
  display: none;
}

.step-pane.active 
{
  display: block;
  animation: fadeIn 0.5s ease;
}




.preference-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.preference-card 
{
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.preference-card:hover 
{
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.preference-card i 
{
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.preference-card span 
{
  font-weight: 500;
  display: block;
}

/* Planner Section Styles */
.planner 
{
  padding: 80px 0;
  background-color: #f9fafc;
}

.planner-container 
{
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.price-banner 
{
  background-color: #4361ee;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.price-banner span 
{
  font-weight: 600;
}

.price-banner div 
{
  text-align: right;
}

#totalPriceBanner 
{
  font-size: 1.8rem;
  font-weight: 700;
}

.price-details 
{
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
}

.progress-bar 
{
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: relative;
}

.progress-bar:before 
{
  content: "";
  position: absolute;
  top: 38px;
  left: 50px;
  right: 50px;
  height: 3px;
  background-color: #e9ecef;
  z-index: 1;
}

.step2 
{
  width: 100%;
  margin-block: 50px;
}

.progress-step 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number 
{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
  border: 3px solid #f9fafc;
  transition: all 0.3s ease;
}

.step-number.active 
{
  background-color: #4361ee;
  color: white;
  border-color: #4361ee;
}

.step-label 
{
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.step-label.active 
{
  color: #212529;
  font-weight: 600;
}

.selection-container 
{
  padding: 30px;
}

.autocomplete-items 
{
  position: absolute;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95); /* Şəffaf ağ fon */
  backdrop-filter: blur(6px); /* Arxa plan bulanıqlığı */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Yumşaq kölgə */
  max-height: 250px;
  overflow-y: auto;
  font-size: 16px;
}

.autocomplete-items div 
{
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.autocomplete-items div:hover 
{
  background-color: #007bff; /* Hover zamanı mavi */
  color: #fff;
}


.step2 
{
  display: none;
}

.step2.active 
{
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.step-title 
{
  text-align: center;
  margin-bottom: 15px;
  color: #4361ee;
  font-size: 1.8rem;
}

.step-description 
{
  text-align: center;
  margin-bottom: 30px;
  color: #6c757d;
  font-size: 1.1rem;
}

.address-row 
{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.address-row .form-group 
{
  flex: 1 1 45%;
  min-width: 250px;
}


.options-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.option-card 
{
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.option-card:hover 
{
  transform: translateY(-3px);
  border-color: #4361ee;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
}

.option-card.selected 
{
  border-color: #4361ee;
  background-color: rgba(67, 97, 238, 0.03);
}

/* Ümumi stil */
.route-card,
.tutum-card 
{
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Marşrut seçiləndə (mavi xətt) */
.route-card.selected 
{
  border: 3px solid #007bff; /* mavi */
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
  transform: scale(1.03);
}

/* Tutum seçiləndə (yaşıl xətt) */
.tutum-card.selected 
{
  border: 3px solid #28a745; /* yaşıl */
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
  transform: scale(1.03);
}

/* Marşrutda check işarəsi */
.route-card.selected::after 
{
  content: "✔";
  position: absolute;
  top: 6px;
  right: 10px;
  color: #007bff;
  font-size: 20px;
  font-weight: bold;
}

/* Tutumda check işarəsi */
.tutum-card.selected::after 
{
  content: "✔";
  position: absolute;
  top: 6px;
  right: 10px;
  color: #28a745;
  font-size: 20px;
  font-weight: bold;
}




.option-badge 
{
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #f72585;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.option-image-container 
{
  width: 100%;
  height: 150px; /* Kiçildilmiş şəkil ölçüsü */
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.option-image 
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.option-card:hover .option-image 
{
  transform: scale(1.03);
}

.option-content 
{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 5px;
}

.option-title 
{
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}

.option-features 
{
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: #6c757d;
  text-align: left;
}

.option-features li 
{
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.option-features i 
{
  color: #4361ee;
  min-width: 18px;
  font-size: 0.9rem;
}

.option-price 
{
  font-size: 1.2rem;
  font-weight: 700;
  color: #4361ee;
  margin-top: auto;
  padding-top: 8px;
}

.option-price small 
{
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 400;
}

.step-title 
{
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #212529;
  text-align: center;
}

.step-description 
{
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
  text-align: center;
}

.navigation-buttons 
{
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}

.btn-planner 
{
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-planner-primary 
{
  background-color: #4361ee;
  color: white;
}

.btn-planner-primary:hover 
{
  background-color: #3a56d4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-planner-secondary 
{
  background-color: #e9ecef;
  color: #495057;
}

.btn-planner-secondary:hover 
{
  background-color: #dee2e6;
  transform: translateY(-2px);
}

.btn-planner-outline 
{
  background-color: transparent;
  border: 2px solid #4361ee;
  color: #4361ee;
}

.btn-planner-outline:hover 
{
  background-color: rgba(67, 97, 238, 0.1);
}

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

.form-group label 
{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
  gap: 8px;
}

.form-group label i 
{
  color: #4361ee;
  font-size: 0.9rem;
}

.form-control 
{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e3e6;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.form-control:focus 
{
  outline: none;
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.date-picker 
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.date-input 
{
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
}

.people-selector-container 
{
  max-width: 200px;
  margin: 30px auto;
  text-align: center;
}

.people-selector 
{
  display: flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  overflow: hidden;
}

.people-selector button 
{
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.people-selector button:hover 
{
  background-color: #4361ee;
  color: white;
}

.people-input 
{
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  font-size: 1rem;
}

.additional-options 
{
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.checkbox-option 
{
  position: relative;
}

.checkbox-option input 
{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-label 
{
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label:hover 
{
  border-color: #4361ee;
}

.checkbox-option input:checked ~ .checkbox-label 
{
  border-color: #4361ee;
  background-color: rgba(67, 97, 238, 0.05);
}

.checkbox-icon 
{
  font-size: 1.5rem;
  color: #4361ee;
  margin-right: 15px;
  flex-shrink: 0;
}

.service-details 
{
  flex: 1;
}

.service-details small 
{
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 3px;
}

.service-price 
{
  font-weight: 600;
  color: #4361ee;
  margin-left: 15px;
}

#orderSummary 
{
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.summary-item 
{
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child 
{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-title 
{
  font-weight: 600;
  color: #495057;
}

.summary-total 
{
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4361ee;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e9ecef;
}

.price-per-person 
{
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 400;
  margin-top: 5px;
}

.final-message 
{
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.animation-container 
{
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark 
{
  font-size: 3rem;
  color: #4361ee;
  animation: bounce 0.5s ease;
}

@keyframes bounce 
{
  0%,
  100% 
  {
    transform: scale(1);
  }
  50% 
  {
    transform: scale(1.2);
  }
}

.final-message 
{
  text-align: center;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 30px auto;
  border: 1px solid #e9ecef;
  display: none; /* Başlanğıcda gizli */
}

.animation-container 
{
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out;
}

.checkmark 
{
  font-size: 3.5rem;
  color: #4361ee;
  font-weight: bold;
  animation: bounceIn 0.6s ease;
}

.final-message p:last-of-type 
{
  margin-bottom: 25px;
}

.final-buttons 
{
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* Animasiyalar */
@keyframes pulse 
{
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes bounceIn 
{
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Düymə Stili */
.restart-btn 
{
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background-color: #4361ee;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
}

.restart-btn:hover 
{
  background-color: #3a56d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(67, 97, 238, 0.25);
}


.hotel-card 
{
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 8px;
}

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

.hotel-card.selected 
{
  border-color: var(--primary);
  background-color: rgba(0, 123, 255, 0.05);
}

.hotel-options 
{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hotel-image 
{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.hotel-name 
{
  margin: 10px 0 5px;
  color: #333;
}

.hotel-location 
{
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.hotel-rating 
{
  color: #ffd700;
  font-size: 1rem;
}

.hotel-amenities 
{
  color: #555;
  font-size: 0.85rem;
  margin-top: 8px;
}


/* Guide Selection Styles */
#guideSelection,
#photographerSelection,
#diningSelection,
#hotelSelection 
{
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.guide-card 
{
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  padding-bottom: 1rem;
}

.guide-card:hover 
{
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-card.selected 
{
  border-color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
}

.guide-image 
{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-name 
{
  margin: 0.8rem 0 0.3rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.guide-specialty 
{
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.guide-price 
{
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Photographer Selection Styles */
#photographerSelection 
{
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.photographer-card 
{
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  padding-bottom: 1rem;
}

.photographer-card:hover 
{
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photographer-card.selected 
{
  border-color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
}

.photographer-image 
{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.photographer-name 
{
  margin: 0.8rem 0 0.3rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.photographer-specialty 
{
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.photographer-price 
{
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

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

.dining-card 
{
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  padding-bottom: 1rem;
}

.dining-card:hover 
{
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dining-card.selected 
{
  border-color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
}

.dining-image 
{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dining-name 
{
  margin: 0.8rem 0 0.3rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.dining-specialty 
{
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.dining-price 
{
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

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

.hotel-card 
{
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  padding-bottom: 1rem;
}

.hotel-card:hover 
{
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hotel-card.selected 
{
  border-color: var(--primary);
  background-color: rgba(67, 97, 238, 0.05);
}

.hotel-image 
{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hotel-name 
{
  margin: 0.8rem 0 0.3rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.hotel-specialty 
{
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.hotel-price 
{
  margin: 0.5rem 0 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Virtual Tours */
.virtual-tours 
{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 60px 0;
}

.virtual-tours .section-header 
{
  text-align: center;
  color: var(--white);
}

.virtual-tours .section-header h2 span 
{
  color: #ffd700; /* vurğulu hissə üçün sarı */
}

.virtual-tours .section-header p 
{
  color: #f0f0f0;     /* Açıq boz – ağdan bir az solğun, göz yorulmur */
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;       /* Həddindən artıq parlaq deyil */
}


.vr-container 
{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9; /* Daha adaptiv hündürlük */
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.vr-viewer 
{
  width: 100%;
  height: 100%;
  background-color: var(--dark);
}

/* Düymələr */
.vr-controls 
{
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.vr-btn 
{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.vr-btn:hover 
{
  background-color: var(--primary);
  transform: scale(1.1);
}

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

/* ============ MÜŞTƏRİ RƏYLƏRİ - KOMPLENT DİZAYN ============ */

.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.reviews::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.reviews .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews .section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews .section-header h2 span {
    color: #667eea;
    position: relative;
    display: inline-block;
}

.reviews .section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

.reviews .section-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews Wrapper */
.reviews-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px; /* Increased padding for buttons */
}

/* Reviews Slider */
.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 10px 0;
    margin-left: -10px; 
}

/* Review Card */
.review-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 280px;
    max-height: 260px;
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

/* Review Header */
.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.review-card:hover .reviewer-avatar div {
    transform: scale(1.1) rotate(5deg);
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating Stars */
.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.review-rating i {
    font-size: 14px;
}

.review-rating .fa-star,
.review-rating .fa-star-half-alt {
    color: #ffb347;
    text-shadow: 0 2px 4px rgba(255, 180, 71, 0.3);
}

.review-rating .far.fa-star {
    color: #e2e8f0;
}

.review-rating span {
    margin-left: 8px;
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
}

/* Review Content */
.review-content {
    margin-bottom: 20px;
}

.review-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    font-style: italic;
}

.review-content p::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 25px;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(102, 126, 234, 0.15);
    font-size: 0.85rem;
}

.review-date {
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(102, 126, 234, 0.05);
    padding: 5px 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.review-date i {
    color: #667eea;
    font-size: 12px;
}

.review-date:hover {
    background: rgba(102, 126, 234, 0.1);
}

/* Tour Name - UZUN ADLAR ÜÇÜN OPTİMAL */
.review-tour {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 6px 15px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    max-width: 180px;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.review-tour i {
    font-size: 12px;
    flex-shrink: 0;
}

.review-tour .tour-name-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    font-weight: 500;
}

/* Tooltip - KLİKLƏ AÇILAN VERSİYA */
.review-tour .tour-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #2d3748;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tooltip arrow */
.review-tour .tour-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}

/* ACTIVE CLASS - KLİKLƏ AÇILANDA */
.review-tour.active .tour-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-15px);
}

/* Mobil üçün tooltip aşağıda */
@media screen and (max-width: 768px) {
    .review-tour .tour-tooltip {
        bottom: auto;
        top: 100%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .review-tour .tour-tooltip::after {
        top: auto;
        bottom: 100%;
        border-color: transparent transparent #2d3748 transparent;
    }
    
    .review-tour.active .tour-tooltip {
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===== NAVİQASİYA BUTONLARI - KOMPUTER DİZAYNI ===== */
.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 30;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4),
                0 0 0 4px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.review-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6),
                0 0 0 6px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.review-nav:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.review-nav.prev {
    left: -5px;
}

.review-nav.next {
    right: -5px;
}

/* Navigation icons */
.review-nav i {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Disabled state */
.review-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #cbd5e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-nav.disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* View All Button */
.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.view-all-btn a:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(102, 126, 234, 0.5);
}

.view-all-btn a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn a:hover i {
    transform: translateX(5px);
}

/* ============ RESPONSIVE DİZAYN ============ */

/* Large Desktop */
@media screen and (min-width: 1400px) {
    .reviews-wrapper {
        max-width: 1600px;
    }
    
    .review-card {
        flex: 0 0 calc(25% - 22.5px);
    }
    
    .review-nav.prev {
        left: -10px;
    }
    
    .review-nav.next {
        right: -10px;
    }
}

/* Desktop - 3 cards */
@media screen and (max-width: 1200px) {
    .reviews-wrapper {
        padding: 0 70px;
    }
    
    .review-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .review-nav {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .review-nav.prev {
        left: 0;
    }
    
    .review-nav.next {
        right: 0;
    }
}

/* Tablet - 2 cards */
@media screen and (max-width: 992px) {
    .reviews {
        padding: 60px 0;
    }
    
    .reviews .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-wrapper {
        padding: 0 65px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 15px);
        padding: 22px;
    }
    
    .reviewer-avatar div {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .review-nav {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .review-nav i {
        font-size: 24px;
    }
}

/* Mobile Landscape - 2 cards but smaller */
@media screen and (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }
    
    .reviews .section-header h2 {
        font-size: 1.8rem;
    }
    
    .reviews-wrapper {
        padding: 0 60px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 240px;
        padding: 20px;
    }
    
    .reviewer-avatar div {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-tour {
        max-width: 100%;
        justify-content: center;
    }
    
    .review-tour .tour-name-text {
        max-width: calc(100% - 40px);
    }
    
    /* Mobil üçün buttonlar */
    .review-nav {
        width: 46px;
        height: 46px;
        font-size: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .review-nav.prev {
        left: 0;
    }
    
    .review-nav.next {
        right: 0;
    }
    
    .review-nav i {
        font-size: 22px;
    }
    
    /* Tooltip mobil üçün aşağıda */
    .review-tour .tour-tooltip {
        bottom: auto;
        top: 100%;
        transform: translateX(-50%) translateY(10px);
    }
    
    .review-tour .tour-tooltip::after {
        top: auto;
        bottom: 100%;
        border-color: transparent transparent #2d3748 transparent;
    }
    
    .review-tour:hover .tour-tooltip {
        transform: translateX(-50%) translateY(15px);
    }
}

/* Mobile Portrait - 1 card */
@media screen and (max-width: 576px) {
    .reviews {
        padding: 40px 0;
    }
    
    .reviews .section-header h2 {
        font-size: 1.6rem;
    }
    
    .reviews-wrapper {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 100%;
        min-width: 0;
        padding: 20px;
    }
    
    .review-header {
        gap: 12px;
    }
    
    .reviewer-avatar div {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .review-footer {
        flex-direction: row;
        align-items: center;
    }
    
    .review-tour {
        max-width: 170px;
    }
    
    /* Mobil buttonlar */
    .review-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .review-nav.prev {
        left: -5px;
    }
    
    .review-nav.next {
        right: -5px;
    }
    
    .review-nav i {
        font-size: 22px;
    }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
    .review-card {
        padding: 18px;
    }
    
    .reviewer-avatar div {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-tour {
        max-width: 100%;
        width: 100%;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
    }
    
    .review-nav i {
        font-size: 18px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .review-tour .tour-tooltip {
        display: none;
    }
    
    .review-tour .tour-name-text {
        max-width: none;
    }
    
    .review-nav {
        width: 48px;
        height: 48px;
    }
}

/* Print styles */
@media print {
    .reviews {
        background: none;
        padding: 20px 0;
    }
    
    .review-nav,
    .view-all-btn {
        display: none;
    }
    
    .review-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Əsas konteyner və grid düzəni */
.contact-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Əlaqə bölməsi - sağda */
.contact-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 767px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 32px;
}

.contact-section .subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

/* Əlaqə məlumat kartları */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-item i {
    font-size: 24px;
    color: #667eea;
    width: 40px;
    text-align: center;
}

.contact-info-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Sosial media linkləri */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Haqqında bölməsi - solda */
.about-section {
    background-color: #f8f9fa;
    /**background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);**/
    border-radius: 15px;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* Düymə üçün tənzimləmələr */
.btn-primary {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: transparent;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobil uyğunluq */
@media (max-width: 992px) {
    .contact-about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .contact-section, .about-section {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section, .about-section {
        padding: 25px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* Footer */
.footer 
{
  background-color: var(--dark);
  color: var(--white);
  padding: 50px 0 25px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-grid 
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px; /* daha az boşluq */
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 0 15px;
}

.footer-col h4 
{
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after 
{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  user-select: none;
}


footer-logo img 
{
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: 2px solid var(--primary);
  padding: 3px;
  object-fit: cover;
  display: block;
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.footer-logo span 
{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  line-height: 1.2;
}

.footer-about 
{
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 10px 0 0 0;
  max-width: 260px;
  text-align: left;
  user-select: none;
}

.footer-links 
{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a 
{
  font-size: 0.92rem;
  color: var(--gray);
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover 
{
  color: var(--primary);
  padding-left: 6px;
}

.newsletter-form 
{
  margin-top: 10px;
  display: flex;
  width: 100%;
  gap: 0;
}

.newsletter-form input 
{
  flex-grow: 1;
  padding: 10px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--gray);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus 
{
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button 
{
  padding: 0 16px;
  cursor: pointer;
  border: none;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover 
{
  background-color: #345bd7;
}

.footer-col p 
{
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: 10px;
  max-width: 280px;
  user-select: none;
}

.footer-bottom 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.payment-methods 
{
  display: flex;
  gap: 12px;
}

.payment-methods i 
{
  font-size: 1.6rem;
  color: var(--gray);
  user-select: none;
}

.copyright 
{
  color: var(--gray);
  text-align: center;
  user-select: none;
}


/* Chatbot */
.chatbot-container 
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.chatbot-container.active 
{
  transform: translateY(0);
  opacity: 1;
}

.chatbot-header 
{
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 
{
  margin-bottom: 0;
}

.chatbot-close 
{
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages 
{
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background-color: #f5f7fb;
}

.chatbot-message 
{
  margin-bottom: 15px;
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
}

.chatbot-message.bot 
{
  background-color: var(--white);
  border-top-left-radius: 0;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.chatbot-message.user 
{
  background-color: var(--primary);
  color: var(--white);
  border-top-right-radius: 0;
  align-self: flex-end;
  margin-left: auto;
}

.chatbot-input 
{
  display: flex;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chatbot-input input 
{
  flex: 1;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  margin-right: 10px;
}

.chatbot-input button 
{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
}

.chatbot-toggle 
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  transition: var(--transition);
}

.chatbot-toggle:hover 
{
  transform: scale(1.1);
}

.chatbot-toggle.hidden 
{
  opacity: 0;
  visibility: hidden;
}

