/* Çiçek Emlak Düzce - Premium Aydınlık Tema Stilleri */

:root {
    --primary: #D4AF37;          /* Premium Altın */
    --primary-light: #F4EAC8;    /* Açık Altın */
    --primary-dark: #A68015;     /* Koyu Altın */
    --text-dark: #1C1C1C;        /* Antrasit/Koyu Gri */
    --text-light: #666666;       /* Açık Gri */
    --bg-main: #FAF9F6;          /* Kırık Beyaz / Alabaster */
    --bg-card: #FFFFFF;          /* Saf Beyaz */
    --border-color: #EBE6DC;     /* Hafif Bronz/Krem Sınırlar */
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-dark {
    background-color: var(--text-dark);
    color: white;
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Header Top Bar */
.header-top-bar {
    background-color: #1C1C1C;
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.top-bar-socials a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.info-val {
    font-weight: 500;
    color: #FFFFFF;
}

.info-val a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.info-val a:hover {
    color: var(--primary);
}

.info-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .top-bar-socials {
        display: none;
    }
    
    .top-bar-container {
        justify-content: center;
    }
    
    .top-bar-info {
        gap: 20px;
        justify-content: center;
        width: 100%;
    }
    
    .top-bar-info .info-item:nth-child(2) {
        display: none;
    }
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.header-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    line-height: 1;
}

.brand-sub {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.site-nav ul a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.site-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.site-nav ul a:hover::after,
.site-nav ul a.active::after {
    width: 100%;
}

.site-nav ul a:hover,
.site-nav ul a.active {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Footer */
.site-footer {
    background-color: #161616; /* Koyu premium arka plan */
    color: #CCCCCC;
    padding: 60px 0 0 0;
    border-top: 4px solid var(--primary);
    font-family: 'Inter', sans-serif;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

/* 1. Sütun: İletişim Bilgileri */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #AAAAAA;
}

.footer-contact-list li span {
    line-height: 1.4;
}

.footer-contact-list li a {
    color: #AAAAAA;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--primary);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Sosyal Medya İkonu */
.footer-social-circles {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    background-color: var(--primary);
    color: #161616;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* 2. & 4. Sütun: Link Listeleri */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* 3. Sütun: Öne Çıkan İlanlar */
.footer-featured-listings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-listing-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-listing-thumb {
    width: 65px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-listing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-listing-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-listing-title {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #DDDDDD;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
}

.footer-listing-link {
    font-size: 11px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    width: fit-content;
}

.footer-listing-link:hover {
    color: var(--primary);
}

/* Alt Copyright Alanı */
.footer-bottom {
    background-color: #111111;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left p, .footer-bottom-right p {
    color: #888888;
    font-size: 13px;
    margin: 0;
}

.footer-credit-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Footer Responsive Ayarları */
@media (max-width: 992px) {
    .footer-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Floating Widgets (Sahibinden & WhatsApp) */
.floating-widgets-container {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom));
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-widget {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.widget-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.widget-s-letter {
    font-weight: 900;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    text-transform: lowercase;
}

.widget-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Sahibinden Widget (Sarı) */
.btn-widget-sahibinden {
    background-color: #FFDB00;
    color: #111111;
}

.btn-widget-sahibinden .widget-icon-wrap {
    background-color: #111111;
    color: #FFFFFF;
}

.btn-widget-sahibinden:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 219, 0, 0.5);
}

/* WhatsApp Widget (Yeşil) */
.btn-widget-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.btn-widget-whatsapp .widget-icon-wrap {
    background-color: transparent;
    color: #FFFFFF;
}

.btn-widget-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Pulse Animations */
@keyframes widgetPulseSahibinden {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(255, 219, 0, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 219, 0, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(255, 219, 0, 0);
    }
}

@keyframes widgetPulseWhatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 0 0px rgba(37, 211, 102, 0);
    }
}

.btn-widget-sahibinden {
    animation: widgetPulseSahibinden 3s infinite 1.5s;
}

.btn-widget-whatsapp {
    animation: widgetPulseWhatsapp 3s infinite;
}

.btn-widget-sahibinden:hover,
.btn-widget-whatsapp:hover {
    animation: none;
}

/* Responsive Floating Widgets */
@media (max-width: 480px) {
    .floating-widgets-container {
        bottom: calc(20px + env(safe-area-inset-bottom));
        right: 20px;
        gap: 8px;
    }
    .widget-label {
        display: none;
    }
    .floating-widget {
        padding: 8px;
        border-radius: 50%;
    }
    .widget-icon-wrap {
        margin-right: 0;
        width: 32px;
        height: 32px;
    }
    .widget-s-letter {
        font-size: 16px;
    }
    .widget-icon-wrap svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-bottom: 2px solid var(--primary);
        gap: 20px;
    }
    
    .site-nav.open {
        display: flex;
    }
    
    .site-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left, .footer-right {
        order: 2;
    }
    .footer-center {
        order: 1;
    }
}

/* Scroll Animasyon Sınıfları */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero ve Diğer Anasayfa Stilleri */
.hero-section {
    background: linear-gradient(rgba(250, 249, 246, 0.8), rgba(250, 249, 246, 0.9)), url('../img/logo.jpg') no-repeat center center/cover;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.section-tag {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    margin-bottom: 40px;
}

/* Hakkımızda Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.about-featured-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--border-color);
}

/* Portföyümüz Section */
.portfolio-section {
    background-color: var(--bg-main);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-body {
    padding: 24px;
    flex-grow: 1;
}

.portfolio-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

.portfolio-card-footer {
    padding: 0 24px 24px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-visit-sahibinden {
    background-color: #FFDB00;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 219, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-visit-sahibinden:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(255, 219, 0, 0.4);
    color: #111111;
}

.fallback-card {
    grid-column: 1 / -1;
}

/* Çözüm Ortakları */
.partners-section {
    background-color: #fcfbfa;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
}

/* Harita Bölümü */
.home-map-section {
    padding: 80px 0;
}

.map-frame {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-featured-logo {
        margin: 0 auto;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .partners-grid-new {
        gap: 30px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Alt Sayfa Tasarımları */
.page-banner {
    background-color: #f7f6f2;
    padding: 80px 0 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-banner h1 {
    font-size: 44px;
    color: var(--text-dark);
}

.banner-lead {
    font-size: 18px;
    max-width: 600px;
}

.about-detail-section {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-detail-image {
    width: 100%;
    max-width: 380px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--border-color);
}

.values-list {
    list-style: none;
    margin-top: 15px;
}

.values-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-detail-image {
        margin: 0 auto;
    }
}

/* Hizmetler Stilleri */
.services-detail-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.service-icon-wrapper {
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-flex;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* İletişim Sayfa Stilleri */
.contact-detail-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-panel h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info-block {
    margin-top: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.info-value {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

.info-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    color: var(--primary);
}

/* Form Tasarımı */
.premium-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: #FAFAFA;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .premium-form {
        padding: 25px;
    }
}

/* Misyon, Vizyon & Hedef Bölümü */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 45px 30px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.mission-icon svg {
    transition: var(--transition);
}

.mission-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Hover Stilleri */
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
}

.mission-card:hover .mission-icon {
    background-color: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Portföy Kategorileri (Konut, Arsa, İş Yeri) Stilleri */
.portfolio-categories-section {
    padding: 85px 0;
    background-color: #FFFFFF; /* Gridin kırık beyazına karşılık saf beyaz arka plan alternatifi */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.portfolio-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-category-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    height: 360px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.portfolio-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.category-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-category-card:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(22, 22, 22, 0.9) 0%, rgba(22, 22, 22, 0.3) 50%, rgba(22, 22, 22, 0.1) 100%);
    transition: background-color 0.3s ease;
}

.portfolio-category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(22, 22, 22, 0.95) 0%, rgba(22, 22, 22, 0.45) 50%, rgba(22, 22, 22, 0.15) 100%);
}

.category-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.category-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.portfolio-category-card:hover .category-btn {
    color: #FFFFFF;
    transform: translateX(6px);
}

/* Kategori Responsive */
@media (max-width: 992px) {
    .portfolio-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .portfolio-category-card:last-child {
        grid-column: 1 / -1; /* Son kartı alt satıra yayıp dengeler */
    }
}

@media (max-width: 768px) {
    .portfolio-categories-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-category-card {
        height: 280px;
    }
    .portfolio-category-card:last-child {
        grid-column: auto;
    }
}


