/* Genel Stiller */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ffcc00;
    --dark-color: #333;
    --light-color: #fff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navbar Stili */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #ffcc00;
    margin-top: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
    border: 3px solid #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 50%;
}

.navbar-brand:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.navbar-brand:hover::before {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4))
           brightness(1.1);
}

.navbar-brand:hover .navbar-logo {
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.6))
           brightness(1.2);
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes heroLogo {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.6))
                brightness(1.3);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.9))
                brightness(1.6);
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.6))
                brightness(1.3);
    }
}

.navbar-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.nav-item {
    margin: 0;
    position: relative;
}

.nav-link {
    color: #ffcc00 !important;
    font-weight: 600;
    padding: 0.8rem 2.5rem 0.8rem 3rem !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    font-size: 0.9rem;
    background: linear-gradient(145deg, #333333, #222222);
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3),
                -3px -3px 6px rgba(255,255,255,0.05);
    border: 1px solid #444;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::before {
    content: attr(data-floor);
    position: absolute;
    left: 10px;
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffcc00;
    border: 1px solid #ffcc00;
    box-shadow: inset 0 0 5px rgba(255,204,0,0.5);
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.4),
                -4px -4px 8px rgba(255,255,255,0.1);
    border-color: #ffcc00;
    background: linear-gradient(145deg, #444444, #333333);
}

.nav-link:hover::before,
.nav-link.active::before {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 0 10px #ffcc00;
}

.navbar-toggler {
    background: #333;
    border: 1px solid #ffcc00;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.navbar-toggler:hover {
    background: #444;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 204, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand {
        padding: 10px;
    }

    .navbar-logo {
        height: 35px;
    }

    .floor-display {
        padding: 0.4rem 0.8rem;
        min-width: 60px;
        margin: 0 0.5rem;
        border-width: 2px;
    }

    .floor-number {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .floor-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        border: 1px solid rgba(255, 204, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.5rem 1rem 0.5rem 2.5rem !important;
        font-size: 0.8rem;
        letter-spacing: 1px;
        white-space: normal;
        display: flex;
        align-items: center;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 4px;
        border-left: 2px solid rgba(255, 204, 0, 0.2);
    }

    .nav-link::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        left: 5px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 204, 0, 0.1);
        transform: none;
        box-shadow: none;
        border-left: 2px solid #ffcc00;
    }

    .nav-link span {
        display: block;
        line-height: 1.2;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/elevator-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeIn 2s ease-in;
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.7));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.9));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.7));
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-weight: 700;
}

.hero-subtitle {
    color: var(--light-color);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--light-color);
    position: relative;
}

.hero h1::before {
    display: none;
}

