/**
 * Custom CSS for Temir Qrupu Website
 * Dark Theme with Gold/Yellow Headers
 */

/* Load Poppins from Google Fonts so it works even if not installed locally */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Dark Theme - Global Styles */
body {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
}

/* Əlaqə səhifəsi: form + əlaqə vasitələri yan-yana */
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.contact-row .col-md-8,
.contact-row .col-md-4 {
    float: none;
}

.contact-row .col-md-8 {
    width: 60%;
}

.contact-row .col-md-4 {
    width: 40%;
}

@media (max-width: 767px) {
    .contact-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-row .col-md-8,
    .contact-row .col-md-4 {
        width: 100%;
    }
}

.footer-logo img {
    max-width: 40%;              /* təxminən 2 dəfə kiçik logo */
    height: auto;
}

/* Rowfooter konteynerini də tam qara, marginsiz et */
.rowfooter {
    background: #000000 !important;
    margin: 0;
    padding: 0;
}

/* Footer - Partners strip */
.footer-partners-section {
    background-color: #000000;
    padding: 40px 0;
    min-height: 200px;
}

.footer-partners-title {
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.footer-partners-image-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    background-color: #111111;
    overflow: hidden;
}

.footer-partners-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    pointer-events: none;
}

.footer-partners-logos {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 40px;
}

.footer-partner-logo {
    width: 90px;
    height: 90px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Footer 4-column layout */
.footer-infobox {
    padding: 40px 0 30px;
}

/* Şirkət haqqında blokunu böyüt */
.footer-logo img {
    max-width: 220px;
}

.footer-infobox h4 {
    font-size: 18px;
    letter-spacing: 1.2px;
    color: #CDB969 !important;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #CDB969 !important;
}

.footer-about,
.footer-menu-block,
.footer-services,
.footer-contact {
    text-align: left;
}

/* Kampaniyalar grid */
.campaigns-grid-section {
    margin: 30px 0 40px;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1024px;
    margin: 0 auto;
}

.campaign-item {
    position: relative;
    overflow: visible;
    border-radius: 16px;
    background: transparent;
    isolation: isolate;
    z-index: 1;
}

.campaign-image-wrap {
    position: relative;
    overflow: visible;
    border-radius: 20px;
}

.campaign-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: scale(1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Kampaniya kartları üçün çərçivə ətrafında incə impuls işıq effekti */
.campaign-image-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    box-shadow: 
        0 0 8px rgba(255, 215, 0, 0.5),
        0 0 16px rgba(255, 215, 0, 0.3),
        0 0 24px rgba(255, 215, 0, 0.1);
}

.campaign-item:hover .campaign-image-wrap::before {
    opacity: 1;
    animation: pulseFrame 1.2s ease-out infinite;
}

.campaign-item:hover .campaign-image-wrap img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}

@keyframes pulseFrame {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 
            0 0 8px rgba(255, 215, 0, 0.5),
            0 0 16px rgba(255, 215, 0, 0.3),
            0 0 24px rgba(255, 215, 0, 0.1);
    }
    50% {
        transform: scale(1.04);
        opacity: 0.7;
        box-shadow: 
            0 0 12px rgba(255, 215, 0, 0.7),
            0 0 24px rgba(255, 215, 0, 0.5),
            0 0 36px rgba(255, 215, 0, 0.3);
    }
    100% {
        transform: scale(1.08);
        opacity: 0;
        box-shadow: 
            0 0 16px rgba(255, 215, 0, 0.9),
            0 0 32px rgba(255, 215, 0, 0.7),
            0 0 48px rgba(255, 215, 0, 0.5);
    }
}


