/*PAGE----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;

}

::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);

}

::-webkit-scrollbar-track {
    background-color: var(--second-color);

}

:root {
    --main-color: #123458;
    --second-color: #D4C9BE;
    --dark-text-color: #000000;
    --light-text-color: #ffffff;
    --hover-color: #f5b300;
    --gradient-color1: #123458;
    --gradient-color2: #D4C9BE;
}

body {
    background: linear-gradient(180deg, var(--gradient-color1), var(--gradient-color2));
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}

span {
    color: var(--hover-color);
}

/*PAGE-----------------------------------------------------------------------------------------------*/

/*NAVBAR-----------------------------------------------------------------------------------------------*/
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
    /* ŞEFFAF BAŞLANGIÇ */
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    /* Aşağıda koyu ve yarı saydam */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Hafif gölge */
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    padding: 10px 16px;
    border-bottom-right-radius: 25px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    animation: slide-in-left 0.8s ease forwards;
    z-index: 999;
    text-decoration: none;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}


/* Scroll olduğunda görünümü sadeleştir */
#navbar.scrolled .logo {
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    animation: none;
}




/* Navbar Menü */
#navbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-right: 12px;
    padding-right: 12px;
}

#navbar nav ul li {
    display: inline;
    padding-right: 12px;
}

#navbar nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Linklere Hover Efekti */
#navbar nav ul li a:hover {
    color: var(--hover-color);
    /* Hover efekti (sarı ton) */
}

/* Hamburger (Mobil) */
.hamburger {
    display: none;
    font-size: 32px;
    color: var(--light-text-color);
    cursor: pointer;
    margin-right: 20px;

}

.menu-wrapper {

    margin-left: auto;
}

#mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu a {
    color: var(--light-text-color);
    font-size: 24px;
    text-decoration: none;
    margin: 20px 0;
}

#mobileMenu .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--light-text-color);
    cursor: pointer;
}

/* Menüleri sağa yaslamak için */
.desktop-menu {
    margin-left: auto;
}

/* Ekran küçüldüğünde ayarla */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/*NAVBAR------------------------------------------------------------------------------------------------*/

/*HOME ANİMATİON-----------------------------------------------------------------------------------------*/
.hero-container {
    background: url("img/bg_pc.png") no-repeat center center/cover;
    color: var(--light-text-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    padding: 24px;
    position: relative;
    flex-direction: column;
    overflow: hidden;
}

.animated-text {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    white-space: nowrap;
}

.animated-text.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

/*HOME ANİMATİON---------------------------------------------------------------------------------------------------*/


/*WHY WEB SİTE------------------------------------------------------------------------------------------------------*/
/* "Neden Web Sitesi?" Bölümü */
.why-website {
    text-align: center;
    padding: 50px 20px;
    background: var(--second-color);
}

/* Başlık */
.why-website h2 {
    font-size: 48px;
    color: var(--dark-text-color);
    margin-bottom: 20px;
}

/* Kart Konteyneri */
.why-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Mobil uyum için */
    margin-top: 20px;
}

/* Kart Stili */
.why-card {
    background: var(--light-text-color);
    color: var(--dark-text-color);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid black;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: 0.2s ease-in-out !important;
}

/* Kart Hover Efekti */
.why-card:hover {
    transform: scale(1.05);
    background: var(--main-color);
    color: var(--light-text-color);
}

/* Kart Başlığı */
.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Kart İçeriği */
.why-card p {
    font-size: 16px;
    margin-top: 12px;
    padding: 12px;
}

/* İkon Stilleri */
.why-card i {
    font-size: 40px;

    /* Turuncu ikon rengi */
    margin-bottom: 10px;
    display: block;
}

/*WHY WEB SİTE-------------------------------------------------------------------------------------------*/



/*TİMELİNE-----------------------------------------------------------------------------------------------*/
/* Genel Ayarlar */
.timeline-section {
    text-align: center;

    background: var(--second-color);
}

