/**
    TEMPLATE BESA ELEKTRİK
*/
:root {
    --primary-color: #FF6600;
    --primary-hover: #E65C00;
    --dark-color: #1A1A1A;
    --light-bg: #F8F9FA;
    --text-color: #4A4A4A;
    --border-color: #EAEAEA;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    scroll-behavior: smooth;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

.top-bar {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 10px 0;
    font-size: 0.85rem;
}

    .top-bar a {
        color: #ccc;
        text-decoration: none;
        margin-right: 20px;
        transition: color 0.3s;
    }

        .top-bar a:hover {
            color: var(--primary-color);
        }

    .top-bar i {
        color: var(--primary-color);
        margin-right: 8px;
    }

.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

    .navbar.scrolled {
        padding: 12px 0;
    }

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color) !important;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: var(--primary-color);
    }

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 12px;
    font-size: 0.95rem;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--primary-color) !important;
    }

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: inline-block;
}

    .btn-primary-custom:hover {
        background-color: transparent;
        color: var(--primary-color);
    }

.btn-outline-custom {
    background-color: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fff;
    display: inline-block;
}

    .btn-outline-custom:hover {
        background-color: #fff;
        color: var(--dark-color);
    }

.hero {
    position: relative;
    color: white;
    padding: 0;
}

.hero-slide {
    min-height: 600px;
    padding: 180px 0 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(26, 26, 26, 0.82);
    }

    .hero-slide .container {
        position: relative;
        z-index: 1;
    }

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

    .hero h1 span {
        color: var(--primary-color);
    }

.hero p {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 650px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h6 {
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .section-header h2 {
        font-size: 2.5rem;
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

    .section-header p.lead {
        max-width: 700px;
        margin: 0 auto;
        color: #666;
        font-size: 1.05rem;
    }

.about-img-wrapper {
    position: relative;
}

    .about-img-wrapper img {
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

    .about-experience h3 {
        color: white;
        font-size: 2.5rem;
        margin: 0;
    }

.vision-mission-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.stats-section {
    background-color: var(--dark-color);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
    font-weight: 500;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border-color: transparent;
    }

    .service-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
        z-index: -1;
    }

    .service-box:hover::before {
        transform: scaleX(1);
    }

.service-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-box h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sector-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    transition: all 0.3s;
}

    .sector-item:hover {
        border-color: var(--primary-color);
    }

    .sector-item i {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-right: 20px;
        transition: color 0.3s;
    }

    .sector-item:hover i {
        color: var(--primary-color);
    }

    .sector-item h5 {
        margin: 0;
        font-size: 1.1rem;
    }

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        margin-bottom: 25px;
        display: flex;
        align-items: flex-start;
    }

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
}

.feature-list h5 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-list p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-body {
    color: #666;
    line-height: 1.8;
    padding: 20px;
}

.bank-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

    .bank-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.bank-header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

    .bank-header i {
        color: var(--primary-color);
        margin-right: 10px;
        font-size: 1.3rem;
    }

.bank-body {
    padding: 25px 20px;
}

    .bank-body p {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

.iban-box {
    background-color: var(--light-bg);
    border: 1px dashed #ccc;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.iban-text {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    word-break: break-all;
}

.btn-copy {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-copy:hover {
        background-color: var(--primary-color);
        color: white;
    }

.toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .toast-notification.show {
        visibility: visible;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.contact-info-card {
    background: var(--dark-color);
    color: white;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

    .contact-info-card h4 {
        color: white;
        margin-bottom: 30px;
    }

.info-item {
    display: flex;
    margin-bottom: 25px;
}

    .info-item i {
        color: var(--primary-color);
        font-size: 1.5rem;
        margin-right: 20px;
    }

.form-control {
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fafafa;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: none;
        background-color: #fff;
    }

footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

    footer h5 {
        color: white;
        margin-bottom: 25px;
        font-size: 1.2rem;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .about-experience {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .top-bar {
        display: none;
    }
}
