/* ======================= 1. Ümumi Sıfırlama və Tema Dəyişkənləri ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Yeni, daha peşəkar Mavi (Primary) */
    --primary-color: #0077B6;    
    --accent-color: #F8961E;     /* Narıncı (İkinci Vurğu) */
    --white-color: #ffffff;

    /* AÇIQ TEMA (DEFAULT) */
    --bg-main: #ffffff;           
    --bg-secondary: #f4f6f9;      /* Daha yumşaq boz fon */
    --text-primary: #1f2937;      
    --text-secondary: #6b7280;    
    --border-color: #e5e7eb;      
    --header-shadow: rgba(0,0,0,0.08); 
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.05);
}

/* DARK TEMA TƏTBİQ EDİLİR */
body.dark-theme {
    --bg-main: #171717;           
    --bg-secondary: #262626;      
    --text-primary: #e5e5e5;      
    --text-secondary: #a3a3a3;    
    --border-color: #404040;      
    --header-shadow: rgba(255, 255, 255, 0.05); 
    --card-bg: #262626;
    --card-shadow: rgba(255, 255, 255, 0.03);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.7; 
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden; /* Yatay kaymayı önler */
}

/* Sayfa İçeriğini Ortalar ve Genişliği Belirler */
.container {
    width: 90%;
    max-width: 1280px; 
    margin: 0 auto;
    padding: 0 15px; /* Kenar boşluğu */
}

/* ======================= 2. TIPOGRAFIYA ve Genel Stil ======================= */
h1, h2, h3, h4 {
    font-weight: 800; 
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.5em;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.2rem; }

.lead-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
}

.section-title {
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Vurğu Renkleri */
.logo-text-highlight,
.page-title strong,
.section-title strong,
.read-more,
.contact-link {
    color: var(--primary-color);
}
a {
    text-decoration: none;
    transition: color 0.3s;
}

/* Yardımcı Sınıflar */
.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.text-center { text-align: center; }
.text-white { color: var(--white-color) !important; }
.mt-3 { margin-top: 20px; }


/* ======================= 3. HEADER ve NAVIGASYON ======================= */
.main-header {
    background-color: var(--bg-main);
    box-shadow: 0 4px 12px var(--header-shadow); 
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { 
    font-size: 2rem; 
    font-weight: 800;
    color: var(--text-primary);
}

/* Navigasyon (Masaüstü) */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; 
}
.main-nav a {
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
    display: inline-block;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}

/* Dropdown Menü (Stil için header.html'deki yapıyı kullanır) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--header-shadow);
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 0;
}
.dropdown-menu a {
    padding: 8px 15px;
    display: block;
}
.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}
.dropdown-menu a::after {
    display: none;
}

/* Header Aksiyonları (Tema + Buton) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Tema Düğmesi Stili (Daha belirgin) */
.theme-switch { display: none; }
.toggle-container {
    cursor: pointer;
    width: 50px;
    height: 25px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: background-color 0.3s;
}
.theme-icon {
    position: absolute;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
}
.sun { left: 5px; opacity: 1; transition: opacity 0.3s; }
.moon { right: 5px; opacity: 0; transition: opacity 0.3s; }
.ball {
    width: 21px;
    height: 21px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.theme-switch:checked + .toggle-container .ball {
    transform: translateX(25px);
}
.theme-switch:checked + .toggle-container .sun {
    opacity: 0;
}
.theme-switch:checked + .toggle-container .moon {
    opacity: 1;
}
/* Dark theme için top rengi değişimi */
body.dark-theme .theme-switch:checked + .toggle-container .ball {
    background-color: var(--accent-color);
}

/* ======================= 4. BUTONLAR (Buttons) ======================= */
.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px; 
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* Primary Buton (Mavi) */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
}
.btn-primary:hover {
    background-color: #005f96;
    border-color: #005f96;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 119, 182, 0.4);
}

/* Secondary Buton (Kontur) */
.btn-secondary {
    background-color: transparent;
    border-color: var(--text-secondary);
    color: var(--text-primary);
    box-shadow: none;
}
.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px var(--header-shadow);
}

/* Accent Buton (Narıncı - CTA için) */
.btn-accent { 
    background-color: var(--accent-color);
    color: var(--text-primary); /* veya tünd tema için white-color */
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(248, 150, 30, 0.4);
}
.btn-accent:hover {
    background-color: #d88017;
    border-color: #d88017;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 150, 30, 0.5);
}


