﻿/* Set padding to keep content from hitting the edges */
.body-content {
    width: 100%;
    padding-top: 80px;
}

main {
    display: block;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Genel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Sağa kaymayı kesinlikle engeller */
    position: relative;
}

:root {
    --lacivert: #0a192f;
    --altin: #c5a059;
    --beyaz: #ffffff;
    --gri: #f4f4f4;
}

body {
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

/* Navigasyon Çubuğu */
.navbar {
    display: flex ;
    justify-content: space-between ;
    align-items: center ;
    background-color: #0a192f ; /* Senin lacivertin */
    color: var(--beyaz);
    position: fixed;
    width: 100%;
    min-height: 80px;
    padding: 10px 3%;
    top: 0;
    left: 0;
    z-index: 9999 !important; /* Her şeyin en üstünde kalsın */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.Logo{
    height:70px;
    width:auto;
    display:block;
}
    .Logo img {
        height: 70px;
        width: auto;
        display: block;
    }
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

    .nav-links a {
        color: var(--beyaz);
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: var(--altin);
        }

/* Slider Genel Yapısı */
.slider-container {
    position: relative;
    width: 100%;
    height: 85vh; 
    overflow: hidden;
    
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5); /* Yazıların okunması için resmi karartır */
    }

.slide-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 10;
}

    .slide-content h1 {
        font-size: 3.5rem;
        font-family: 'Playfair Display', serif;
        color: var(--altin);
        margin-bottom: 15px;
    }

/* Ok Butonları */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 25, 47, 0.5);
    color: var(--altin);
    padding: 15px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    transition: 0.3s;
}

    .prev:hover, .next:hover {
        background: var(--altin);
        color: var(--lacivert);
    }

.prev {
    left: 20px;
    border-radius: 0 5px 5px 0;
}

.next {
    right: 20px;
    border-radius: 5px 0 0 5px;
}



.btn-gold {
    padding: 12px 30px;
    background-color: var(--altin);
    color: var(--lacivert);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

    .btn-gold:hover {
        background-color: var(--beyaz);
    }

/* --- RESPONSIVE (Mobil Uyumluluk) --- */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Mobilde şimdilik gizleyelim, JS ile açacağız */
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1000000;
    }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--altin);
            margin: 5px;
            transition: 0.3s;
        }

    .hero-text h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: flex; /* Gizli olan menüyü aktif ediyoruz */
        flex-direction: column;
        position: fixed;
        right: -100%; /* Sayfanın sağında, ekranın dışında başlatıyoruz */
        top: 80px; /* Navbar yüksekliği kadar aşağıdan */
        background-color: var(--lacivert);
        width: 50%; /* Ekranın %50'ini kaplasın */
        height: 100vh;
        gap: 30px;
        padding: 50px 20px;
        transition: 0.5s; /* Kayarak gelme efekti */
        z-index: 999998;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        overflow-y: auto;
    }

        /* JavaScript ile bu class'ı ekleyeceğiz */
        .nav-links.active {
            right: 0 !important; /* Menüyü ekrana getirir */
            display:flex !important;
        }

        .nav-links li a {
            font-size: 1.2rem;
        }

    /* Hamburger Animasyonu (Opsiyonel: Tıklayınca X olması için) */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (min-width: 993px) {
    .hamburger {
        display: none;
    }
}

.site-footer {
    background: var(--lacivert);
    color: white;
    text-align: center;
    padding: 25px;
}

    .site-footer p {
        margin: 0;
        color: white;
    }

/* Genel Boşluklar */
.section-padding {
    padding: 100px 5%;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: var(--lacivert);
    color: white;
}

.text-center {
    text-align: center;
}

/* Hakkımızda Yazısı */
.about-p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}


/*==================================================
                HOME ARTICLES
==================================================*/

#makale-ozet {
    background:var (--gri);
}

.articles-two-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.article-double {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .article-double:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

.home-article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.a-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .a-content small {
        color: #888;
        font-size: 13px;
    }

.home-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 18px;
    font-size: 13px;
    color: #777;
    flex-wrap: wrap;
    gap: 8px;
}

    .article-meta span {
        display: flex;
        align-items: center;
    }

.a-content h3 {
    color: #0a192f;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 65px;
}

.a-content p {
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 25px;
}

.a-content a {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 18px;
    background: #0a192f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
    font-weight: 600;
}

    .a-content a:hover {
        background: #c5a059;
    }

/* Tablet */

@media (max-width:1200px) {

    .articles-two-columns {
        grid-template-columns: repeat(2,1fr);
    }
}

