html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}



html {
  position: relative;
  min-height: 100%;
}

body {
  
}
/* sonradan eklendi */
:root {
    --brand: #0f766e;
    --brand-600: #0d9488;
    --dark: #0b132b;
    --muted: #6b7280;
}

.hero {
    background: linear-gradient(180deg,rgba(13,148,136,.08),rgba(13,148,136,0));
}

.section {
    padding: 3.5rem 0
}

.navbar .main-nav .nav-link {
    letter-spacing: .02em;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    padding: 0.75rem 0.9rem
}

    .navbar .main-nav .nav-link:hover {
        color: var(--brand)
    }

.brand-text {
    color: var(--brand)
}



.icon-pill {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8eef2;
    color: #0f172a;
    text-decoration: none
}

    .icon-pill.whatsapp {
        background: #e6f9ef;
        color: #16a34a
    }

    .icon-pill:hover {
        filter: brightness(.95)
    }

.nav-gradient {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg,#0ea5e9,#10b981);
    opacity: .35
}

.footer a {
    color: #cbd5e1
}
/* Tam ekran kahraman alan (arka plan resimli) */
.hero-landing {
    position: center;
    min-height: 68vh; /* ekranın %80'i kadar */
    display: flex;
    align-items: center ; /* dikey ortalama */
    background-position: center;
   
    background-repeat: no-repeat;
    border-radius: 20px;

}




/* Üstteki formun kartı (cam efekti) */
.hero-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 1rem;
}

@media (min-width: 992px) {
    .hero-card {
        padding: 1.75rem 2rem;
    }
}

.hero-title {
    color: #0b132b;
    letter-spacing: .2px;
}

.hero-sub {
    color: #6b7280
}

/* Yeşil çift çerçeveli (outline) buton */
.btn-outline-brand {
    --brand: #1d4ed8; /* dış çizgi */
    --brand-text: #1d4ed8; /* yazı rengi */

    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px; /* inputlarla aynı/yüksek görünüm */
    padding: 0 28px; /* genişlik */
    background: #fff;
    color: var(--brand-text);
    font-weight: 800;
    border-radius: 14px;
    /* dış çizgi */
    border: 2px solid var(--brand);
    /* iç çizgi efekti (ikinci kenarlık) */
    box-shadow: inset 0 0 0 3px rgba(16,185,129,.25);
    transition: all .15s ease;
}

    .btn-outline-brand:hover {
        background: #ecfdf5;
        box-shadow: inset 0 0 0 3px rgba(16,185,129,.4);
    }

    .btn-outline-brand:active {
        transform: translateY(1px);
    }

.section {
    padding: 3rem 0;
}

.how-works .brand-underline {
    color: #1d4ed8; /* marka vurgusu */
    position: relative;
}

    .how-works .brand-underline::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 6px;
        background: linear-gradient(90deg,#0ea5e9,#10b981);
        opacity: .35;
        border-radius: 6px;
    }



.how-works .step {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.4rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.how-works .step-num {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1;
    color: #1d4ed8; /* mavi katman */
    text-shadow: 0 6px 0 #0ea5e9, 0 8px 24px rgba(0,0,0,0);
    margin-bottom: .5rem;
    

    
}

@media (min-width: 992px) {
    .how-works .step-num {
        font-size: 3.8rem;
    }
}



.about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 3rem 3rem 2rem;
    background: linear-gradient(135deg,#1f3b8a 0%, #2c4fa8 100%);

    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}



/* Başlık */
.about-title {
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    font-size: clamp(32px, 4.8vw, 64px);
    text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

    .about-title .accent {
        color: #0ea5e9;
        letter-spacing: .5px;
    }

/* Metin */
.about-text {
    color: #e6efff;
}

/* Sağ görsel – kartın içinde sağ alt köşe */
.about-illust {
    position: absolute;
    right: 1rem;
    bottom: -8px;
    max-height: 460px;
    height: auto;
    width: auto;
}

/* Responsive: küçük ekranda görsel aşağı insin */
@media (max-width: 991.98px) {
    .about-illust {
        position: static;
        max-height: none;
        margin-top: 1.5rem;
    }

    .about-hero {
        padding: 2rem 1.5rem;
    }
}

/* Kart zaten position:relative; ise gerek yok; değilse ekle */



/* Logo: sağda, büyük filigran */



/*-----------------*/



/* Ortak logo stili */
.about-bg-logo {
    position: absolute;
    height: auto;
    opacity: .14; /* filigran efekti */
    pointer-events: none;
    z-index: 0; /* metnin arkasında */
    filter: drop-shadow(0 24px 36px rgba(0,0,0,.25));
}

/* SAĞ ÜSTTE, işaretlediğin alan */
.about-bg-logo--right {
    /* konum: işaretli kutuyu yakalar */
    top: clamp(20px, 2vw, 110px);
    right: clamp(40px, 2vw, 70px);
    /* boy: alanı doldur, ama kartı taşırma */
    width: clamp(280px, 24vw, 520px);
}

/* Küçük ekranda logoyu biraz küçült ve aşağı al */
@media (max-width: 991.98px) {
    .about-bg-logo--right {
        top: 5px;

        right: 5px;
        width: min(44vw, 320px);
        opacity: .12;
    }
}


/*-------Footer-------*/

/* Footer ana zemin */
.site-footer {
    position: relative;
    background: #2e4e9b; /* ana mavi */
    color: #e8eef8;
    overflow: hidden;
}



    .site-footer::after {
        left: auto;
        right: -120px;
        bottom: -160px;
    }

/* Başlık ve linkler */
.footer-head {
    color: #26d0d6;
    font-weight: 700;

    letter-spacing: .2px;
}

.footer-links li {
    margin: .35rem 0;
}

.footer-links a {
    color: #dbe7ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: .25rem;
    display: inline-block;
    transition: opacity .15s ease;
}

    .footer-links a:hover {
        opacity: .85;
    }

/* Açıklama metin rengi */
.text-footer-muted {
    color: #c9d6ff;
    opacity: .85;
}

/* Sosyal buton */
.social-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #3fbef3;
    color: #0b2a58;
    text-decoration: none;
    margin-right: .5rem;
    transition: filter .15s ease;
}

    .social-pill:hover {
        filter: brightness(.95);
    }

    /*-------Hakkımızda Sayfas---------*/



.about-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.75rem;
}

.section-title {
    font-weight: 800;
    letter-spacing: .3px;
    margin: 0;
}

.section-subtitle {
    margin: .25rem 0 0;
    color: #6b7280; /* muted */
    font-size: .95rem;
}


/* Mobil kart – istenen stil */
.hero-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    padding: 1.25rem;
}
.search-bar--mobile {
    display: none;
}

/* Masaüstünde yatay form görünsün */
.hero-card .search-bar {
    display: flex;
    gap: .5rem;
    align-items: center;
}

/* ====== 991px ve altı (Mobil/Tablet) ====== */
@media (max-width: 991.98px) {

    /* Mobilde masaüstü formu gizle */
    .hero-card .search-bar {
        display: none !important;
    }

    /* Mobilde mobil formu göster */
    .search-bar--mobile {
        display: block !important;
    }

    /* (İsteğe bağlı) Mobil kartın dış sarmalayıcısı görünsün */
    .hero-form-card {
        display: block !important;
    }
}