/* ======================= 5. SECTION'LAR ve Layout ======================= */
section {
    padding: 100px 0; 
    transition: background-color 0.3s;
}

/* HERO SECTION */
.hero-section {
    background-color: var(--bg-secondary);
    padding: 150px 0;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-text {
    flex: 1;
}
.hero-image {
    flex: 1;
    text-align: right;
}
.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--bg-main);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.about-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    background-color: var(--card-bg);
}
.about-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--card-shadow);
}
.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA SECTION (Hero ve Footer arasındaki önemli çağrı) */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}
.cta-section .section-title, .cta-section .section-subtitle {
    color: var(--white-color);
}
.cta-section .section-subtitle {
    margin-bottom: 30px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
}
.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
    display: inline-block;
}


/* ======================= 6. HİZMET SAYFALARI (Services Pages) ======================= */

/* Hizmet Hero Başlığı */
.page-hero {
    background-color: var(--bg-secondary);
    padding: 100px 0 70px;
}
.page-title {
    font-size: 3rem;
}

/* Hizmet Kartları (xidmetler.html) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.service-card {
    padding: 30px;
    border-radius: 12px; 
    box-shadow: 0 8px 20px var(--card-shadow);
    transition: all 0.3s;
    background-color: var(--card-bg);
    text-decoration: none;
    color: var(--text-secondary);
    display: block; /* Kartın tamamı tıklanabilir */
    border-left: 5px solid transparent; /* Vurğu için hazırlık */
}
.service-link:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color); /* Hover Vurğu */
    transform: translateY(-8px);
    color: var(--text-primary);
}
.service-link:hover p {
    color: var(--text-secondary); /* Hover'da açıklama rengi değişmesin */
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}
.service-card h4 {
    margin-top: 0;
    color: var(--text-primary);
}
.read-more {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}
.service-disabled {
    opacity: 0.6; /* Tezliklə olanları solğun göstər */
    cursor: default;
}

/* Hizmet Detayları (branding.html, consult.html vb.) */
.service-details {
    padding: 80px 0;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.detail-item {
    border-left: 6px solid var(--primary-color); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow);
    background-color: var(--card-bg);
}
.detail-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}


/* ======================= 7. FOOTER ======================= */
.main-footer {
    background-color: var(--bg-secondary);
    padding-bottom: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
}
.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transform: translateX(5px);
}
.footer-bottom {
    padding: 15px 0;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.language-switch a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
}
.language-switch .current-lang {
    color: var(--primary-color);
    font-weight: 700;
}


/* ======================= 8. MOBİL UYUMLULUK (Responsiveness) ======================= */

/* Tablet ve Büyük Mobil Cihazlar (768px'den küçük) */
@media (max-width: 1024px) {
    .hero-content { 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-image { 
        order: -1; 
        margin-bottom: 30px;
        text-align: center;
    }
    .hero-text h1 { font-size: 3.2rem; }
    .hero-ctas { 
        justify-content: center; 
    }
}

/* Mobil Cihazlar (768px'den küçük) */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* HAMBURGER DÜYMƏSİ - YENİ DİZAYN */
#menu-toggle {
    display: none; /* Masaüstündə gizli */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
    margin-left: 20px; /* Logodan sağa doğru 20px uzaqlaşdırır */
    transition: all 0.3s ease;
}

#menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* KLİKLƏNƏNDƏ "X" EFFEKTİ */
#menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

#menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobildə düyməni göstər */
@media (max-width: 768px) {
    #menu-toggle {
        display: flex;
    }
}
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .main-nav {
        position: fixed;
        top: 75px; 
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-main);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        padding-top: 20px;
        box-shadow: inset 0 5px 10px var(--header-shadow);
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        padding: 0 30px;
    }
    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }
    .main-nav a {
        padding: 15px 0;
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .main-nav a::after { display: none; }
    .header-actions { margin-left: auto; }
    .contact-btn { display: none; } 

    /* Dropdown Menü (Mobilde açılır) */
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        border: none;
        background-color: var(--bg-secondary);
        padding: 0 0 0 20px;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    /* (JS ile dropdown:active sınıfı
     eklenebilir) */


    /* Hero */
    .hero-section { padding: 80px 0 40px; }
    .hero-ctas { flex-direction: column; }
    .btn-lg { width: 100%; }
    
    /* Grid'ler */
    .about-grid, .services-grid, .details-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Footer */
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }
    .footer-col ul { 
        padding-top: 10px;
        text-align: center;
    }
    .footer-col ul a { 
        padding: 3px 0; 
        display: inline-block;
    }
    .footer-flex { 
        flex-direction: column; 
        gap: 10px; 
    }
}

