
/* Genel Stiller */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Navigasyon Çubuğu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo a {
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: #ff9900;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9900;
}

/* Hamburger Menü */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobil Menü */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px 0;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}



/* Ana Sayfa Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('logo.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInDown 1.5s ease-out;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideInUp 1.5s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: bounceIn 1.5s ease-out;
}

.cta-button:hover {
    background-color: #fff;
    color: #ff9900;
    box-shadow: 0px 0px 20px rgba(255, 153, 0, 0.8);
    transform: scale(1.1);
}

/* Hero Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}




/*hakkımızda*/
/* Hakkımızda Section */
.about-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    animation: fadeInLeft 1.5s ease-in-out;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #ff9900;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.about-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1.5s ease-in-out;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/*hizmet*/
.services-section {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.services-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.services-section ul {
    list-style-type: none;
    padding: 0;
}

.services-section li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-section li p {
    font-size: 1rem;
    color: #777;
    margin-top: 8px;
}

.services-section li:hover {
    background-color: #ff8c00; /* Hover rengini buradan değiştirebilirsiniz */
    color: #fff;
    transform: translateY(-5px);
}



/*ref*/
.references-section {
    background: linear-gradient(135deg, #ff8c00, #ff5722);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.references-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in-out;
}

.references-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.references-section ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.reference-item {
    font-size: 1rem;
    font-weight: 600;
    max-width: min-content;
    transition: all 0.3s ease;
    padding: 15px 25px;
    background-color: #fff;
    color: #ff5722;
    border-radius: 29px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.reference-item:hover {
    background-color: #ff5722;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.vehicles-section {
    background: #f4f4f4;
    color: #ff5722;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.vehicles-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideIn 1s ease-out;
}

.vehicles-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.vehicle-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.vehicle-item {
    position: relative;
    width: 30%;
    transform: scale(0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.vehicle-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.vehicle-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vehicle-item:hover img {
    transform: scale(1.1);
}

.vehicle-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffdf00;
}

.vehicle-item:hover .vehicle-info {
    opacity: 1;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.vehicle-info p {
    font-size: 1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mobil Uyumluluk: Küçük Ekranlar İçin Özelleştirme */
@media (max-width: 768px) {
    .vehicles-section {
        padding: 20px;
    }

    .vehicle-gallery {
        justify-content: center;
        gap: 15px;
    }

    .vehicle-item {
        width: 80%; /* Daha büyük araç kartları */
        margin: 15px 0; /* Araçlar arasına boşluk */
    }

    .vehicle-info h3 {
        font-size: 1.2rem;
    }

    .vehicle-info p {
        font-size: 0.9rem;
    }
}

/* Mobil Uyumluluk: Çok Küçük Ekranlar İçin Özelleştirme */
@media (max-width: 480px) {
    .vehicles-section h2 {
        font-size: 1.8rem;
    }

    .vehicles-section p {
        font-size: 1rem;
    }

    .vehicle-gallery {
        flex-direction: column; /* Dikey düzenleme */
        gap: 20px;
    }

    .vehicle-item {
        width: 90%; /* Tam genişlik */
    }

    .vehicle-info h3 {
        font-size: 1rem;
    }

    .vehicle-info p {
        font-size: 0.85rem;
    }
}



/* Paketleme Bölümü Stili */
.packing-section {
    background: #f4f4f4;
    color: #ff5722;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.packing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out;
}

.packing-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
    animation: fadeIn 1.5s ease-out;
}

/* Görsel Galerisi Düzeni */
.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Otomatik olarak sütunları ayarla */
    gap: 20px;
    justify-items: center;
    padding: 0;
}

.vehicle-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vehicle-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    object-fit: cover;
}

/* Hover Efekti */
.vehicle-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.vehicle-description {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Etkisi: Açıklama Görünür Olur */
.vehicle-item:hover .vehicle-description {
    opacity: 1;
}

/* Animasyon: FadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk: Küçük Ekranlar İçin Özelleştirme */
@media (max-width: 768px) {
    .packing-section {
        padding: 20px;
    }

    .packing-section h2 {
        font-size: 2rem;
    }

    .packing-section p {
        font-size: 1rem;
    }
}

/* Mobil Uyumluluk: Çok Küçük Ekranlar İçin Özelleştirme */
@media (max-width: 480px) {
    .vehicle-gallery {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .vehicle-description {
        font-size: 1rem;
    }
}




/* İletişim Bölümü Stili */
.contact-section {
    background-color: #f7f7f7;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #666;
}

/* İletişim Bilgileri */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-item {
    font-size: 1.2rem;
    color: #333;
}

.contact-link {
    text-decoration: none;
    color: #0066cc;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #004c99;
}

/* Harita Entegre */
.map-container {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
    }

    .contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}




/* Footer Stili */
#footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: wrap;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f39c12;
    margin-top: 10px;
}

/* Bağlantılar */
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    font-size: 1.5rem;
    margin: 20px 0;
}

.footer-links h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}



/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 20px 0;
    }

    .footer-links h3 {
        font-size: 1.1rem;
    }

    .contact-form {
        width: 90%;
    }
}


/* Genel Konumlandırmalar */
#whatsapp, #scroll-to-top, #phone {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

#whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: darkgreen;
    color: chartreuse;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#whatsapp img {
    width: 30px;
    height: 30px;
}


#scroll-to-top {
    display: none; /* Başlangıçta görünmez */
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff5722;
    color: whitesmoke;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#scroll-to-top i {
    width: 30px;
    height: 30px;
}


#phone {
    bottom: 60px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: whitesmoke;
    color: darkblue;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite; /* Telefon simgesine hareket ekliyoruz */
}

#phone img {
    width: 30px;
    height: 30px;
}

/* Giderek büyüyen çember efektini ekliyoruz */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    #whatsapp, #scroll-to-top, #phone {
        width: 45px;
        height: 45px;
    }

    #whatsapp img, #scroll-to-top img, #phone img {
        width: 25px;
        height: 25px;
    }
}