/* Telefon */

@media (max-width:768px) {

    .articles-two-columns {
        grid-template-columns: 1fr;
    }

    .a-content h3 {
        min-height: auto;
    }
}




/* Hakkımızda Sayfası Üst Alanı */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('/Content/img/ofis-arkaplan.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--altin);
    text-align: center;
  
}

    .page-header h1 {
        font-size: 3rem;
        font-family: 'Playfair Display', serif;
    }

/* Metin Alanı */
.about-text-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

    .about-text-content h2 {
        color: var(--lacivert);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-align:center;
    }
    
    .about-text-content h3 {
        color: var(--lacivert);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        

/* Ekip Kartları */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    width: 350px;
    background: #fff;
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .team-card:hover {
        transform: translateY(-10px);
        border-color: var(--altin);
    }

.team-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

    .team-info h3 {
        color: var(--lacivert);
        margin-bottom: 5px;
    }

    .team-info span {
        color: var(--altin);
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }
/*==================================================
                    ARTICLES PAGE
==================================================*/

/* Banner */

.articles-banner {
    width: 100%;
    background: linear-gradient(135deg, #0a192f, #132b4f);
    padding: 70px 20px;
    text-align: center;
}

.articles-banner-content h1 {
    color: #c5a059;
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.articles-banner-content p {
    color: #ffffff;
    font-size: 18px;
}

/* Sayfa */

.articles-page {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    display: flex;
    gap: 35px;
    align-items: flex-start;
    padding: 0 25px;
}

/* Sidebar */

.articles-sidebar {
    width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    overflow: hidden;
    flex-shrink: 0;
}

    .articles-sidebar h3 {
        background: #0a192f;
        color: #fff;
        padding: 18px;
        text-align: center;
        font-size: 20px;
    }

    .articles-sidebar ul {
        list-style: none;
    }

    .articles-sidebar li {
        border-bottom: 1px solid #ececec;
    }

        .articles-sidebar li:last-child {
            border-bottom: none;
        }

    .articles-sidebar a {
        display: block;
        padding: 16px 20px;
        color: #333;
        text-decoration: none;
        transition: .30s;
    }

        .articles-sidebar a:hover {
            background: #c5a059;
            color: white;
        }

    .articles-sidebar .active a {
        background: #c5a059;
        color: white;
        font-weight: 600;
    }

/* Sağ taraf */

.articles-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 30px;
}

/* Kart */

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

    .article-card:hover {
        transform: translateY(-8px);
    }

/* Resim */

.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* İçerik */

.article-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-category {
    display: inline-block;
    color: #c5a059;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-body h2 {
    color: #0a192f;
    font-size: 25px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-body p {
    color: #666;
    line-height: 1.8;
    flex: 1;
}

/* Bilgiler */

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px 0;
    font-size: 14px;
    color: #777;
}

/* Buton */

.read-more {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 18px;
    background: #0a192f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: .30s;
}

    .read-more:hover {
        background: #c5a059;
    }

/* Makale yok */

.empty-articles {
    grid-column: 1 / -1;
    background: white;
    padding: 60px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .empty-articles h3 {
        color: #0a192f;
        margin-bottom: 15px;
    }

    .empty-articles p {
        color: #777;
    }

/* Responsive */

@media(max-width:1100px) {

    .articles-page {
        flex-direction: column;
    }

    .articles-sidebar {
        width: 100%;
    }

    .articles-container {
        grid-template-columns: 1fr;
    }
}

/*==================================================
                CONTACT PAGE
==================================================*/

.contact-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hero */

.contact-hero {
    background: linear-gradient(135deg,#07162b,#0f2949);
    padding: 110px 20px 80px;
    text-align: center;
}

    .contact-hero h1 {
        color: #c5a059;
        font-size: 48px;
        margin-bottom: 20px;
        font-family: 'Playfair Display',serif;
    }

    .contact-hero p {
        color: #fff;
        max-width: 750px;
        margin: auto;
        line-height: 1.9;
        font-size: 17px;
    }

/* Avukat Kartları */

.lawyers-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.lawyers-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.lawyer-card {
    width: 500px;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .lawyer-card:hover {
        transform: translateY(-8px);
    }

.lawyer-avatar {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.lawyer-card h3 {
    color: #0a192f;
    margin-bottom: 8px;
}

.lawyer-card span {
    color: #c5a059;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}

.lawyer-info {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 25px;
}

    .lawyer-info p {
        margin: 12px 0;
        color: #555;
    }

.lawyer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .lawyer-buttons a {
        background: #0a192f;
        color: #fff;
        text-decoration: none;
        padding: 12px 22px;
        border-radius: 6px;
        transition: .3s;
    }

        .lawyer-buttons a:hover {
            background: #c5a059;
        }

/* Mesaj Alanı */

.message-section {
    padding: 90px 0;
    background: #fff;
}

.message-box {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

    .message-box h2 {
        text-align: center;
        color: #0a192f;
        margin-bottom: 40px;
        font-size: 34px;
        font-family: 'Playfair Display',serif;
    }

    /* FORM */

    .message-box form {
        display: block;
    }

    .message-box h3 {
        color: #0a192f;
        font-size: 16px;
        margin-top: 18px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .message-box input,
    .message-box textarea {
        width: 100%;
        display: block;
        padding: 14px 16px;
        font-size: 15px;
        border: 1px solid #d8d8d8;
        border-radius: 8px;
        margin-bottom: 6px;
        transition: .3s;
        font-family: inherit;
    }

    .message-box textarea {
        min-height: 180px;
        resize: vertical;
    }

        .message-box input:focus,
        .message-box textarea:focus {
            outline: none;
            border-color: #c5a059;
            box-shadow: 0 0 8px rgba(197,160,89,.25);
        }

.field-validation-error {
    display: block;
    color: #d93025;
    font-size: 13px;
    margin-bottom: 12px;
}

.message-box button {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #0a192f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

    .message-box button:hover {
        background: #c5a059;
    }

/* Responsive */

@media(max-width:992px) {

    .lawyer-card {
        width: 100%;
    }
}

@media(max-width:768px) {

    .contact-hero h1 {
        font-size: 38px;
    }

    .message-box {
        padding: 30px 20px;
    }

    .lawyer-buttons {
        flex-direction: column;
    }
}

/*====================================================
                SERVICES PAGE
====================================================*/

.services-page {
    padding: 120px 0;
    background: linear-gradient(180deg,#f7f8fb 0%,#ffffff 100%);
}

    .services-page .container {
        width: 90%;
        max-width: 1320px;
        margin: auto;
    }

    .services-page .section-title {
        text-align: center;
        font-size: 46px;
        color: #0a192f;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif;
    }

    .services-page .section-subtitle {
        max-width: 720px;
        margin: 0 auto 70px;
        text-align: center;
        color: #666;
        line-height: 1.9;
        font-size: 17px;
    }

/* GRID */

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

/*====================================================
                    CARD
====================================================*/

.service-card {
    position: relative;
    width: 340px;
    height: 260px;
    background: #0a192f;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform .30s ease, box-shadow .30s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.20);
    }

    /* Premium Glow */

    .service-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle, rgba(197,160,89,.10), transparent 70%);
        opacity: 0;
        transition: .35s;
    }

    .service-card:hover::before {
        opacity: 1;
    }

/*====================================================
                    ICON
====================================================*/

.service-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: .30s;
}

    .service-icon i {
        color: #c5a059;
        font-size: 48px;
    }

.service-card:hover .service-icon {
    transform: scale(1.08);
}

/*====================================================
                    TITLE
====================================================*/

.service-card h3 {
    margin-top: 28px;
    color: white;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 0 15px;
}

/*====================================================
                PREMIUM CORNERS
====================================================*/

.corner {
    position: absolute;
    width: 32px;
    height: 32px;
}

    /* Sol Üst */

    .corner.tl {
        left: 18px;
        top: 18px;
    }

        .corner.tl::before,
        .corner.tl::after {
            content: "";
            position: absolute;
            background: #c5a059;
            transition: .35s;
        }

        .corner.tl::before {
            width: 0;
            height: 3px;
        }

        .corner.tl::after {
            width: 3px;
            height: 0;
        }

    /* Sağ Üst */

    .corner.tr {
        right: 18px;
        top: 18px;
    }

        .corner.tr::before,
        .corner.tr::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            background: #c5a059;
            transition: .35s;
        }

        .corner.tr::before {
            width: 0;
            height: 3px;
        }

        .corner.tr::after {
            width: 3px;
            height: 0;
        }

    /* Sol Alt */

    .corner.bl {
        left: 18px;
        bottom: 18px;
    }

        .corner.bl::before,
        .corner.bl::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            background: #c5a059;
            transition: .35s;
        }

        .corner.bl::before {
            width: 0;
            height: 3px;
        }

        .corner.bl::after {
            width: 3px;
            height: 0;
        }

    /* Sağ Alt */

    .corner.br {
        right: 18px;
        bottom: 18px;
    }

        .corner.br::before,
        .corner.br::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            background: #c5a059;
            transition: .35s;
        }

        .corner.br::before {
            width: 0;
            height: 3px;
        }

        .corner.br::after {
            width: 3px;
            height: 0;
        }

/* Hover */

.service-card:hover .corner::before {
    width: 55px;
}

.service-card:hover .corner::after {
    height: 55px;
}

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:768px) {

    .service-card {
        width: 100%;
        max-width: 340px;
    }
}
/*====================================================
                    MODAL
====================================================*/

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

    .service-modal.show {
        opacity: 1;
        visibility: visible;
    }

.service-modal-box {
    width: 700px;
    max-width: 90%;
    background: #0a192f;
    border-radius: 20px;
    padding: 45px;
    position: relative;
    border: 1px solid rgba(197,160,89,.35);
    transform: scale(.9);
    transition: transform .25s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.service-modal.show .service-modal-box {
    transform: scale(1);
}

#closeModal {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    transition: .25s;
}

    #closeModal:hover {
        background: #c5a059;
        color: #0a192f;
    }

.modal-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .modal-icon i {
        color: #c5a059;
        font-size: 45px;
    }

#modalTitle {
    text-align: center;
    color: white;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
}

#modalDescription {
    color: #d6d6d6;
    line-height: 2;
    margin-top: 25px;
    font-size: 17px;
    text-align: justify;
}

@media(max-width:768px) {

    .service-modal-box {
        padding: 30px;
    }

    #modalTitle {
        font-size: 28px;
    }
}
/*==========================================
      ANA SAYFA - FAALİYET ALANLARI
==========================================*/