/* Başlık */
.timeline-section h2 {
    font-size: 48px;
    color: var(--dark-text-color);
    margin-bottom: 20px;
}

.process-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text-color);
    text-align: center;
    max-width: 80%;
    font-size: 20px;
}

.slide-text h3 {
    padding: 24px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: transparent;
    color: var(--light-text-color);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}


/*TİMELİNE------------------------------------------------------------------------------------------------------------*/

/*HOME PACKAGES---------------------------------------------------------------------------------------------------------*/
/* Ana Sayfa - Paketler Bölümü */
.home-packages {
    text-align: center;
    padding: 50px 20px;
    background: var(--second-color);
}

/* Başlık */
.home-packages h2 {
    font-size: 48px;
    color: var(--dark-text-color);
    margin-bottom: 30px;
}

/* Paket Kartları Konteyner */
.package-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Mobil uyum için */
    margin-top: 20px;
}

/* Paket Kartı */
.package-card {
    background: var(--main-color);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid black;
    width: 280px;
    height: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

/* Hover Efekti - Soldan Sağa Dolma */
.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Başlangıçta görünmez */
    height: 100%;
    background: var(--light-text-color);
    /* Turuncu - Kırmızı Gradient */
    transition: width 0.4s ease-in-out;
    z-index: 0;
    border-radius: 8px;
}

/* Hover Olunca Gradient Soldan Sağa Dolsun */
.package-card:hover::before {
    width: 100%;
    /* Kartın tamamını kaplayacak */
}

/* Kart İçeriğinin Üstte Kalmasını Sağla */
.package-card h3,
.package-card p {
    position: relative;
    color: var(--light-text-color);
    padding: 12px;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

/* Hover Efektinde Yazıların Rengini Beyaza Çevir */
.package-card:hover h3,
.package-card:hover p {
    color: var(--dark-text-color);
}

/* Hover Efektinde Hafif Yukarı Kayma */
.package-card:hover {
    transform: translateY(-5px);
}

/* "Tüm Hizmetleri Gör" Butonu */
.btn {
    display: inline-block;
    background: var(--main-color);
    color: var(--light-text-color);
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    border: 2px solid black;
    transition: 0.2s ease-in-out !important;
    margin-top: 24px;
    animation: pulse 0.8s infinite alternate ease-in-out;
    /* Scale loop efekti */
}

/* Hover Efekti */
.btn:hover {
    background: var(--light-text-color);
    color: var(--dark-text-color);
    transform: scale(1.1);
}

/* Scale Loop Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}


/*HOME PACKAGES--------------------------------------------------------------------------------------------*/


/*SERVİCES-------------------------------------------------------------------------------------------------*/
/* Hizmetler Sayfası Genel Stil */


/* Sayfa Başlığı */
.page-title {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 70px;
    text-align: center;
    color: var(--light-text-color);
}

/* Kartın dış tasarımı */
.detail-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--main-color);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    text-align: left;
    position: relative;
    overflow: hidden;
    /* Taşma olmasın */
    transition: all 0.3s ease-in-out;
}

/* Hover olduğunda arkadan dolan bar efekti */
.detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    /* Başlangıçta kartın dışında */
    width: 100%;
    height: 100%;
    background: var(--second-color);
    /* Sağdan sola turuncu geçiş */
    transition: left 0.4s ease-in-out;
    z-index: 0;
}

/* Hover olduğunda barın içeri girmesi */
.detail-card:hover::before {
    left: 0;
    /* Kartın tamamını kaplasın */
}

/* Kartın içindeki içeriklerin üstte kalması için */
.detail-card>* {
    position: relative;
    z-index: 1;
}

/* Metinlerin rengi hover durumunda değişsin */
.detail-card:hover h2,
.detail-card:hover h3,
.detail-card:hover p,
.detail-card:hover li {
    color: var(--dark-text-color);
    transition: color 0.3s ease-in-out;
}