@media (max-width: 991px) {
    .campaigns-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .campaigns-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Kampaniyalar səhifəsi hero başlıq */
.page_head.kampaniyalar-head {
    position: relative;
    background-image: url('../images/default-header-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
}

.page_head.kampaniyalar-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* şəffaf tünd overlay */
}

.page_head.kampaniyalar-head .page_head_bg {
    background: transparent;
}

.page_head.kampaniyalar-head .breadcrumb {
    display: none;
}

/* Bütün səhifə başlıqları üçün h1 stili */
.page_head .skt-page-title h1 {
    font-size: 42px;
    color: #CDB969 !important;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(205, 185, 105, 0.5);
}

/* Əlaqə səhifəsi hero başlıq */
.page_head.contact-head {
    position: relative;
    background-image: url('../images/default-header-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
}

.page_head.contact-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page_head.contact-head .page_head_bg {
    background: transparent;
}

.page_head.contact-head .breadcrumb a,
.page_head.contact-head .breadcrumb {
    color: #f0f0f0 !important;
}

/* Əlaqə səhifəsində breadcrumb ümumiyyətlə görünməsin */
.page_head.contact-head .breadcrumb {
    display: none;
}

/* Default header image + ölçü for all page headers (non-home) */
.page_head {
    position: relative;
    background-image: url('../images/default-header-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 160px;
    text-align: center;
    height: 220px !important;
}


/* Daxili Kredit səhifəsi hero başlıq */
.page_head.daxili-kredit-head {
    position: relative;
    background-image: url('../images/default-header-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page_head.daxili-kredit-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page_head.daxili-kredit-head .page_head_bg {
    background: transparent;
}

.page_head.daxili-kredit-head .breadcrumb {
    display: none;
}

/* 404 səhifəsi stil */
.error-404-section {
    padding: 100px 0;
    text-align: center;
}

.error-404-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-404-number {
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.error-404-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.error-404-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.error-404-actions {
    display: flex;
    justify-content: center;
}

.error-404-btn {
    padding: 12px 28px;
}

/* Əlaqə səhifəsi - əsas layout */
.contact-form-section,
.contact-info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%) !important;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 30px 30px 25px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-form-section p {
    color: #cccccc !important;
    margin-bottom: 25px;
}

.contact-form-section .form-group label {
    color: #CDB969 !important;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form-section input,
.contact-form-section textarea {
    background: #121212 !important;
    border: 1px solid #444444 !important;
    color: #ffffff !important;
    border-radius: 8px;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    border-color: #CDB969 !important;
    box-shadow: 0 0 0 1px rgba(205, 185, 105, 0.4);
}

.contact-form-section button.wpcf7-submit {
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%) !important;
    border-radius: 30px;
    padding: 12px 32px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-section button.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Sağ kontakt infoları */
.contact-info-box {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CDB969, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.contact-icon i {
    color: #000000 !important;
    font-size: 18px;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-text p {
    margin-bottom: 2px;
    color: #dddddd !important;
}

.social-section {
    margin-top: 20px;
}

.social-section h4 {
    margin-bottom: 10px;
}

/* MENU column: alt-alta, dairə bullet ilə */
.footer-menu-block ul.footmenu {
    list-style-type: disc;
    padding-left: 14px;
    margin: 10px 0 0;
    text-align: left;
}

.footer-menu-block ul.footmenu li {
    margin-bottom: 6px;
    display: list-item;
    width: 100%;
    white-space: normal;
}

.footer-menu-block ul.footmenu li a {
    font-size: 16px;
    color: #CDB969 !important;
    padding: 0;
    border-bottom: none;
    text-align: left;
}

.footer-menu-block ul.footmenu li a::before {
    display: none;
}

/* XİDMƏTLƏR column: alt-alta, bulletsiz */
.footer-services ul.footmenu {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
    text-align: left;
}

.footer-services ul.footmenu li {
    margin-bottom: 6px;
}

.footer-services ul.footmenu li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #CDB969 !important;
    padding: 0;
    border-bottom: none;
    text-align: left;
}

/* Footer XİDMƏTLƏR başlığı da eyni stilə yaxın olsun */
.footer-services h4 {
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-contact p {
    font-size: 16px;
    color: #CDB969 !important;
}

/* Ensure footer uses 4 equal columns */
.footer-infobox .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.footer-infobox .col-md-3 {
    width: 25%;
    float: none;
}

/* Birinci sütun (logo + mətn) bir az enli olsun ki hündürlük azalsın */
.footer-infobox .col-md-3:first-child {
    width: 30%;
}

.footer-infobox .col-md-3:nth-child(n+2) {
    width: 23.3%;
}

@media (max-width: 991px) {
    .footer-infobox .row {
        display: block;
    }
    .footer-infobox .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Mobil üçün əlavə uyğunluq (telefon ekranları) */
@media (max-width: 767px) {
    .footer-infobox {
        padding: 20px 15px;
    }

    .footer-infobox h4 {
        font-size: 16px;
    }

    .footer-about p,
    .footer-menu-block ul.footmenu li a,
    .footer-services ul.footmenu li a,
    .footer-contact p {
        font-size: 14px;
    }

    .footer-partners-logos {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }

    .footer-partner-logo {
        width: 70px;
        height: 70px;
    }
}

/* Main Container */
.main-container,
.layer_wrapper {
    background-color: #000000 !important;
}

/* Bütün səhifələrdə header şəffaf və hero üzərində olsun */
.header_wrap.layer_wrapper {
    background-color: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header_wrap .topmenu-bar {
    background: transparent !important;
    box-shadow: none !important;
}

.header_wrap .logo {
    background: transparent !important;
}

/* Headers - Gold/Yellow Theme */
h1, h2, h3, h4, h5, h6 {
    color: #CDB969 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.page-title h1 {
    color: #CDB969 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.headingseperator h3 {
    color: #CDB969 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Navigation - Dark Theme */
.header_wrap {
    background: linear-gradient(180deg, #00000000 0%, #0a0a0a00 100%) !important;
    border-bottom: none !important; /* menyu altında sarı xətt olmasın */
    position: relative;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.header_wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #CDB969, transparent);
    animation: headerGlow 3s ease-in-out infinite;
}

/* Kampaniyalar səhifəsində menyu header-i şəffaf olsun */
.header_wrap.kampaniyalar-header {
    background: transparent !important;
    box-shadow: none !important;
}

.header_wrap.kampaniyalar-header::before {
    display: none;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#topmenu ul li {
    position: relative;
    margin: 0 15px;
}

#topmenu ul li a {
    color: #ffffff !important;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

#topmenu ul li a::before {
    display: none !important; /* sarı xətt ləğv olundu */
}

#topmenu ul li a:hover {
    color: #CDB969 !important;
    transform: translateY(-2px);
}

#topmenu ul li a:hover::before {
    width: 100%;
}

/* Desktop dropdown sub-menu - solid dark background */
#topmenu ul.sub-menu,
#topmenu ul li ul.sub-menu {
    background-color: #000000 !important;
    border: 1px solid #333333;
}

#topmenu ul.sub-menu li a,
#topmenu ul li ul.sub-menu li a {
    background-color: #000000 !important;
    color: #ffffff !important;
}

#topmenu ul.sub-menu li a:hover,
#topmenu ul li ul.sub-menu li a:hover {
    background-color: #111111 !important;
    color: #CDB969 !important;
}

#topmenu ul li.current-menu-item a {
    color: #CDB969 !important;
}

#topmenu ul li.current-menu-item a::before {
    width: 100%;
    background: linear-gradient(90deg, #CDB969, #FFA500);
}

/* Logo/Brand Enhancement */
.logo h1 {
    background: linear-gradient(45deg, #CDB969, #FFA500, #CDB969);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGradient 3s ease-in-out infinite;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes logoGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Footer - Dark Theme */
#footer {
    background: #000000 !important;
    color: #CDB969 !important;
    border-top: none;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 185, 105, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-about h4,
.footer-contact h4,
.footer-services h4 {
    color: #CDB969 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.footer-section p,
.footer-section li {
    color: #cccccc !important;
    transition: color 0.3s ease;
}

.footer-section:hover p,
.footer-section:hover li {
    color: #ffffff !important;
}

.footmenu li a {
    color: #cccccc !important;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid transparent;
    position: relative;
}

.footmenu li a::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #CDB969;
    opacity: 0;
    transition: all 0.3s ease;
}

.footmenu li a:hover {
    color: #CDB969 !important;
    padding-left: 15px;
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.footmenu li a:hover::before {
    left: 0;
    opacity: 1;
}

/* Copyright Section */
.copyright {
    background: #000000 !important;
    color: #CDB969 !important;
    border-top: 1px solid rgba(205, 185, 105, 0.2);
    padding: 4px 0;          /* çox az hündürlük */
    text-align: center;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CDB969, transparent);
}

/* Social Icons Enhanced */
.social-icons {
    margin-top: 25px;
}

.social-icons a {
    background: none !important;
    border: none !important;
    color: #ffffff !important;   /* normalda ağ */
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    border-radius: 0;
    transition: color 0.3s ease;
    font-size: 24px;              /* təxminən 1.5x böyük ikonlar */
    position: relative;
    overflow: visible;
}

.social-icons a::before {
    content: none;
}

.social-icons a:hover {
    color: #000000 !important;   /* hoverdə qara */
}

.social-icons a:hover::before {
    content: none;
}

/* Hero right vertical social icons - dairə və hover effektləri olmasın */
.hero-social-vertical a {
    background: none !important;
    border: none !important;
    color: #ffffff !important;   /* normalda ağ */
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    border-radius: 0;
    transition: color 0.3s ease;
    font-size: 24px;              /* təxminən 1.5x böyük ikonlar */
}

.hero-social-vertical a:hover {
    color: #000000 !important;   /* hoverdə qara */
}

.icon-tiktok {
    width: 32px;                 /* FA 24px ikonlarından bir az böyük olsun ki, optik olaraq eyni görünsün */
    height: 32px;
    fill: #ffffff;               /* normalda ağ */
}

.hero-social-vertical a:hover .icon-tiktok,
.social-icons a:hover .icon-tiktok {
    fill: #000000;               /* hoverdə qara */
}

/* Font Awesome sosial ikonların ölçüsü və rəngi birbaşa i elementinə tətbiq olunsun */
.hero-social-vertical a i,
.social-icons a i {
    font-size: 24px !important;  /* 1.5x böyük */
    color: #ffffff !important;   /* normalda ağ */
}

.hero-social-vertical a:hover i,
.social-icons a:hover i {
    color: #000000 !important;   /* hoverdə qara */
}

/* Footer Contact Info */
.contact-info-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.5s ease;
}

.contact-info-item:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%) !important;
    border-color: #CDB969 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.contact-info-item:hover::before {
    left: 100%;
}

.contact-info-item h4 {
    color: #CDB969 !important;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-item p {
    color: #cccccc !important;
    margin: 5px 0;
}

.contact-info-item i {
    color: #CDB969 !important;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Footer Logo/Brand */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #CDB969 !important;
    font-size: 34px; /* bir az böyük */
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4); }
}

.footer-logo p {
    color: #888888 !important;
    font-style: italic;
}

/* Footer Bottom Section */
.footer-bottom {
    background: #000000 !important;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    color: #666666 !important;
    margin: 0;
    font-size: 14px;
}

/* Back to Top Button in Footer */
.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%) !important;
    color: #000000 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: #000000 !important;
}