#faaliyet-ozet {
    padding: 110px 0;
    background: #f8f9fb;
}
.section-title{
    text-align:center;
}
.f-slider-wrapper {
    width: 900px;
    max-width: 100%;
    margin:  auto ;
    overflow: hidden;
    position: relative;
}
.f-slider-track {
    display: flex;
    gap: 30px;
    transition: transform .7s ease;
}


.f-card {
    width: 280px;
    min-width: 280px;
    height: 190px;
    flex-shrink: 0;
    background: #0a192f;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .45s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(197,160,89,.18);
}

    .f-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #c5a059;
        transform: scaleX(0);
        transform-origin: left;
        transition: .35s;
    }

    .f-card:hover::before {
        transform: scaleX(1);
    }

    .f-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(10,25,47,.35);
    }

    .f-card .service-icon {
        width: 82px;
        height: 82px;
        border-radius: 50%;
        background: #c5a059;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .35s;
    }

    .f-card:hover .service-icon {
        transform: scale(1.08);
    }

    .f-card .service-icon i {
        font-size: 36px;
        color: #0a192f;
    }

    .f-card h3 {
        margin-top: 22px;
        color: #ffffff;
        font-size: 23px;
        font-family: 'Playfair Display',serif;
        text-align: center;
        line-height: 1.4;
        padding: 0 15px;
    }