/* Sol Taraf: Paket Bilgileri */
.detail-info {
    width: 60%;
}

.detail-info h2 {
    font-size: 24px;
    color: var(--light-text-color);
    padding: 12px;
}

.detail-info h3 {
    font-size: 14px;
    color: var(--light-text-color);
    padding: 12px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: var(--light-text-color);
    padding: 12px;
}

.features {
    list-style: none;
    padding: 6px;
}

.features li {
    font-size: 16px;
    padding: 5px 0;
    color: var(--light-text-color);
}

/* Opsiyon kutusunun temel stili */
.detail-options {
    width: 35%;
    background: var(--second-color);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid black;
    text-align: left;
    position: relative;
    overflow: hidden;
    /* Efektin dışarı taşmasını engelle */
    transition: all 0.3s ease-in-out;
}

/* Hover efekti için sağdan sola dolan arkaplan */
.detail-options::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    /* Mor tonlarında premium hissiyatı */
    transition: right 0.4s ease-in-out;
    z-index: 0;
}

/* Hover olunca arkaplanın kayması */
.detail-card:hover .detail-options::before {
    right: 0;
}

/* Metinlerin hover ile beyaza dönmesi */
.detail-card:hover .detail-options h3,
.detail-card:hover .detail-options li {
    color: var(--light-text-color);
    transition: color 0.3s ease-in-out;
}

/* Metinlerin üstte kalması */
.detail-options>* {
    position: relative;
    z-index: 1;
}

.detail-options h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.options {
    list-style: none;
    padding: 0;
}

.options li {
    font-size: 14px;
    padding: 5px 0;
    color: var(--dark-text-color);
}

/*SERVİCES-------------------------------------------------------------------------------------------------*/



/*ABOUT-------------------------------------------------------------------------------------------------*/
/* Sayfa Başlığı */
.page-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Hakkımızda Bölümü */
.about-section {
    max-width: 800px;
    margin: 20px auto;
    margin-bottom: 24px;
    background: var(--main-color);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    justify-content: space-between;
    align-items: center;
}

/* Başlıklar */
.about-section h2 {
    font-size: 24px;
    color: var(--light-text-color);
    margin-top: 20px;
    padding: 12px;
}

/* Liste Stili */
.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 16px;
    padding: 12px;
    color: var(--light-text-color);
    display: flex;
    align-items: center;
}

.about-section ul li::before {
    content: "✔";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/*ABOUT-------------------------------------------------------------------------------------------------*/

/*CONTACT-------------------------------------------------------------------------------------------------*/
/* Genel Sayfa Düzeni */
.content-wrapper {
    flex: 1;
}

/* Sayfa Başlığı */
.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Kartvizit Tasarımı */
.business-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--main-color);
    width: 60vw;
    height: 50vh;
    padding: 25px;
    margin: 30px auto;
    border-radius: 12px;
    border: 1px solid black;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    max-width: 520px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Kartın Sol Tarafı */
.card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 60%;
    padding: 12px;
}

.card-left h2 {
    font-size: 26px;
    color: white;
    padding: 18px;
}

.card-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

/* İkonları daha düzgün hizalama */
.card-left p i {
    font-size: 20px;
    color: var(--light-text-color);
    min-width: 24px;
    /* İkonların hizasını sabitler */
    text-align: center;
}

/* Kartın Sağ Tarafı (Butonlar) */
.card-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 40%;
}

/* Butonlar */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: var(--dark-text-color);
    background-color: var(--light-text-color);
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    gap: 10px;
    width: 170px;
}

/* İkonları daha iyi hizalama */
.contact-btn i {
    font-size: 18px;
}

/* Hover Efekti */
.contact-btn:hover {
    transform: scale(1.05);
    background-color: var(--hover-color);
}

/*CONTACT-------------------------------------------------------------------------------------------------*/

