* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Stili */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.logo h1 span.highlight {
    color: #3498db;
}

/* Asansör animasyonu */
.elevator-icon {
    width: 30px;
    height: 50px;
    position: relative;
    background: #f0f0f0;
    border: 2px solid #2c3e50;
    border-radius: 4px;
}

/* Kat göstergesi */
.floor-display {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 12px;
    z-index: 1;
}

/* Asansör kapıları */
.elevator-doors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.door-left, .door-right {
    width: 50%;
    height: 100%;
    background: #3498db;
}

/* Basitleştirilmiş animasyonlar */
@keyframes doorLeft {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0); }
}

@keyframes doorRight {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0); }
}

@keyframes floorNumber {
    0%, 75% { content: "1"; }
    75.1%, 100% { content: "2"; }
}

.door-left {
    transform-origin: left;
    animation: doorLeft 10s linear infinite;
}

.door-right {
    transform-origin: right;
    animation: doorRight 10s linear infinite;
}

.floor-display::after {
    content: "1";
    animation: floorNumber 10s steps(1) infinite;
}

/* Logo hover animasyonu */
.logo h1:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.logo .company-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a365d;
    letter-spacing: 1px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.logo .suffix {
    font-size: 1rem;
    font-weight: 500;
    color: #3498db;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Subtle hover effect */
.logo:hover .company-name {
    border-bottom-color: #1a365d;
    transition: border-bottom-color 0.3s ease;
}

.logo:hover .suffix {
    color: #1a365d;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3498db;
}

/* 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;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Hizmetler Section */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #3498db;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    color: #3498db;
    position: absolute;
    left: 0;
}

.service-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.area h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.why-us {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    color: #3498db;
    margin-bottom: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İletişim Section */
.contact {
    padding: 5rem 2rem;
    background-color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-group h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.info-group p {
    margin: 0.8rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-group i {
    color: #3498db;
    width: 20px;
}

.social-media {
    margin-top: 1rem;
}

.social-media h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #3498db;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2c3e50;
}

.map {
    flex: 2;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .map {
        min-height: 300px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

/* Hakkımızda Section Stili */
.about {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.about-text {
    max-width: 800px;
}

.highlight-text {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Animasyonlu sayaçlar için stil */
.counter {
    display: inline-block;
}

/* Sayı animasyonları */
@keyframes countTo300 {
    from { content: "0"; }
    20% { content: "60"; }
    40% { content: "120"; }
    60% { content: "180"; }
    80% { content: "240"; }
    to { content: "300+"; }
}

@keyframes countTo7 {
    from { content: "0"; }
    20% { content: "1"; }
    40% { content: "3"; }
    60% { content: "5"; }
    to { content: "7"; }
}

/* Sayaçlar için özel sınıflar */
.counter-300::after {
    content: "0";
    animation: countTo300 2s steps(1) forwards;
}

.counter-7::after {
    content: "0";
    animation: countTo7 2s steps(1) forwards;
}

.counter-24-7::after {
    content: "24/7";
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 150px;
    }
}

/* Container sınıfı yoksa ekleyin */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} 