* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

header {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin: 30px 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero-btn:hover {
    background: white;
    color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.durak-info {
    padding: 80px 0;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.info-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.highlight p {
    color: #666;
    margin: 0;
}

.info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-offered {
    padding: 80px 0;
    background: white;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.services-offered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 40px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.location-info {
    padding: 80px 0;
}

.location-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-card, .landmarks, .contact-quick {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.address-card h3, .landmarks h3, .contact-quick h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.address-card p {
    color: #555;
    line-height: 1.6;
}

.landmarks ul {
    list-style: none;
}

.landmarks li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.landmarks li:last-child {
    border-bottom: none;
}

.landmarks li:before {
    content: "📍 ";
    margin-right: 10px;
}

.quick-call {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.quick-call:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.contact-quick p {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: fit-content;
}

.fleet-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin: 40px 0;
    border-radius: 20px;
}

.fleet-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.fleet-showcase p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.fleet-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-10px);
}

.fleet-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-info {
    padding: 25px;
    text-align: center;
}

.fleet-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.fleet-info p {
    color: #666;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin: 40px 0;
    border-radius: 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    font-weight: 500;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .info-container, .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid, .fleet-grid, .contact-cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .info-highlights {
        gap: 15px;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .highlight:hover {
        transform: translateY(-5px);
    }
    
    .services-offered, .fleet-showcase {
        padding: 60px 20px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
}