/*SSS-----------------------------------------------------------------------------------------------------*/
.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    min-height: 70vh;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--light-text-color);
}

.faq-item {
    border-bottom: 1px solid var(--light-text-color);
    margin-bottom: 10px;
}

.faq-question {
    background: none;
    border: none;
    font-size: 20px;
    text-align: left;
    width: 100%;
    padding: 15px 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-text-color);
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--hover-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0;
    color: var(--light-text-color);
}

/*SSS-----------------------------------------------------------------------------------------------------*/

/*REFERANSLAR-----------------------------------------------------------------------------------------------------*/
.ref-gallery {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    min-height: 70vh;
    
}

.ref-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--light-text-color);
}

.ref-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ref-card {
    background-color: var(--main-color);
    border: 2px solid var(--dark-text-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--light-text-color);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 32px;
}

.ref-card:hover {
    background-color: var(--second-color);
    color: var(--dark-text-color);
}

.ref-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.ref-info {
    padding: 15px;
    text-align: center;
}

.ref-info h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.ref-info p {
    font-size: 14px;
    margin: 0;
}


/*REFERANSLAR-----------------------------------------------------------------------------------------------------*/
/*WP BUTTON-------------------------------------------------------------------------------------------------*/
/* WhatsApp Teklif Al Butonu */
.whatsapp-offer-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: var(--light-text-color);
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    animation: pulse 0.5s infinite alternate;
    /* Loop efekti */
    z-index: 2000;
}

/* WhatsApp Buton İkonu */
.whatsapp-offer-btn i {
    font-size: 24px;
}

/* Hover Edince Animasyonu Durdur */
.whatsapp-offer-btn:hover {
    background: #1ebe5d;
}

/* Loop Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/*WP BUTTON-------------------------------------------------------------------------------------------------*/


