

:root {
    --primary-color: #F8B008;
    --primary-dark: #E09D00;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 80px; /* Navbar hündürlüyü üçün */
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Empty State */
.empty-state {
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brand-item {
        width: 130px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .brands-track {
        gap: 20px;
    }
    
    .brand-item {
        width: 120px;
        height: 80px;
        padding: 12px;
    }
    
    .brand-logo {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .brand-item {
        width: 110px;
        height: 75px;
    }
    
    .brands-track {
        gap: 15px;
    }
}
/*-----------brands bitdi */
/* Navbar Stil */
/* Dropdown Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle::after {
    display: none;
}

.dropdown-submenu:hover > .dropdown-submenu-content {
    display: block;
    left: 100%;
    top: 0;
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -1px;
    background: white;
    min-width: 200px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

@media (max-width: 991.98px) {
    .dropdown-submenu-content {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding-left: 1.5rem;
    }
    
    .dropdown-submenu .dropdown-toggle .fa-chevron-right {
        transform: rotate(90deg);
    }
}

/* Navbar active link styles */
.nav-link.active {
    color: var(--primary-color) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Dropdown menu animations */
.dropdown-menu {
    animation: fadeIn 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(248, 176, 8, 0.1);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Sağ Tərəf Düzeni */
.navbar .ms-auto {
    margin-left: auto !important;
}

/* Dil Dəyişdirici - Yeni Stil */
.language-dropdown .dropdown-toggle {
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    background: white;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-toggle:hover {
    border-color: var(--primary-color);
    background-color: rgba(248, 176, 8, 0.05);
}

.language-dropdown .dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(248, 176, 8, 0.25);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

.language-code {
    font-size: 0.9rem;
    font-weight: 600;
}

.language-dropdown .dropdown-menu {
    min-width: 120px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
}

.language-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.language-dropdown .dropdown-item:hover {
    background-color: rgba(248, 176, 8, 0.1);
    color: var(--primary-color);
}

/* Konsultasiya Butonu - OVAL */
.consultation-btn-oval {
    background: linear-gradient(135deg, var(--primary-color), #E09D00);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(248, 176, 8, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px;
}

.consultation-btn-oval::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E09D00, var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.consultation-btn-oval:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(248, 176, 8, 0.4);
    color: white;
}

.consultation-btn-oval:hover::before {
    opacity: 1;
}

.consultation-btn-oval:active {
    transform: translateY(-1px) scale(1.02);
}

.consultation-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.consultation-btn-oval:hover .consultation-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

.consultation-text {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .d-flex.ms-auto {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    .language-dropdown {
        margin-right: 1rem !important;
    }
    
    .consultation-btn-oval {
        padding: 0.5rem 1.25rem;
    }
}

/* Animation for button hover effect */
@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.consultation-btn-oval:hover .fa-phone-alt {
    animation: phoneRing 0.5s ease;
}

/* Dropdown menu positioning */
.dropdown-menu-end {
    right: 0;
    left: auto;
}
/* Alternativ Oval Buton - Daha yumşaq görünüş */
.consultation-btn-oval-alt {
    background: var(--primary-color);
    color: white;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 46px;
    box-shadow: 0 4px 15px rgba(248, 176, 8, 0.2);
}

.consultation-btn-oval-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.consultation-btn-oval-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 176, 8, 0.3);
    border-color: var(--primary-dark);
}

.consultation-btn-oval-alt:hover::before {
    left: 100%;
}

.consultation-btn-oval-alt .consultation-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.consultation-btn-oval-alt:hover .consultation-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}



/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}








.about-section {
    padding: 100px 0;
    background: #ffffff;
}

/* IMAGE */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #0d6efd;
    color: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    text-align: center;
}

.experience-badge .years {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.experience-badge .text {
    font-size: 13px;
    opacity: 0.9;
}

/* CONTENT */
.about-content {
    padding-left: 30px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: #0d6efd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}


















/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 176, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-dark);
}


/* Reference Cards */
.reference-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.reference-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.client-position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.rating {
    color: #FFD700;
}

.reference-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reference-footer {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(248, 176, 8, 0.25);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

/* Primary Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(248, 176, 8, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(248, 176, 8, 0.3);
}