/* Footer Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.footer-newsletter h4 {
    color: #CDB969 !important;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-newsletter p {
    color: #cccccc !important;
    margin-bottom: 20px;
}

.footer-newsletter input {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 25px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: #CDB969 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.footer-newsletter button {
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%) !important;
    color: #000000 !important;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Service Boxes - Dark Theme */
.services-box-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333333;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.services-box-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.6s ease;
}

.services-box-content:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    border-color: #CDB969;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.services-box-content:hover::before {
    left: 100%;
}

.services-contenttext h4 a {
    color: #CDB969 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.services-contenttext h4 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #CDB969, #FFA500);
    transition: all 0.3s ease;
}

.services-box-content:hover .services-contenttext h4 a::after {
    width: 100%;
}

.services-contenttext p {
    color: #cccccc !important;
    transition: color 0.3s ease;
}

.services-box-content:hover .services-contenttext p {
    color: #ffffff !important;
}

.skt-services-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.skt-services-image img {
    transition: all 0.5s ease;
    filter: brightness(0.8);
}

.services-box-content:hover .skt-services-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.skt-services-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-box-content:hover .skt-services-image::before {
    opacity: 1;
}

/* Project Boxes - Dark Theme */
.project-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333333;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.project-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.6s ease;
}

.project-box:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    border-color: #CDB969;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-10px) scale(1.02);
}

