body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1A1A1A; /* Tünd Fon */
    color: #FFFFFF;
}

/* -------------------(HEADER) -------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C3A25D;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #C3A25D;
}

.cta-button {
    background-color: #C3A25D;
    color: #1A1A1A;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #DDAA33;
}

/* --------------------(HERO) -------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('hero_bg_image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #FFFFFF;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #C3A25D;
}

.hero-actions .btn {
    text-decoration: none;
    padding: 15px 35px;
    margin: 0 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.primary-btn {
    background-color: #C3A25D;
    color: #1A1A1A;
    border: 2px solid #C3A25D;
}

.primary-btn:hover {
    background-color: transparent;
    color: #C3A25D;
}

.secondary-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.secondary-btn:hover {
    background-color: #FFFFFF;
    color: #1A1A1A;
}

.content-section {
    padding: 100px 5%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #C3A25D;
    margin-bottom: 60px;
}

/* --------------------(ABOUT) -------------------- */
.about-section {
    background-color: #1a1a1a;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin-top: 30px;
}

.value-card {
    flex: 1;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: #383838;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: #C3A25D;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* --------------------(SERVICES) -------------------- */
.services-section {
    background-color: #2c2c2c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(195, 162, 93, 0.15);
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C3A25D;
    margin-bottom: 5px;
}

/* --------------------(FLEET) -------------------- */
.fleet-section {
    background-color: #1a1a1a;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 50px;
}

.fleet-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.fleet-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.fleet-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* --------------------(CONTACT) -------------------- */
.contact-section {
    background-color: #2c2c2c;
    min-height: auto;
    padding-bottom: 80px;
}

.contact-container {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    width: 100%;
    text-align: left;
}

.contact-details {
    flex: 1;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.contact-details h3 {
    font-size: 1.8rem;
    color: #C3A25D;
    margin-bottom: 25px;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #383838;
    border-radius: 5px;
    background-color: #383838;
    color: #FFFFFF;
    font-size: 1rem;
}

.social-links {
    margin-top: 25px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #C3A25D;
    color: #1A1A1A;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #FFFFFF;
}

/* -------------------- FOOTER) -------------------- */
.footer {
    background-color: #101010;
    padding: 25px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #383838;
}

.footer .web-link {
    color: #C3A25D;
}

/* -------------------- MEDIA QUERIES (RESPONSIVE) -------------------- */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5%;
    }
    .nav-links {
        display: none;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
    }
    .hero-actions .btn {
        margin: 10px 0;
        width: 100%; 
    }
    .section-title {
        font-size: 2rem;
    }
    .content-section {
        padding: 80px 5%;
    }
}
