/* General styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/new-hero-bg.webp') no-repeat center center/cover;
    background-attachment: fixed;
    line-height: 1.6;
}

/* Saytdakı bütün linklərin rəngini düzəldir */
a {
    color: #fff;
    text-decoration: none;
}

/* Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    transition: transform 0.5s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Naviqasiya paneli gizləndikdə istifadə olunacaq sinif */
header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
    vertical-align: middle;
}

.logo-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

/* Naviqasiya Menyu Stilləri */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #d4af37;
    top: -3px;
}

.social-links-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.social-links-header a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-header a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Yalnız mobil üçün nəzərdə tutulan hamburger menyusu burada gizlədilir */
.hamburger-menu {
    display: none;
}

/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Başlanğıc) */
.cta-button {
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    padding: 8px 18px;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Dəyişiklik burada edildi */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #008000; /* YAŞIL RƏNG */
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: #fff; /* Hover zamanı mətnin rəngi ağ olur */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 128, 0, 0.5); /* Kölgə də yaşıl rəngə uyğunlaşdırılır */
}
/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Son) */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    background-color: transparent;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto 30px;
}

section {
    padding: 60px 5%;
    background-color: rgba(0, 0, 0, 0.5);
}

.fleet-page-section {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-title-wrapper p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-title-wrapper hr {
    width: 50px;
    border: none;
    height: 1px;
    background-color: #d4af37;
    margin: 0 auto;
}

/* Yeni "Haqqımızda" bölməsinin stilləri */
.about-section-new {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 60px 5%;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

.about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Xidmət kartlarının tərtibatı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
    column-gap: 25px;
    text-align: center;
    align-items: stretch;
    justify-content: center;
}

.service-card-link {
    text-decoration: none;
    color: #fff;
    display: block;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
    background-color: rgba(17, 17, 17, 0.6);
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(34, 34, 34, 0.6);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card-link:hover .service-card {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.2);
}

.service-card h3 {
    color: #d4af37;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    color: #ccc;
    flex-grow: 1;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.car-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.car-item:hover {
    transform: translateY(-8px);
}

.car-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-item img:hover {
    border: none;
    transform: translateY(-8px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.car-item a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.car-item h3 {
    color: #d4af37;
    margin-top: 12px;
}

/* Yeni əlaqə bölməsinin stilləri */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-details .contact-item:hover {
    transform: translateX(10px);
}

.contact-details .contact-item a {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-details .contact-item a:hover {
    color: #d4af37;
}

.contact-details .contact-icon {
    color: #d4af37;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-details .contact-item:hover .contact-icon {
    transform: scale(1.1);
    color: #fff;
}

.phone-numbers,
.email-addresses {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons-contact a {
    color: #d4af37;
    font-size: 2.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons-contact a:hover {
    color: #fff;
    transform: translateY(-8px) scale(1.2);
}

/* Footer stilləri */
footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.85rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 6px;
}

.footer-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

.footer-col h3 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 4px;
    display: inline-block;
}

.footer-col p {
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #d4af37;
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.contact-info a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.contact-info a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
}

/* Tək Avtomobil Səhifəsi üçün Xüsusi Stillər (transfer.php) */
.car-detail-page {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.6);
}

.car-detail-container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.car-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-detail-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
}

.car-detail-content {
    width: 100%;
    max-width: 450px;
    margin: 15px auto 0;
    text-align: center;
}

.car-detail-content h2 {
    font-size: 2.2rem;
    color: #d4af37;
    margin-top: 0;
}

.car-detail-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 500;
}

.back-button {
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #e6c200;
}

.price-frame {
    background-color: transparent;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #d4af37;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    font-size: 1rem;
    font-weight: 500;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
}

.vat-info {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 12px;
    text-align: center;
}

.order-form-page {
    padding-top: 100px;
    padding-bottom: 40px;
    background-image: url('images/new-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.form-container {
    background-color: rgba(17, 17, 17, 0.8);
    padding: 25px;
    border-radius: 10px;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 1.8em;
    margin-bottom: 12px;
    color: #ffcc00;
}

form {
    text-align: left;
}

.form-group {
    margin-bottom: 8px;
}

label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #fff;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    font-size: 0.9rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ffcc00;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-options input {
    display: none;
}

.service-options label {
    display: inline-block;
    background-color: #333;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    font-size: 13px;
}

.service-options input:checked + label {
    background-color: #ffcc00;
    color: #111;
    font-weight: bold;
    border: 2px solid #ffcc00;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.phone-input-group input {
    flex-grow: 1;
}

.custom-select-wrapper {
    position: relative;
    width: 100px;
}

.selected-option {
    background-color: #222;
    border: 1px solid #333;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flag-icon {
    margin-right: 4px;
}

.options-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 115px;
    max-height: 180px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 5px;
    z-index: 10;
    display: none;
}

.options-list.active {
    display: block;
}

.rotated-arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 25px;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.select-arrow.rotate {
    transform: translateY(-50%) rotate(180deg);
}

/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Başlanğıc) */
.submit-button {
    width: auto;
    padding: 12px 25px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #008000; /* YAŞIL RƏNG */
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.submit-button:hover::before {
    width: 100%;
}

.submit-button:hover {
    color: #fff; /* Hover zamanı mətnin rəngi ağ olur */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 128, 0, 0.4); /* Kölgə də yaşıl rəngə uyğunlaşdırılır */
}
/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Son) */