.project-box:hover::before {
    right: 100%;
}

.projects-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 250px;
}

.projects-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.8);
}

.project-box:hover .projects-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.projects-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-box:hover .projects-image::before {
    opacity: 1;
}

.projects-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.projects-content h4 {
    color: #CDB969 !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.projects-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.projects-content h3 a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.projects-content h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #CDB969, #FFA500);
    transition: all 0.3s ease;
}

.project-box:hover .projects-content h3 a::after {
    width: 100%;
}

.projects-content h3 a:hover {
    color: #CDB969 !important;
}

/* Project Overlay Effect */
.project-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-box:hover::after {
    opacity: 1;
}

/* Counter Boxes - Dark Theme */
.counter-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0);
}

.counter-box:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
    border-color: #CDB969;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-8px) scale(1.05);
}

.counter-box:hover::before {
    opacity: 1;
    transform: scale(1);
}

.counter-box h3 {
    color: #CDB969 !important;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.counter-box:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.counter-box p {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.counter-box:hover p {
    color: #CDB969 !important;
}

/* Counter Icon Animation */
.counter-box::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #CDB969, #FFA500);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.counter-box:hover::after {
    opacity: 0.3;
    transform: scale(1);
}

/* Pulse Animation for Counters */
@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.counter-box:hover h3 {
    animation: counterPulse 2s ease-in-out infinite;
}

/* Contact Form - Dark Theme */
.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form label {
    color: #CDB969 !important;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%) !important;
    border: 2px solid #444444 !important;
    color: #ffffff !important;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #CDB969 !important;
    background: linear-gradient(135deg, #333333 0%, #3a3a3a 100%) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888 !important;
    transition: color 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: transparent !important;
}

.contact-form button {
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%) !important;
    color: #000000 !important;
    font-weight: bold;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #CDB969 100%) !important;
    color: #000000 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.contact-form button:hover::before {
    width: 200%;
    height: 200%;
}