.hero h1 span {
    display: inline-block;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* BORLIFT için yukarıdan aşağıya animasyon */
.hero h1 span:nth-child(-n+7) {
    animation: slideDown 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* ASANSÖR için aşağıdan yukarıya animasyon */
.hero h1 span:nth-child(n+9) {
    animation: slideUp 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Her harf için farklı başlangıç zamanları */
/* BORLIFT harfleri */
.hero h1 span:nth-child(1) { animation-delay: 0s; }
.hero h1 span:nth-child(2) { animation-delay: 0.2s; }
.hero h1 span:nth-child(3) { animation-delay: 0.4s; }
.hero h1 span:nth-child(4) { animation-delay: 0.6s; }
.hero h1 span:nth-child(5) { animation-delay: 0.8s; }
.hero h1 span:nth-child(6) { animation-delay: 1.0s; }
.hero h1 span:nth-child(7) { animation-delay: 1.2s; }
.hero h1 span:nth-child(8) { animation-delay: 1.4s; } /* Boşluk */

/* ASANSÖR harfleri */
.hero h1 span:nth-child(9) { animation-delay: 1.6s; }
.hero h1 span:nth-child(10) { animation-delay: 1.8s; }
.hero h1 span:nth-child(11) { animation-delay: 2.0s; }
.hero h1 span:nth-child(12) { animation-delay: 2.2s; }
.hero h1 span:nth-child(13) { animation-delay: 2.4s; }
.hero h1 span:nth-child(14) { animation-delay: 2.6s; }
.hero h1 span:nth-child(15) { animation-delay: 2.8s; }

.hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.elevator-animation {
    margin-top: 2rem;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Özellikler Section */
#features {
    background: url('images/features-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    padding: 4rem 0;
    min-height: 400px;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

#features .container {
    position: relative;
    z-index: 1;
}

.feature-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-box:nth-child(1) {
    background: linear-gradient(145deg, #f8f9fa 0%, rgba(0, 86, 179, 0.05) 100%);
}

.feature-box:nth-child(2) {
    background: linear-gradient(145deg, #f8f9fa 0%, rgba(255, 204, 0, 0.05) 100%);
}

.feature-box:nth-child(3) {
    background: linear-gradient(145deg, #f8f9fa 0%, rgba(0, 86, 179, 0.08) 100%);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(255, 204, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.2);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box i {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: none;
}

.feature-box:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.feature-box:nth-child(1) i,
.feature-box:nth-child(2) i,
.feature-box:nth-child(3) i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-box p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-box:hover p {
    color: #444;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-title {
        justify-content: center;
        font-size: 2.5rem;
        width: 100%;
        gap: 10px;
    }

    .hero-title span {
        display: inline-block;
        opacity: 0;
    }

    /* Mobilde sadece BORLIFT animasyonu */
    .borlift {
        animation: slideDown 1.5s forwards;
        animation-delay: calc(var(--char-index) * 0.1s);
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        gap: 5px;
    }
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    display: none;
}

.text-center .section-title:after {
    display: none;
}

/* Hakkımızda Bölümü */
.about-section {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('images/pattern-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0;
}

.about-section::before {
    display: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.about-section .section-title {
    color: #222;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.about-section .section-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #222;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.about-features li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-vision {
    background: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.mission-vision:hover {
    background: rgba(255, 255, 255, 0.5);
}

.mission-vision h3 {
    color: #222;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.mission-vision p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ürünler Bölümü */
.products-section {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('images/products-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 5rem 0;
    margin-top: 76px;
}

.product-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.7);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 1rem;
    background-color: rgba(248, 249, 250, 0.8);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background-color: rgba(248, 249, 250, 0.95);
    transform: scale(1.02);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.product-card p {
    margin: 0;
    color: #444;
    text-align: center;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/* İletişim Bölümü */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.contact-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    display: none;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.info-item:hover i {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.3);
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-item p {
    margin-bottom: 5px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.map-container {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.2);
    margin: 0 auto;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 450px;
}

.contact-section .section-title {
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    position: relative;
    color: var(--secondary-color);
    padding: 0 10px;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transform: skewX(-15deg);
    display: none;
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .map-container {
        max-width: 100%;
    }
}

/* Kat Göstergesi */
.floor-display {
    background: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 3px solid #ffcc00;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4),
                inset 0 0 10px rgba(255, 204, 0, 0.2);
    min-width: 120px;
    position: relative;
    margin: 0;
}

.floor-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 204, 0, 0.1) 50%, transparent 100%);
    border-radius: 9px;
    pointer-events: none;
}

.floor-number {
    font-family: 'Digital-7', monospace;
    font-size: 4rem;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.8),
                 0 0 40px rgba(255, 204, 0, 0.4);
    line-height: 1;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.floor-text {
    font-size: 1.2rem;
    color: #ffcc00;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    font-weight: 600;
}

@media (max-width: 991px) {
    .navbar-brand::before {
        width: 130%;
        height: 130%;
    }

    .navbar-logo {
        height: 30px;
    }
}

@font-face {
    font-family: 'Digital-7';
    src: url('fonts/digital-7.ttf') format('truetype');
}

/* Ana içerik alanını düzelt */
.hero, 
.products-section,
.about-section,
.contact-section,
#features {
    margin-left: 0;
    width: 100%;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
}

.building {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.elevator-cabin {
    animation: elevatorMove 20s infinite ease-in-out;
    z-index: 1;
}

.floor-door-left, .floor-door-right {
    z-index: 2;
}

/* Kapı yönleri */
.floor-door-left {
    --door-direction: -5px;
}

.floor-door-right {
    --door-direction: 5px;
}

/* Kabin hareketi */
@keyframes elevatorMove {
    0%, 10% { transform: translateY(0); }         /* 1. katta başla */
    15%, 20% { transform: translateY(0); }        /* 1. kat kapılar açık bekle */
    25% { transform: translateY(0); }             /* 1. kat kapılar kapanana kadar bekle */
    
    30%, 35% { transform: translateY(-50px); }    /* 2. kata çık */
    40%, 45% { transform: translateY(-50px); }    /* 2. kat kapılar açık bekle */
    50% { transform: translateY(-50px); }         /* 2. kat kapılar kapanana kadar bekle */
    
    55%, 60% { transform: translateY(-100px); }   /* 3. kata çık */
    65%, 70% { transform: translateY(-100px); }   /* 3. kat kapılar açık bekle */
    75% { transform: translateY(-100px); }        /* 3. kat kapılar kapanana kadar bekle */
    
    80% { transform: translateY(-50px); }         /* 2. kata in */
    85%, 90% { transform: translateY(-50px); }    /* 2. kat kapılar açık bekle */
    95% { transform: translateY(0); }             /* 1. kata in */
    100% { transform: translateY(0); }            /* 1. katta dur */
}

/* 1. Kat kapıları */
.floor-door-left[y="132"], .floor-door-right[y="132"] {
    animation: firstFloorDoors 20s infinite;
}

/* 2. Kat kapıları */
.floor-door-left[y="82"], .floor-door-right[y="82"] {
    animation: secondFloorDoors 20s infinite;
}

/* 3. Kat kapıları */
.floor-door-left[y="32"], .floor-door-right[y="32"] {
    animation: thirdFloorDoors 20s infinite;
}

@keyframes firstFloorDoors {
    0%, 14% { transform: translateX(0); }         /* Kapalı başla */
    15%, 20% { transform: translateX(var(--door-direction)); }  /* Aç ve bekle */
    25% { transform: translateX(0); }             /* Kapat */
    26%, 94% { transform: translateX(0); }        /* Kapalı tut */
    95%, 98% { transform: translateX(var(--door-direction)); }  /* Son gelişte aç ve bekle */
    100% { transform: translateX(0); }            /* Kapat */
}

@keyframes secondFloorDoors {
    0%, 39% { transform: translateX(0); }         /* Kapalı tut */
    40%, 45% { transform: translateX(var(--door-direction)); }  /* Aç ve bekle */
    50% { transform: translateX(0); }             /* Kapat */
    51%, 84% { transform: translateX(0); }        /* Kapalı tut */
    85%, 90% { transform: translateX(var(--door-direction)); }  /* İnişte aç ve bekle */
    95% { transform: translateX(0); }             /* Kapat */
}

@keyframes thirdFloorDoors {
    0%, 64% { transform: translateX(0); }         /* Kapalı tut */
    65%, 70% { transform: translateX(var(--door-direction)); }  /* Aç ve bekle */
    75% { transform: translateX(0); }             /* Kapat */
    76%, 100% { transform: translateX(0); }       /* Kapalı tut */
}

/* Kat numaraları */
.floor-number {
    fill: #ffcc00;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255, 204, 0, 0.5);
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .elevator-animation {
        margin-top: 1rem;
        height: 200px;
    }
    
    .elevator-animation svg {
        width: 100px;
        height: 200px;
    }
}

/* Sadece masaüstü için animasyonlu başlık (768px üstü) */
@media (min-width: 769px) {
    .hero-title {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .hero-title span {
        display: inline-block;
        opacity: 0;
    }

    /* BORLIFT için yukarıdan aşağıya animasyon */
    .borlift {
        animation: slideDown 1.5s forwards;
        animation-delay: calc(var(--char-index) * 0.1s);
    }

    /* ASANSÖR için aşağıdan yukarıya animasyon */
    .asansor {
        animation: slideUp 1.5s forwards;
        animation-delay: calc(var(--char-index) * 0.1s);
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-100px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        0% {
            opacity: 0;
            transform: translateY(100px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Resim Yükleme Alanı */
.upload-section {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease;
}

.upload-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
}

.upload-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-box input[type="file"] {
    max-width: 300px;
    margin: 0 auto;
}

/* Ürün kartlarını 5'li grid için düzenleme */
@media (min-width: 992px) {
    .product-card {
        height: 400px;
        margin-bottom: 30px;
    }

    .product-image {
        height: 250px;
    }
}

@media (max-width: 991px) {
    .product-card {
        height: 350px;
        margin-bottom: 20px;
    }

    .product-image {
        height: 200px;
    }
}

/* Form gönderimi için yükleniyor animasyonu */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form düğmesi stilleri */
#contactForm button[type="submit"] {
    background-color: #3085d6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#contactForm button[type="submit"]:hover {
    background-color: #2563a7;
}

#contactForm button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Form alanları için genel stiller */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#contactForm label {
    font-weight: bold;
    color: #333;
}

#contactForm br {
    display: none;
}

#contactForm > * {
    margin-bottom: 15px;
}

.highlight-text {
    position: relative;
    color: var(--secondary-color);
    padding: 0 10px;
    z-index: 1;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transform: skewX(-15deg);
    display: none;
}

.contact-section .section-title {
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .map-container {
        max-width: 100%;
    }
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px;
    }
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem auto;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4))
           brightness(1.1);
    animation: heroLogoAnimation 3s infinite ease-in-out;
    transition: all 0.5s ease;
    border-radius: 50%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    display: block;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.6))
           brightness(1.2);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

@keyframes heroLogoAnimation {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4))
                brightness(1.1);
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.5))
                brightness(1.15);
    }
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4))
                brightness(1.1);
    }
}

@media (max-width: 768px) {
    .hero-logo {
        display: none;
    }
    
    .hero-title {
        margin-top: 2rem;
    }
}

/* Footer ve Ziyaretçi Sayacı */
.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    border-top: 2px solid #ffcc00;
    position: relative;
    z-index: 1000;
}

.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 2px solid #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
    max-width: fit-content;
    margin: 0 auto;
}

.counter-label {
    color: #ffcc00;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.counter-value {
    background: #000;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    border: 1px solid #ffcc00;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.1);
}

.counter-value a {
    text-decoration: none;
    display: block;
}

.counter-value img {
    height: 28px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 204, 0, 0.3));
}

@media (max-width: 768px) {
    .visitor-counter {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }

    .counter-label {
        font-size: 1rem;
    }

    .counter-value {
        padding: 0.5rem 1.2rem;
    }

    .counter-value img {
        height: 24px;
    }
}