/* Tablet */

@media(max-width:992px) {

    .f-card {
        width: 240px;
        min-width: 240px;
        height: 190px;
    }
}

/* Telefon */

@media(max-width:768px) {

    .f-card {
        width: 220px;
        min-width: 220px;
        height: 180px;
    }

        .f-card h3 {
            font-size: 20px;
        }
}
/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
}

    .whatsapp-btn:hover {
        transform: scale(1.12);
        color: white;
        box-shadow: 0 18px 40px rgba(37,211,102,.45);
    }

    .whatsapp-btn::after {
        content: "WhatsApp";
        position: absolute;
        right: 78px;
        background: #25D366;
        color: white;
        padding: 8px 14px;
        border-radius: 20px;
        font-size: 14px;
        font-family: Poppins, sans-serif;
        opacity: 0;
        white-space: nowrap;
        transition: .3s;
        pointer-events: none;
    }

    .whatsapp-btn:hover::after {
        opacity: 1;
    }

.field-validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

.input-validation-error {
    border: 2px solid #dc3545 !important;
    background: #fff8f8;
}

.validation-summary-errors {
    color: #dc3545;
    margin-bottom: 20px;
}
/*==============================
      BAŞARI MESAJI
==============================*/

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #198754;
    color: #fff;
    padding: 18px 25px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 5px 20px rgba(0,0,0,.20);
    opacity: 1;
    transform: translateY(0);
    transition: all .6s ease;
}

    .success-message.hide {
        opacity: 0;
        transform: translateY(-100%);
    }

    .success-message i {
        margin-right: 10px;
        font-size: 18px;
    }