.contact-form button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Form Validation Enhanced */
.contact-form .is-valid {
    border-color: #00ff00 !important;
    background: linear-gradient(135deg, #1a2a1a 0%, #2a3a2a 100%) !important;
}

.contact-form .is-invalid {
    border-color: #ff6b6b !important;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%) !important;
}

.contact-form .valid-feedback {
    color: #00ff00 !important;
    font-size: 14px;
    margin-top: 5px;
}

.contact-form .invalid-feedback {
    color: #ff6b6b !important;
    font-size: 14px;
    margin-top: 5px;
}

/* Slider - Dark Theme */
.slide-caption {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.slide-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: slideShimmer 4s ease-in-out infinite;
}

@keyframes slideShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.slide-caption h2 {
    color: #CDB969 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.5);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.8); }
}

.slide-caption p {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.slide-caption .slide-btn {
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%) !important;
    color: #000000 !important;
    font-weight: bold;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.slide-caption .slide-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #CDB969 100%) !important;
    color: #000000 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.slide-caption .slide-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.slide-caption .slide-btn:hover::before {
    width: 200%;
    height: 200%;
}

/* About Section - Dark Theme */
.about-section {
    background-color: #000000 !important;
}

.about-section p {
    color: #cccccc !important;
}

/* Sarı Fəaliyyət istiqamətlərimiz kartı - bütün mətnlər qara olsun */
.home-about-yellow-card {
    background: #CDB969 !important;
    color: #000000 !important;
}

.home-about-yellow-card h4,
.home-about-yellow-card p,
.home-about-yellow-card li,
.home-about-yellow-card strong {
    color: #000000 !important;
}

.home-about-yellow-card ul {
    color: #000000 !important;   /* bullet rəngi də qara olsun */
}

/* Sections - Dark Theme */
.services-section,
.projects-section,
.contact-section {
    background-color: #000000 !important;
}

/* Links - Dark Theme */
a {
    color: #CDB969 !important;
    text-decoration: none;
}

a:hover {
    color: #FFA500 !important;
}

/* Buttons - Dark Theme */
button, .btn {
    background-color: #CDB969 !important;
    color: #000000 !important;
    border: none;
    font-weight: bold;
}

button:hover, .btn:hover {
    background-color: #FFA500 !important;
    color: #000000 !important;
}

/* Lists - Dark Theme */
ul, ol {
    color: #ffffff !important;
}

li {
    color: #ffffff !important;
}

/* Tables - Dark Theme */
table {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

th {
    background-color: #2a2a2a !important;
    color: #CDB969 !important;
}

td {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Form Elements - Dark Theme */
input, textarea, select {
    background-color: #2a2a2a !important;
    border: 1px solid #444444 !important;
    color: #ffffff !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #CDB969 !important;
    background-color: #333333 !important;
}

/* Cards - Dark Theme */
.card {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.card-header {
    background-color: #2a2a2a !important;
    color: #CDB969 !important;
    border-bottom: 1px solid #CDB969 !important;
}

.card-body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Breadcrumbs - Dark Theme */
.breadcrumb {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.breadcrumb-item {
    color: #cccccc !important;
}

.breadcrumb-item.active {
    color: #CDB969 !important;
}

/* Pagination - Dark Theme */
.page-link {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

.page-link:hover {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

.page-item.active .page-link {
    background-color: #CDB969 !important;
    border-color: #CDB969 !important;
    color: #000000 !important;
}

/* Alerts - Dark Theme */
.alert {
    border: 1px solid #333333 !important;
}

.alert-success {
    background-color: #1a2a1a !important;
    color: #00ff00 !important;
}

.alert-danger {
    background-color: #2a1a1a !important;
    color: #ff6b6b !important;
}

.alert-warning {
    background-color: #2a2a1a !important;
    color: #CDB969 !important;
}

.alert-info {
    background-color: #1a1a2a !important;
    color: #6bb6ff !important;
}

/* Modal - Dark Theme */
.modal-content {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.modal-header {
    background-color: #2a2a2a !important;
    border-bottom: 1px solid #CDB969 !important;
}

.modal-title {
    color: #CDB969 !important;
}

.modal-body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Dropdown - Dark Theme */
.dropdown-menu {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.dropdown-item {
    color: #ffffff !important;
}

.dropdown-item:hover {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

/* Navbar - Dark Theme */
.navbar {
    background-color: #000000 !important;
    border-bottom: 2px solid #CDB969 !important;
}

.navbar-brand {
    color: #CDB969 !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover {
    color: #CDB969 !important;
}

/* Sidebar - Dark Theme */
.sidebar {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.sidebar h4 {
    color: #CDB969 !important;
}

/* Content Sections - Dark Theme */
.content-section {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.content-section p {
    color: #cccccc !important;
}

/* Testimonials - Dark Theme */
.testimonial {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.testimonial-text {
    color: #ffffff !important;
}

.testimonial-author {
    color: #CDB969 !important;
}

/* Features - Dark Theme */
.feature-box {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #2a2a2a !important;
    border-color: #CDB969;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.feature-box h4 {
    color: #CDB969 !important;
}

.feature-box p {
    color: #cccccc !important;
}

/* Team Members - Dark Theme */
.team-member {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.team-member h4 {
    color: #CDB969 !important;
}

.team-member p {
    color: #cccccc !important;
}

/* Statistics - Dark Theme */
.statistics-section {
    background-color: #000000 !important;
}

.stat-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #333333;
}

.stat-number {
    color: #CDB969 !important;
}

.stat-label {
    color: #ffffff !important;
}

/* Process Steps - Dark Theme */
.process-step {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.step-number {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

.step-content h4 {
    color: #CDB969 !important;
}

/* CTA Section - Dark Theme */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border: 1px solid #CDB969;
}

.cta-content h2 {
    color: #CDB969 !important;
}

.cta-content p {
    color: #ffffff !important;
}

.cta-button {
    background-color: #CDB969 !important;
    color: #000000 !important;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #FFA500 !important;
    color: #000000 !important;
}

/* Gallery - Dark Theme */
.gallery-item {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.gallery-item:hover {
    border-color: #CDB969;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Blog - Dark Theme */
.blog-post {
    background-color: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.blog-post h3 a {
    color: #CDB969 !important;
}

.blog-post h3 a:hover {
    color: #FFA500 !important;
}

.blog-post p {
    color: #cccccc !important;
}

.blog-meta {
    color: #888888 !important;
}

/* Search - Dark Theme */
.search-form {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.search-input {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #CDB969 !important;
}

/* Scroll to Top - Dark Theme */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FFA500 0%, #CDB969 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000;
    text-decoration: none;
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* Remove default Nivo loading.gif background */
.theme-default .nivoSlider {
    background: #000000 none !important;
}

/* Ensure slider images are visible even if JS fails */
.theme-default .nivoSlider img {
    display: block !important;
    position: relative !important;
}

/* Loading Animation - Dark Theme */
.page-loader {
    background-color: #000000 !important;
}

.page-loader::before {
    border-top-color: #CDB969 !important;
}

/* Notification - Dark Theme */
.notification {
    border: 1px solid #333333 !important;
}

.notification.success {
    background-color: #1a2a1a !important;
    color: #00ff00 !important;
}

.notification.error {
    background-color: #2a1a1a !important;
    color: #ff6b6b !important;
}

.notification.info {
    background-color: #1a1a2a !important;
    color: #6bb6ff !important;
}

/* Mobile Menu - Dark Theme */
.sidr {
    background-color: #1a1a1a !important;
    border-right: 2px solid #CDB969;
}

.sidr ul li a {
    color: #ffffff !important;
    border-bottom: 1px solid #333333 !important;
}

.sidr ul li a:hover {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

.sidr ul li.current-menu-item a {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

/* Additional Dark Theme Elements */
.center {
    background-color: #000000 !important;
}

.row {
    background-color: transparent !important;
}

.col-md-4, .col-md-6, .col-md-12 {
    background-color: transparent !important;
}

/* Service and Project Images */
.skt-services-image img,
.projects-image img,
.service-hero-image img {
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.skt-services-image:hover img,
.projects-image:hover img,
.service-hero-image:hover img {
    border-color: #CDB969;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Home About Highlight Section (after slider) */
.home-about-highlight {
    padding: 70px 0;
    background-color: #000000;
}

.home-about-highlight .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.home-about-left {
    padding-right: 40px;
    position: relative;
    z-index: 1;
    width: 50%;
}

.home-about-text-box {
    background-color: #000000;
    padding: 30px;
    margin-bottom: 25px;
}

.home-about-text-box h3 {
    color: #CDB969;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: none !important; /* bu blokda blur olmasın */
}

.home-about-text-box p {
    color: #f2f2f2;
    margin-bottom: 10px;
}

.home-about-yellow-card {
    background-color: #f2b60c;
    padding: 28px 50px 28px 30px; /* sağda əlavə boşluq ki, mətn şəkilin altına girməsin */
    border-radius: 0;
    color: #000000;
    position: relative;
    margin-top: 20px;
    margin-right: -60px; /* sarı sahənin yazısız hissəsi daha çox şəkilin altına girsin */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.home-about-yellow-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000 !important;
    text-shadow: none !important; /* bu başlıqda kölgə olmasın */
}

.home-about-yellow-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.home-about-yellow-card li {
    margin-bottom: 6px;
    color: #000000;
}

.home-about-yellow-card strong {
    font-weight: 700;
}

/* Ensure all text inside yellow card is black */
.home-about-yellow-card * {
    color: #000000 !important;
    font-size: 14px;
    line-height: 1.6;
    text-shadow: none !important;
}

.home-about-note {
    margin-bottom: 0;
    font-size: 14px;
    color: #000000 !important;
    text-shadow: none !important;
}

.home-about-right {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 50%;
}

.home-about-image-wrapper {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
    .home-about-highlight .row {
        display: block;
    }
    .home-about-left,
    .home-about-right {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.home-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Home Projects Slider (under About) */
.home-project-slider-section {
    background-color: #000000;
    padding: 40px 0 60px;
}

.home-project-slider {
    position: relative;
    overflow: hidden;
}

.home-project-slide {
    display: none;
    background-color: #000000;
}

.home-project-slide.active {
    display: block;
}

.home-project-slide-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.home-project-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px; /* oxlar kənarlara daha yaxın olsun */
    pointer-events: none; /* konteyner klik almasın, yalnız düymələr alsın */
}

.home-project-slider-arrows button {
    border: none;
    background: transparent !important; /* qlobal button fonunu ləğv et */
    color: #CDB969 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px; /* bir az böyük, nazik ox üçün */
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 300; /* nazik xətt effekti */
    pointer-events: auto; /* düymələr klik alsın */
}

.home-project-slider-arrows button span {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMS40MzMgMTUuOTkyTDIyLjY5IDUuNzEyYy4zOTMtLjM5LjM5My0xLjAzIDAtMS40Mi0uMzkzLS4zOS0xLjAzLS4zOS0xLjQyMyAwbC0xMS45OCAxMC45NGMtLjIxLjIxLS4zLjQ5LS4yODUuNzYtLjAxNS4yOC4wNzUuNTYuMjg0Ljc3bDExLjk4IDEwLjk0Yy4zOTMuMzkgMS4wMy4zOSAxLjQyNCAwIC4zOTMtLjQuMzkzLTEuMDMgMC0xLjQybC0xMS4yNTctMTAuMjkiCiAgICAgICAgICBmaWxsPSIjRERDNzZGIiBvcGFjaXR5PSIxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4KPC9zdmc+");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.home-project-next span {
    transform: scaleX(-1); /* sağ düymədə sola baxan ox olsun */
}

.home-project-slider-arrows button:hover {
    background: transparent;
    color: #CDB969;
}

@media (max-width: 991px) {
    .home-project-slider-arrows {
        padding: 0 15px;
    }
}

/* Home Services Section (under slider) */
.home-services-section {
    background-color: #000000;
    padding: 60px 0 80px;
}

.home-services-heading {
    text-align: center;
}

.home-services-heading h3 {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.home-services-all-btn {
    display: inline-block;
    margin: 0 auto 35px;
    padding: 10px 26px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #CDB969 0%, #FFA500 100%);
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.home-services-all-btn:focus {
    outline: none;
}

.home-services-icons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.home-service-icon-item {
    text-align: center;
    color: #CDB969;
    font-size: 14px;
    text-transform: uppercase;
}

.home-service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    border-radius: 0;
    border: none;
}

.home-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.home-services-bottom {
    display: flex;
    gap: 40px;
}

.home-services-left,
.home-services-right {
    width: 50%;
}

.home-service-card {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 12px;
    padding: 22px 32px;
    margin-bottom: 20px;
    border: 1px solid #333333;
}

.home-service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #CDB969;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-card-icon i {
    color: #CDB969;
    font-size: 28px;
}

.home-service-card-text h4 {
    margin: 0 0 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.home-service-card-line {
    width: 50px;
    height: 2px;
    background-color: #CDB969;
}

.home-services-right h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.home-services-reason {
    margin-bottom: 18px;
}

.home-services-reason p {
    color: #CDB969;
    font-size: 14px;
    margin: 0 0 6px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.home-services-reason-line {
    width: 60%;
    height: 2px;
    background-color: #CDB969;
    margin: 0 auto;
}

/* B0t0n xidm8ftl8fr siyah31s31 (a e731lan blok) */
.home-all-services {
    display: none;
    margin-top: 40px;
}

.home-all-services.is-open {
    display: block;
}

.home-all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-all-service-item {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px 18px;
    text-align: left;
}

.home-all-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #CDB969;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.home-all-service-icon i {
    color: #CDB969;
}

.home-all-service-item h5 {
    font-size: 15px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.home-all-service-item h5 a {
    color: #ffffff;
}

.home-all-service-item p {
    font-size: 13px;
    color: #cccccc;
    margin: 0;
}

@media (max-width: 991px) {
    .home-services-icons-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .home-services-bottom {
        flex-direction: column;
    }
    .home-services-left,
    .home-services-right {
        width: 100%;
    }
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    border-bottom: 2px solid #CDB969;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(26, 26, 26, 0.8) !important;
    border: 1px solid #333333 !important;
}

/* Service List */
.service-list {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
}

.service-list li {
    color: #ffffff !important;
    border-bottom: 1px solid #333333;
    padding: 10px 0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #CDB969 !important;
}

/* Process Steps */
.service-process .process-step {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Features Grid */
.service-features .feature-item {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.service-features .feature-item h4 {
    color: #CDB969 !important;
}

.service-features .feature-item p {
    color: #cccccc !important;
}

/* Related Services */
.related-services .service-box {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.related-services .service-box:hover {
    background-color: #2a2a2a !important;
    border-color: #CDB969;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.related-services .service-box h4 {
    color: #CDB969 !important;
}

.related-services .service-box p {
    color: #cccccc !important;
}

/* Contact Info */
.contact-info-item {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-info-item h4 {
    color: #CDB969 !important;
}

.contact-info-item p {
    color: #ffffff !important;
}

.contact-info-item i {
    color: #CDB969 !important;
}

/* Map Section */
.map-section {
    background-color: #000000 !important;
    border: 2px solid #333333;
    border-radius: 5px;
    overflow: hidden;
}

.map-section .center {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* Social Icons */
.social-icons a {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #CDB969 !important;
    color: #000000 !important;
    border-color: #CDB969;
}

/* Footer Links */
.footmenu li a {
    color: #cccccc !important;
    transition: all 0.3s ease;
}

.footmenu li a:hover {
    color: #CDB969 !important;
}

/* Copyright */
.copyright {
    background-color: #0a0a0a !important;
    color: #888888 !important;
    border-top: 1px solid #333333;
}

/* Form Validation Messages */
.form-control.is-valid {
    border-color: #00ff00 !important;
    background-color: #1a2a1a !important;
}

.form-control.is-invalid {
    border-color: #ff6b6b !important;
    background-color: #2a1a1a !important;
}

.valid-feedback {
    color: #00ff00 !important;
}

.invalid-feedback {
    color: #ff6b6b !important;
}

/* Loading Spinner */
.spinner-border {
    border-color: #CDB969 !important;
    border-right-color: transparent !important;
}

/* Progress Bars */
.progress {
    background-color: #2a2a2a !important;
}

.progress-bar {
    background-color: #CDB969 !important;
}

/* Badges */
.badge {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

/* Tooltips */
.tooltip-inner {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #CDB969;
}

/* Popovers */
.popover {
    background-color: #1a1a1a !important;
    border: 1px solid #CDB969 !important;
}

.popover-header {
    background-color: #2a2a2a !important;
    color: #CDB969 !important;
    border-bottom: 1px solid #CDB969 !important;
}

.popover-body {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Additional Utility Classes */
.text-gold {
    color: #CDB969 !important;
}

.bg-dark-custom {
    background-color: #1a1a1a !important;
}

.border-gold {
    border-color: #CDB969 !important;
}

/* Hover Effects */
.hover-gold:hover {
    background-color: #CDB969 !important;
    color: #000000 !important;
}

/* Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Desktop: only main menu visible */
@media (min-width: 992px) {
    .mobile_nav,
    #sidr {
        display: none;
    }
}

/* Mobile: only mobile menu visible */
@media (max-width: 991px) {
    #topmenu {
        display: none;
    }
    .mobile_nav {
        display: block;
    }
}

/* ================= HERO HEADER & SLIDER (REFERENCE STYLE) ================= */

/* Header overlay on slider, like screenshot */
body.home .header_wrap,
.home .header_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 8, 18, 0.6) !important;
    border-bottom: none;
    box-shadow: none;
}

.header.type2 .head_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.type2 .logo {
    background: transparent;
}

/* Logo image size */
.header.type2 .logo img {
    height: 98px !important;
    width: auto;
}

.header-extras {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Call button block (Zəng edin) */
.header-call-btn {
    display: flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f2b60c 0%, #ddc76f 100%);
    color: #000000 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.header-call-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.header-call-icon i {
    color: #f2b60c;
}

.header-call-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-call-text strong {
    display: block;
    font-size: 14px;
}

.header-call-btn:hover {
    background: linear-gradient(135deg, #ffd24a 0%, #f2b60c 100%);
    color: #000000 !important;
}

/* Vertical social icons on the right */
.hero-social-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-social-vertical a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 13px;
}

.hero-social-vertical a:hover {
    background: #000000;
    border-color: #000000;
    color: #f2b60c !important;
}

/* Right gold strip on hero */
.hero-right-strip {
    position: absolute;
    top: 0;           /* slider bölməsinin əvvəlindən başlasın */
    right: 0;
    width: 70px;
    height: 100%;     /* slider-section hündürlüyü qədər */
    background: #c99115;
    z-index: 500;
}

@media (max-width: 991px) {
    .hero-right-strip {
        display: none;
    }
}

/* Make slider full height like reference */
.slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Mobil üçün slider img contain olsun və hündürlük daha az olsun */
@media (max-width: 768px) {
    .slider-section {
        min-height: 260px;
    }

    .slider-wrapper.theme-default,
    #slider {
        height: 260px !important;
    }

    #slider img,
    .slider-section img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
    }
}

.slider-wrapper.theme-default,
#slider {
    height: 100vh !important;
}

#slider img {
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover;
}

/* === MOBİL SLIDER OVERRIDE (ən sonda, bütün qaydaları üstələsin) === */
@media (max-width: 768px) {
    .slider-section {
        min-height: 400px !important;
    }

    .slider-wrapper.theme-default,
    #slider {
        height: 400px !important;
        min-height: 400px !important;
    }

    #slider img,
    .slider-section img,
    .nivoSlider img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Center slide caption similar to screenshot */
.nivo-caption,
.slide-caption {
    left: 50% !important;
    top: 55% !important;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slide-caption {
    background: transparent !important;
    border: none;
    padding: 0;
}

.slide-caption h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
}

.slide-caption p {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Keep main content starting below hero */
.main-container {
    position: relative;
    z-index: 10;
}