/* ======================= KURSOR PROBLEMLƏRİNİN HƏLLİ ======================= */
/* Bu kod, bütün əsas elementlərdəki xüsusi kursoru default vəziyyətə sıfırlayır. */

html, body, .hero-section, .main-header, section {
    cursor: default !important;
}

/* Kursoru linklərin üzərində saxlayır (Əgər sizdə hər şey pointer deyilsə) */
a, button, .btn, .menu-toggle, .toggle-container {
    cursor: pointer !important;
}

/* =========================================================================== */

/* style.css FAYLININ ƏN SONUNA ƏLAVƏ EDİN */

/* Bütün kursor təyinatlarını ləğv edir */
* {
    cursor: default !important;
}

/* Kursorları link və düymələrdə bərpa edir */
a, button, .btn, .menu-toggle, .toggle-container, [onclick] {
    cursor: pointer !important;
}

/* Headerdəki artıq butonu hər yerdə gizlət */
.header-actions .whatsapp-btn {
    display: none !important;
}

.main-header.header-scrolled {
    padding: 10px 0;
    background: var(--bg-main);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

body.no-scroll {
    overflow: hidden;
}

/* PC (Masaüstü) versiyada hamburger düyməsini tamamilə gizlət */
@media (min-width: 769px) {
    #menu-toggle {
        display: none !important; /* PC-də bu düymə görünməyəcək */
    }
    
    .main-nav {
        display: block !important; /* PC-də menyu həmişə açıq olsun */
    }
}

/* Mobil versiyada hamburger düyməsi görünsün */
@media (max-width: 768px) {
    #menu-toggle {
        display: flex !important; /* Yalnız mobildə aktivləşir */
    }
    
    .main-nav {
        display: none; /* Mobildə düyməyə basana qədər gizli qalır */
    }

    .main-nav.active {
        display: block !important;
    }
}

/* SİZİN MÖVCUD CSS KODLARINIZIN HAMISI BURADA QALIR... */
/* (Bütün kursor, rəng və layout tənzimləmələri olduğu kimi saxlanılmalıdır) */

/* === YENİ ƏLAVƏLƏR (Sona əlavə edin) === */

/* Header-in hərəkət etməməsi üçün (Fixed Header) */
.main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

/* Səhifənin header altında qalmaması üçün */
body {
    padding-top: 80px; 
}

/* Yuxarı çıx düyməsi stili */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer !important;
    transition: 0.3s;
}

#backToTop:hover {
    transform: translateY(-5px);
    background-color: var(--accent-color);
}

/* Şəkil konteyneri üçün animasiya (itmişdisə bərpa olundu) */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--premium-shadow);
    transition: all 0.5s ease;
}

.img-container:hover .responsive-img {
    transform: scale(1.05);
}

/* Logo Animasiyası */
.logo {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Hamar və elastik keçid */
}