/*SOCİAL-------------------------------------------------------------------------------------------------*/
/* Sosyal Medya Butonları Konteyneri */
.social-media-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Sosyal Medya Butonları */
.social-icon {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    color: var(--light-text-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid black;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Hover Efekti */
.social-icon:hover {
    transform: scale(1.1);
}

/* Her Platform İçin Farklı Renk */
.social-icon:nth-child(1):hover {
    background: var(--hover-color);
    /* Instagram */
}

.social-icon:nth-child(2):hover {
    background: #E1306C;
    /* Instagram */
}

.social-icon:nth-child(3):hover {
    background: #0077B5;
    /* LinkedIn */
}

/*SOCİAL-------------------------------------------------------------------------------------------------*/


/*FOOTER-------------------------------------------------------------------------------------------------*/
.footer {
    background: var(--main-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 10px;
    font-size: 16px;
}


/*FOOTER-------------------------------------------------------------------------------------------------*/

/*ANİMATİONS-------------------------------------------------------------------------------------------------*/
/* Genel Animasyon Efektleri */
.fade-in,
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Aktif Olduğunda Animasyonu Çalıştır */
.show {
    opacity: 1;
    transform: translateY(0);
}

/*ANİMATİONS-------------------------------------------------------------------------------------------------*/

/*MOBİL RESPONSİVE-------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {

    /*NAVBAR*/
    .logo {
        gap: 5px;
        /* logo ile yazı arası boşluk */
        padding-left: 6px;
    }

    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 12px;
        font-weight: 500;
    }

    /*HOME*/
    .hero-container {
        background: url("img/bg_mobile.png") no-repeat center center/cover;
        padding: 20px;
        font-size: 28px;
    }

    .animated-text {
        white-space: normal;
        font-size: 32px;
        padding: 0 12px;
    }

    /* WHY */

    /* Başlık */
    .why-website h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    /* Kart Stili */
    .why-card {
        padding: 12px;
    }

    /* Kart Başlığı */
    .why-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /* Kart İçeriği */
    .why-card p {
        font-size: 14px;
        margin-top: 12px;
        padding: 12px;
    }

    /* TİMELİNE */
    .timeline-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slide-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .slide-text h3 {
        padding: 12px;
    }

    /*HOME PACKAGES*/

    /* Başlık */
    .home-packages h2 {
        font-size: 24px;
    }

    /* Paket Kartı */
    .package-card {
        padding: 12px;
    }


    /*HİZMETLER*/
    .page-title {
        font-size: 24px;
    }

    .detail-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        max-width: 80%;
    }

    .detail-info,
    .detail-options {
        width: 80%;
    }

    .detail-info h2 {
        font-size: 20px;
        padding: 12px;
    }

    .detail-info h3,
    .price,
    .features li,
    .options li {
        font-size: 14px;
        padding: 12px;
        line-height: 1.5;
        font-weight: 500;
    }

    .detail-options {
        margin-top: 12px;
        padding: 12px;
    }

    .detail-options h3 {
        font-size: 18px;
    }

    /*AOBUT*/
    .page-title {
        font-size: 24px;
        padding: 0 12px;
    }

    .about-section {
        padding: 16px;
        margin: 16px;
        border-radius: 8px;
    }

    .about-section h2 {
        font-size: 20px;
        padding: 8px 0;
    }

    .about-section ul li {
        font-size: 14px;
        padding: 8px 0;
        line-height: 1.6;
    }

    .about-section ul li::before {
        font-size: 16px;
        margin-right: 8px;
    }

    /*FOOTER*/
    .footer p {
        padding-bottom: 120px;
    }


    /*CONTACT*/
    .page-title {
        font-size: 24px;
        padding: 0 12px;
    }

    .business-card {
        flex-direction: column;
        width: 80vw;
        height: auto;
        padding: 20px;
        margin: 20px auto;
    }

    .card-left,
    .card-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .card-left h2 {
        font-size: 20px;
        padding: 10px 0;
    }

    .card-left p {
        font-size: 14px;
        padding: 6px;
        justify-content: center;
    }

    .card-right {
        margin-top: 16px;
        gap: 10px;
    }

    .contact-btn {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }

    /*SOCİAL*/
    .social-media-icons {
        bottom: 10px;
        left: 10px;
    }
    /*REFERANS*/

    .ref-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    
}
.ref-gallery{
    margin-left: 40px;
    margin-right: 40px;
}
}

@media (max-width: 1024px) {

    /*HOME*/
    .hero-container {
        padding: 12px;
        font-size: 24px;
    }

    .animated-text {
        font-size: 24px;
        padding: 12px;
    }

    /*HİZMETLER*/

    .detail-card {

        padding: 12px;
        max-width: 80%;
    }

    .detail-info,
    .detail-options {
        width: 80%;
    }

    .detail-info h2 {
        font-size: 20px;
        padding: 12px;
    }

    .detail-info h3,
    .price,
    .features li,
    .options li {
        font-size: 14px;
        padding: 12px;
        line-height: 1.5;
        font-weight: 500;
    }

    .detail-options {
        margin-top: 12px;
        padding: 12px;
    }

    .detail-options h3 {
        font-size: 18px;
    }

    /*AOBUT*/
    .page-title {
        font-size: 24px;
        padding: 0 12px;
    }

    .about-section {
        padding: 12px;
        margin: 16px auto;
        width: 90vw;
    }

    .about-section h2 {
        font-size: 20px;
        padding: 8px 0;
    }

    .about-section ul li {
        font-size: 14px;
        padding: 8px 0;
        line-height: 1.6;
    }

    .about-section ul li::before {
        font-size: 16px;
        margin-right: 8px;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {

    /*HOME*/
    .hero-container {
        padding: 12px;
        font-size: 32px;
    }

    .animated-text {
        font-size: 32px;
        padding: 24px;
    }
}


/*MOBİL RESPONSİVE-------------------------------------------------------------------------------------------------*/