.privacy-note {
    margin-top: 15px;
    font-size: 0.8em;
    color: #aaa;
}

.back-button {
    color: #d4af37;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #e6c200;
}

/* Təşəkkür Səhifəsi üçün Xüsusi Stil Düzəlişləri */
.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
    padding: 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/new-hero-bg.webp') no-repeat center center/cover;
    background-attachment: fixed;
}

.thank-you-container {
    background-color: rgba(17, 17, 17, 0.8);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-container h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.thank-you-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Başlanğıc) */
.thank-you-container .cta-button {
    background-color: #d4af37;
    color: #111;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thank-you-container .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #008000; /* YAŞIL RƏNG */
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.thank-you-container .cta-button:hover::before {
    width: 100%;
}

.thank-you-container .cta-button:hover {
    color: #fff; /* Hover zamanı mətnin rəngi ağ olur */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 128, 0, 0.4); /* Kölgə də yaşıl rəngə uyğunlaşdırılır */
}
/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Son) */

/* Sifariş Səhifəsi üçün Düzəlişlər */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    font-size: 0.95rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Seçim xanası (select) düzəlişləri */
select {
    padding: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path fill="white" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    cursor: pointer;
}

/* Əlavə qeydlər xanası (textarea) düzəlişləri */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
    color: #fff;
}

textarea::placeholder {
    color: #999;
}

/* Sifariş Butonunun Düzəlişi */
.submit-button-container {
    text-align: left;
    margin-top: 10px;
}

/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Başlanğıc) */
.submit-button {
    width: auto;
    padding: 12px 25px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #008000; /* YAŞIL RƏNG */
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.submit-button:hover::before {
    width: 100%;
}

.submit-button:hover {
    color: #fff; /* Hover zamanı mətnin rəngi ağ olur */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 128, 0, 0.4); /* Kölgə də yaşıl rəngə uyğunlaşdırılır */
}
/* YALNIZ BU BLOK DƏYİŞDİRİLDİ (Son) */

.order-form-page .cta-button {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
}

/* Sifariş Səhifəsi üçün Geri Qayıt Düyməsinin Düzəlişi */
.order-form-page .back-button {
    display: block;
    width: fit-content;
    margin-left: 5%;
    font-size: 1rem;
    font-weight: 500;
}

/* Dil seçiminin əsas konteyneri */
.lang-dropdown {
    position: relative;
    cursor: pointer;
}

/* Seçilmiş dil düyməsi */
.lang-current {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Maus üzərinə gələndə fon rəngi dəyişir */
.lang-current:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

/* Açılan dil siyahısı */
.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: #222;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
    padding: 5px 0;
}

/* Klikləndikdə menyunu açmaq üçün sinif */
.lang-dropdown.active .dropdown-content {
    display: block;
}

/* Siyahıdakı hər bir link */
.dropdown-content a {
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background-color 0.2s ease;
}

/* Linkin üzərinə gələndə fon rəngi dəyişir */
.dropdown-content a:hover {
    background-color: #d4af37;
    color: #000;
}

/* Bayraq ikonlarının stili */
.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Bütün kliklənə bilən elementlər üçün əl işarəsi əlavə edin */
.back-button,
.cta-button,
.lang-current,
.dropdown-content a,
.social-links a,
.footer-col a,
.service-options label,
.selected-option,
.options-list li {
    cursor: pointer;
}

/* Ölkə kodları siyahısı üçün ümumi stil */
.options-list {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

/* Siyahıdakı hər bir element (ölkə kodu) üçün stil */
.options-list li {
    padding: 12px 15px;
    color: #000000 !important;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Maus elementi üzərinə gələndəki effekt */
.options-list li:hover {
    background-color: #FFC107;
    color: #1a1a1a;
}

/* Bu stil xanaların normal vəziyyəti üçündür */
.form-container input,
.form-container select,
.form-container textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Bu stil xanalara kliklənəndə aktivləşir */
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
    outline: none;
}

.lang-dropdown {
    border: 1px solid #ffcc00;
    border-radius: 10px;
    padding: 2px 2px;
}

.lang-dropdown {
    margin-left: 20px;
}

.seo-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 8px;
    color: transparent;
    background: transparent;
    border: none;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
}

.seo-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    background-color: transparent;
    color: #fff;
    padding: 20px;
}