.logo:hover {
    transform: scale(1.1); /* 10% böyüdür */
}

  /* --- 1. QLOBAL VƏ PREMİUM EFFEKTLƏR --- */
        :root {
            --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            --hover-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        body { padding-top: 80px; }

        /* Şəkil Konteynerləri */
        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            box-shadow: var(--premium-shadow);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            background: #fff;
            width: 100%;
        }

        .img-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--hover-shadow);
        }

        .responsive-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .img-container:hover .responsive-img {
            transform: scale(1.1);
        }

        /* --- 2. XÜSUSİ KOMPONENTLƏR --- */
        
        /* Yuxarı Çıx Düyməsi */
        #backToTop {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1500;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            cursor: pointer !important;
            transition: 0.3s;
        }

        #backToTop:hover {
            transform: translateY(-5px);
            background-color: var(--accent-color);
        }

        /* İnstaqram Şəkil Effekti */
        .insta-profile-img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
            padding: 5px;
            margin: 0 auto;
            box-shadow: var(--premium-shadow);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
            display: block;
        }

        .insta-profile-img:hover {
            transform: scale(1.15);
            box-shadow: var(--hover-shadow);
        }

        /* --- 3. ANİMASİYALAR --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .hero-text, .hero-image { animation: fadeInUp 1s ease-out; }

        /* --- 4. RESPONSİVE (MOBİL) --- */
        @media (max-width: 992px) {
            .about-grid { grid-template-columns: 1fr !important; gap: 50px !important; }
            .about-img-container { max-width: 400px; margin: 0 auto; }
            .about-text { text-align: center; }
            .about-text h2 { text-align: center !important; font-size: 2.2rem; }
            .about-features-grid { grid-template-columns: 1fr !important; }
        }

        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .hero-content {
                display: flex !important;
                flex-direction: column !important;
                text-align: center;
                gap: 40px;
            }
            .hero-image { order: -1; max-width: 320px; margin: 0 auto; }
            .hero-text h1 { font-size: 2.2rem !important; }
            .btn-lg { width: 100%; margin-bottom: 10px; }
            .stats-section .about-grid { 
                display: grid !important; 
                grid-template-columns: 1fr !important; 
            }
        }

        /* Əlaqə Butonlarının Dizaynı */
.contact-methods-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    color: var(--text-primary);
}

/* Hər buton üçün hover effekti */
.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Telefon butonu */
.phone-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* WhatsApp butonu */
.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}
.whatsapp-btn:hover {
    background-color: #25D366;
    color: white;
}

/* Email butonu */
.email-btn:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Mobildə butonların tam en tutması üçün */
@media (max-width: 600px) {
    .contact-methods-grid {
        flex-direction: column;
        padding: 0 20px;
    }
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

.detail-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* ==========================================================================
   SONA ƏLAVƏ EDİLƏN PREMİUM DROPDOWN (KÖHNƏ KODLARI ƏZİR)
   ========================================================================== */

@media (min-width: 993px) {
    /* Köhnə dropdown-un təsirini sıfırlayırıq */
    .main-nav .dropdown {
        position: relative !important;
    }

    /* Yeni stil və mərkəzləmə */
    .main-nav .dropdown-menu {
        display: block !important; /* Həmişə DOM-da saxla, opacity ilə idarə et */
        position: absolute !important;
        top: 120% !important; /* Bir az aşağıda başla */
        left: 50% !important; /* Tam mərkəz nöqtəsi */
        transform: translateX(-50%) translateY(15px) !important; /* Tam simmetriya və sürüşmə */
        background-color: var(--card-bg) !important;
        min-width: 260px !important;
        padding: 15px 0 !important;
        border-radius: 15px !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important; /* Daha dərin kölgə */
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        z-index: 9999 !important;
    }

    /* Hover effekti */
    .main-nav .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        top: 100% !important; /* Yuxarı süzülərək gəlir */
        transform: translateX(-50%) translateY(0) !important;
    }

    /* Alt linklərin stili */
    .main-nav .dropdown-menu li {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-nav .dropdown-menu li a {
        display: block !important;
        padding: 12px 25px !important;
        color: var(--text-primary) !important;
        font-weight: 500 !important;
        font-size: 0.95rem !important;
        transition: all 0.3s ease !important;
        text-align: left !important;
        border: none !important;
    }

    /* Link hover (Premium sağa sürüşmə) */
    .main-nav .dropdown-menu li a:hover {
        background-color: rgba(0, 119, 182, 0.08) !important;
        color: var(--primary-color) !important;
        padding-left: 35px !important; /* Sağa süzülmə */
    }

    /* Üstdəki göy dekorativ xətt */
    .main-nav .dropdown-menu::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 4px !important;
        background: var(--primary-color) !important;
        border-radius: 15px 15px 0 0 !important;
    }
}

/* --- QLOBAL AKKORDEON SİSTEMİ (Bütün səhifələr üçün) --- */
.clickable-service {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    height: auto;
    margin-bottom: 20px;
}

.clickable-service:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--card-shadow);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-state {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.info-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

/* Aktiv qutu üçün stillər */
.detail-item.active .info-content {
    max-height: 1000px;
    opacity: 1;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
}

.detail-item.active .icon-state {
    transform: rotate(45deg);
    color: var(--primary-color);
}