.seo-page .main-button {
    display: inline-block;
    margin-top: 200px;
    margin-bottom: 40px;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    background-color: #ffcc00;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.seo-page .main-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.4);
}

.seo-page .main-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: transform 0.5s ease;
    z-index: -1;
}

.seo-page .main-button:hover::before {
    transform: rotate(30deg) translate(25%, 25%);
}

.seo-keywords {
    max-width: 800px;
    line-height: 1.8;
    font-size: 1rem;
    color: #ccc;
    opacity: 1;
}

.seo-keywords span {
    display: inline-block;
    background-color: #2b2b2b;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 3px;
}

/* --- Mobil Versiya Üçün Xüsusi Düzəlişlər (992px-dən kiçik) --- */
@media (max-width: 992px) {
    /* Headerdəki konteyner üçün boşluqları və nizamlanmanı tənzimləyir */
    .header-container {
        padding: 12px 5%;
        justify-content: space-between;
        align-items: center;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/new-hero-bg.webp') no-repeat center center/cover;
    }
    body {
        background: none; /* `body`-nin öz fonunu sıfırlayırıq */
    }

    /* Logo mətnini mobil versiyada daha kiçik edir */
    .logo-text {
        font-size: 0.9rem;
    }

    /* Masaüstü menyunu mobil versiyada gizlədir */
    nav {
        display: none;
    }
    
    /* Yalnız mobil görünüşdə görünən düymələr */
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Masaüstü sosial linklərini mobil versiyada gizlədir */
    .social-links-header {
        display: none;
    }

    /* Hamburger menyu butonu mobil görünüşdə aktivləşdirilir */
    .hamburger-menu {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Mobil menyunun özü */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%; /* Sola gizlədilir */
        width: 50%; /* BU DƏYƏR İSTƏDİYİNİZ YARI EKRAN ÖLÇÜSÜ ÜÇÜNDÜR */
        max-width: 350px; /* Əlavə olaraq, menyunun maksimum enini məhdudlaşdıra bilərsiniz */
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        z-index: 99;
    }

    .main-nav.active {
        left: 0; /* Açıldıqda görünür */
    }

    /* Menyu içindəki linklər */
    .nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 500;
        display: block;
        padding: 10px 0;
    }

    /* Menyu içindəki dil seçimi */
    .lang-dropdown.mobile {
        display: block; /* Mobil menyu içində görünür */
        position: static;
        margin-top: 30px;
    }

    .lang-dropdown.mobile .lang-current {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .lang-dropdown.mobile .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
    }

    .lang-dropdown.mobile .dropdown-content a {
        padding: 8px 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        margin-bottom: 5px;
    }

    /* Menyu içindəki sosial linklər */
    .nav-social-links {
        display: flex; /* Mobil menyu içində görünür */
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .nav-social-links a {
        font-size: 1.8rem;
    }

    /* Ümumi bölmələr */
    section {
        padding: 40px 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 10px auto 20px;
    }

    .section-title-wrapper h2 {
        font-size: 1.8rem;
    }

    .section-title-wrapper p {
        font-size: 1rem;
    }

    .about-content-wrapper {
        flex-direction: column;
    }
    .about-text {
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }

    /* Xidmət kartları */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        min-height: auto;
    }

    /* Avtopark */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sifariş Formu */
    .phone-input-group {
        flex-direction: column;
        gap: 15px;
    }
    .custom-select-wrapper {
        width: 100%;
    }

    .selected-option {
        justify-content: flex-start;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-col {
        min-width: auto;
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info,
    .social-icons {
        justify-content: center;
        align-items: center;
    }
}

/* --- Ən kiçik ekranlar üçün əlavə düzəliş --- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Süzülərək Yüklənmə Effekti üçün */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}