/**
 * Yücedağ Hukuk Bürosu - Premium Kurumsal Tema
 * Kurumsal ve Profesyonel Tasarım
 * Renk Paleti: Koyu Lacivert, Altın Aksan, Profesyonel Mavi
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
    /* Ana Renk Paleti - Kurumsal/Profesyonel */
    --primary: #0A2647;           /* Koyu lacivert - güven */
    --primary-dark: #061529;      /* Daha koyu lacivert */
    --primary-light: #144272;     /* Açık lacivert */
    --accent: #1E5F9F;            /* Canlı mavi - aksiyonlar */
    --accent-light: #2d7bc4;      /* Açık aksan mavi */
    --gold: #C9A050;              /* Altın - lüks hissi */
    --gold-light: #d4b36a;        /* Açık altın */
    --gold-dark: #a8843f;         /* Koyu altın */
    
    /* Arka Plan Renkleri */
    --white: #FFFFFF;
    --light: #F8FAFC;             /* Çok hafif mavi-gri */
    --light-bg: #EEF2F6;          /* Hafif gri-mavi */
    --cream: #FAFBFC;             /* Krem beyaz */
    
    /* Metin Renkleri */
    --secondary: #0A2647;
    --text: #1E293B;              /* Koyu slate */
    --text-light: #475569;        /* Orta slate */
    --text-muted: #64748B;        /* Açık slate */
    --gray: #94A3B8;
    
    /* Border ve Ayırıcılar */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Gölgeler */
    --shadow-xs: 0 1px 2px rgba(10, 38, 71, 0.05);
    --shadow: 0 4px 20px rgba(10, 38, 71, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 38, 71, 0.1);
    --shadow-lg: 0 15px 50px rgba(10, 38, 71, 0.15);
    --shadow-xl: 0 25px 80px rgba(10, 38, 71, 0.2);
    --shadow-gold: 0 10px 40px rgba(201, 160, 80, 0.25);
    
    /* Geçişler */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Diğer */
    --whatsapp: #25D366;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Font Aileleri */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    
    /* Eski uyumluluk için */
    --e-global-color-primary: var(--white);
    --e-global-color-secondary: var(--primary);
    --e-global-color-text: var(--text);
    --e-global-color-accent: var(--accent);
    --e-global-color-accent-light: rgba(30, 95, 159, 0.3);
    --e-global-color-border: var(--border);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* AOS Custom Animations - Laçin Style */
[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in-up"] {
    transform: scale(0.9) translateY(30px);
}

[data-aos].aos-animate {
    transform: translateY(0) translateX(0) scale(1);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

/* Başlık fontları */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* About Page Section - Container hizalaması */
.about-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* About Page Section */
.about-page-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Sol Taraf İçerik */
.about-content-left {
    padding-right: 2rem;
}

.about-content-left .section-subtitle {
    text-align: left;
    justify-content: flex-start;
}

.about-content-left .section-title {
    text-align: left;
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-heading-subtitle {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

.about-text-content {
    font-size: 1.1rem;
    line-height: 1.95;
    color: var(--text);
    font-weight: 400;
    margin-top: 1.5rem;
}

.about-text-content p {
    margin-bottom: 1.5rem;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

.about-text-content h3,
.about-text-content h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text-content h3:first-child,
.about-text-content h4:first-child {
    margin-top: 0;
}

/* About Collage (Birsen Hukuk Tarzı) */
.about-collage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collage-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.collage-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-main:hover img {
    transform: scale(1.03);
}

.collage-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.collage-small {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.collage-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-small:hover img {
    transform: scale(1.05);
}

/* About Content Right */
.about-content-right {
    padding-left: 2rem;
}

.about-content-right .section-title {
    font-size: 2.25rem;
    line-height: 1.3;
}

/* About CTA Buttons */
.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.cta-phone {
    display: flex;
    flex-direction: column;
}

.cta-phone-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.cta-phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-phone-number:hover {
    color: var(--secondary);
}

.cta-phone-number i {
    color: var(--secondary);
}

/* About Gallery Styles */
.about-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.about-gallery-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    object-fit: cover;
}

.about-gallery-item:hover img {
    transform: scale(1.05);
}

.about-gallery-image {
    cursor: pointer;
}

/* Büyük görsel (ilk görsel) */
.about-gallery-item-large {
    width: 100%;
    margin-bottom: 0;
}

.about-gallery-item-large img {
    height: 400px;
    min-height: 350px;
    max-height: 450px;
    width: 100%;
}

/* Küçük görseller (2. ve 3. görsel) */
.about-gallery .row.g-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0;
    width: 100%;
}

.about-gallery .row.g-3 > .col-6 {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.about-gallery-item-small {
    width: 100%;
    height: 100%;
}

.about-gallery-item-small img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Sortable Styles */
.sortable-ghost {
    opacity: 0.4;
    background: #f0f0f0;
}

.sortable-chosen {
    cursor: grabbing;
}

.sortable-drag {
    opacity: 0.8;
}

.drag-handle {
    cursor: move;
    user-select: none;
}

.drag-handle:hover {
    background-color: #6c757d !important;
}

/* Cropper Modal Styles */
#cropImageModal .img-container {
    max-height: 70vh;
    overflow: auto;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
}

#cropImageModal .img-container img {
    max-width: 100%;
    height: auto;
}

/* Lightbox Gallery Styles */
.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
}

/* Responsive About Page */
@media (max-width: 991px) {
    .about-content-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-content-left .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-content-left .section-subtitle {
        text-align: center;
        justify-content: center;
    }
    
    .about-heading-subtitle {
        text-align: center;
    }
    
    .about-text-content {
        text-align: center;
    }
    
    .about-gallery {
        gap: 1rem;
    }
    
    .about-gallery-item-large img {
        height: 300px;
        min-height: 280px;
        max-height: 350px;
    }
    
    .about-gallery-item-small img {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 180px;
    }
    
    .about-content-wrapper {
        margin-top: 3rem;
        padding: 0;
    }
    
    .about-content-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .about-content-card-top {
        padding: 2rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    
    .about-features-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 767px) {
    .about-content-left .section-title {
        font-size: 1.75rem;
    }
    
    .about-heading-subtitle {
        font-size: 1.15rem;
    }
    
    .about-text-content {
        font-size: 1rem;
    }
    
    .about-gallery {
        gap: 0.75rem;
    }
    
    .about-gallery-item-large img {
        height: 250px;
        min-height: 220px;
        max-height: 300px;
    }
    
    .about-gallery-item-small img {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 150px;
    }
    
    /* Mobilde küçük görseller alt alta */
    .about-gallery .row.g-3 {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .about-content-wrapper {
        margin-top: 2rem;
    }
    
    .about-content-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .about-content-card-top {
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .about-content-card .about-text,
    .about-content-card-top .about-text {
        font-size: 1rem;
    }
    
    .about-features-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .about-features-card .features-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 160, 80, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0;
    font-size: 13px;
    border-bottom: 2px solid var(--gold);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 160, 80, 0.5), transparent);
}

.top-bar .row {
    align-items: center;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 12px 0;
}

.top-bar-info li {
    color: rgba(255,255,255,0.85);
}

.top-bar-info li a,
.top-bar-info li {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-info li a:hover {
    color: var(--gold);
}

.top-bar-info i {
    color: var(--gold);
    font-size: 13px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.top-bar-social li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-radius: 6px;
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.top-bar-social li a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Smart Sticky Header - Hide/Show Animation */
.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header .navbar {
    padding: 0;
}

.main-header .navbar-brand {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header .navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.main-header .navbar-brand::after {
    content: '';
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, var(--gold), transparent);
    display: none;
}

.main-header .logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    padding: 0;
    letter-spacing: -0.5px;
}

.main-header .navbar-nav {
    gap: 5px;
}

.main-header .navbar-nav .nav-link {
    color: var(--text) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 28px 18px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.main-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.has-submenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Hover ile açılma */
.main-header .nav-item.has-submenu {
    position: relative;
}

.main-header .nav-item.has-submenu > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-header .dropdown-menu {
    border: none;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    margin-top: 0;
    min-width: 260px;
    background: var(--white);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hover ile açılma */
@media (min-width: 992px) {
    .main-header .nav-item.has-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.main-header .dropdown-item {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.main-header .dropdown-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.main-header .dropdown-item:hover::before {
    height: 20px;
}

.main-header .dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 28px;
}

.main-header .dropdown-item.view-all {
    background: var(--light);
    color: var(--gold);
    font-weight: 600;
    border-top: 1px solid var(--border);
    margin-top: 5px;
    padding-top: 15px;
}

.main-header .dropdown-item.view-all:hover {
    background: var(--gold);
    color: var(--white);
}

.main-header .dropdown-item.view-all::before {
    display: none;
}

.main-header .dropdown-divider {
    margin: 8px 0;
    border-color: var(--border);
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--border);
}

.header-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.header-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
}

.btn-header-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.35);
}

/* Navbar Toggler */
.main-header .navbar-toggler {
    border: none;
    padding: 10px;
    color: var(--primary);
    font-size: 1.5rem;
}

.main-header .navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile */
@media (max-width: 991px) {
    .main-header .navbar-collapse {
        background: var(--white);
        padding: 25px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        border: 1px solid var(--border);
    }
    
    .main-header .navbar-nav .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-light);
    }
    
    .main-header .navbar-nav .nav-link::after {
        display: none;
    }
    
    .main-header .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-social {
        margin: 20px 0 0 0;
        padding: 20px 0 0 0;
        border-left: none;
        border-top: 1px solid var(--border);
        justify-content: center;
    }
    
    .header-cta {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--light) 0%, #EDF2F7 50%, var(--cream) 100%);
    padding: 100px 0 80px; /* Closer to header */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 38, 71, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 30px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--gold);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(201, 160, 80, 0.2);
    z-index: -1;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

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

/* Hero Features - Yan Yana Layout */
.hero-features-row {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.hero-feature-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex: 1;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.hero-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.hero-feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.hero-feature-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Eski features için fallback */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.hero-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-feature p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image img {
    /* Varsayılan değerler - inline style ile override edilebilir */
    max-height: var(--hero-img-max-height, 550px);
    border-radius: var(--hero-img-border-radius, 15px);
    transition: all 0.3s ease;
}

/* Hero Image Hover Efektleri */
.hero-image img.hover-zoom:hover {
    transform: scale(1.05) !important;
}
.hero-image img.hover-brightness:hover {
    filter: brightness(1.15) !important;
}
.hero-image img.hover-lift:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* Google Badge - Premium Style */
.hero-google-badge {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    border: 1px solid rgba(201, 160, 80, 0.2);
}

.google-badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.google-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.google-rating {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.google-avatars {
    display: flex;
    align-items: center;
}

.google-avatars .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px;
    overflow: hidden;
    background: var(--light);
    box-shadow: var(--shadow-xs);
}

.google-avatars .avatar:first-child {
    margin-left: 0;
}

.google-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.google-avatars .avatar-plus {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.google-avatars .avatar-plus:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.min-vh-hero {
    min-height: 70vh;
}

/* Hero Responsive */
@media (max-width: 1199px) {
    .hero-features-row {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features-row {
        margin-top: 30px;
    }
    
    .hero-feature-box {
        justify-content: center;
        text-align: left;
    }
    
    .min-vh-hero {
        min-height: auto !important;
        align-items: flex-start !important;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== STATS SECTION - PREMIUM STYLE ===== */
.stats-section {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

@media (max-width: 767px) {
    .stats-section {
        margin-top: -30px;
    }
}

.stats-section .container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 55px 65px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201, 160, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.stats-section .container::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    flex: 1;
    min-width: 200px;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 80, 0.15);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-item:hover .stat-icon-circle {
    background: rgba(201, 160, 80, 0.25);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(201, 160, 80, 0.3);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .stats-section .container {
        padding: 35px 25px;
        border-radius: var(--radius-lg);
    }
    
    .stats-grid {
        gap: 25px;
    }
    
    .stat-item {
        flex: 0 0 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    
    .stat-item:nth-child(odd):nth-last-child(-n+2),
    .stat-item:nth-child(even):nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .stats-section .container {
        padding: 30px 20px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 100%;
        justify-content: flex-start;
    }
    
    .stat-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-subtitle::after {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0 100px;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230A2647' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.about-images {
    position: relative;
    height: 100%;
}

.about-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    position: relative;
}

.about-main-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

.about-main-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-small-images {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: 10px;
}

.about-small-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-counter {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(201, 160, 80, 0.3);
}

.about-counter .number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--gold);
}

.about-counter .label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content {
    padding-left: 50px;
    padding-top: 0;
    margin-top: 0;
    position: relative;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.3;
}

/* İçerik Wrapper (Görsellerin Altından Sonra) */
.about-content-wrapper {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

/* İçerik Card (Görsellerin Altında) */
.about-content-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
}

/* İçerik Card (Başlığın Hemen Altında) */
.about-content-card-top {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin: 0 auto 2.5rem;
    border: 1px solid var(--border-light);
    max-width: 1000px;
}

.about-content-card .about-text,
.about-content-card-top .about-text {
    font-size: 1.125rem;
    line-height: 1.95;
    color: var(--text);
    font-weight: 400;
}

.about-content-card .about-text p,
.about-content-card-top .about-text p {
    margin-bottom: 1.5rem;
}

.about-content-card .about-text p:last-child,
.about-content-card-top .about-text p:last-child {
    margin-bottom: 0;
}

.about-content-card .about-text h3,
.about-content-card .about-text h4,
.about-content-card-top .about-text h3,
.about-content-card-top .about-text h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content-card .about-text h3:first-child,
.about-content-card .about-text h4:first-child,
.about-content-card-top .about-text h3:first-child,
.about-content-card-top .about-text h4:first-child {
    margin-top: 0;
}

/* Özellikler Card */
.about-features-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(10, 38, 71, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.about-features-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-features-card .features-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-features-card .features-title i {
    color: var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(201, 160, 80, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 160, 80, 0.3);
}

.feature-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-text {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-pill {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
    transition: all 0.3s ease;
}

.btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
}

/* Misyon Bölümü */
.mission-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-content p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.mission-content p:last-child {
    margin-bottom: 0;
}

.mission-content h3,
.mission-content h4 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-content h3:first-child,
.mission-content h4:first-child {
    margin-top: 0;
}

.mission-content ul,
.mission-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.mission-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-main-image::before,
    .about-main-image::after {
        display: none;
    }
    
    .about-content-full {
        padding: 1.5rem 0;
    }
    
    .about-content-full .about-text {
        font-size: 1rem;
    }
    
    .about-content-full .about-features {
        padding: 1.5rem;
    }
}

.about-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.about-principles-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-principles-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: var(--gold);
    border-radius: 2px;
}

.about-principles {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-principles li {
    padding: 18px 20px;
    padding-left: 25px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.about-principles li:hover {
    background: var(--cream);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.about-principles li:last-child {
    margin-bottom: 0;
}

.about-principles li::before {
    display: none;
}

.about-principles li strong {
    color: var(--secondary);
    font-weight: 600;
}

.about-features {
    margin: 25px 0;
    padding: 0;
}

.about-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
    font-weight: 500;
}

.about-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== SERVICES SECTION - PREMIUM STYLE ===== */
.services-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 160, 80, 0.2);
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 28px 35px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .service-icon::after {
    width: 50px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .btn-link {
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
}

.service-card .btn-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.service-card:hover .btn-link {
    color: var(--gold);
}

.service-card:hover .btn-link i {
    transform: translateX(6px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--white);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.cta-section .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.cta-section .section-subtitle::before,
.cta-section .section-subtitle::after {
    display: none;
}

.cta-section .section-subtitle::before {
    display: block;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Contact Form in CTA */
.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 160, 80, 0.3);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 700;
    color: rgba(201, 160, 80, 0.1);
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 2px solid var(--gold);
}

.avatar-placeholder {
    width: 55px;
    height: 55px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-info small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
    background: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 160, 80, 0.3);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 38, 71, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image::before {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-date i {
    color: var(--gold);
}

/* Featured Badge for Blog Cards */
.blog-card-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(201, 160, 80, 0.4);
    z-index: 2;
}

.blog-card-image {
    position: relative;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-card .btn-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card .btn-link i {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.blog-card:hover .btn-link {
    color: var(--gold);
}

.blog-card:hover .btn-link i {
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 95, 159, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230A2647' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px 10px;
    cursor: pointer;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-info {
    background: var(--primary);
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-info-item a {
    color: var(--white);
    opacity: 0.9;
}

.contact-info-item a:hover {
    opacity: 1;
    color: var(--white);
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.main-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 45px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 55px;
    width: auto;
}

.footer-about p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    width: 45px;
    height: 45px;
    background: rgba(201, 160, 80, 0.1);
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-contact li a,
.footer-contact li span {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.footer-bottom .row {
    width: 100%;
}

@media (max-width: 767px) {
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .col-md-4 {
        width: 100%;
        text-align: center !important;
        margin-bottom: 12px;
    }
    
    .footer-bottom .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .footer-bottom-links {
        justify-content: center !important;
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .footer-bottom-links li {
        display: inline-block;
    }
    
    .footer-bottom-links li a {
        white-space: nowrap;
    }
    
    .kepezweb-credit {
        justify-content: center;
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 70px; /* Extra top padding for fixed header */
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span,
.breadcrumb .breadcrumb-item {
    color: rgba(255,255,255,0.7);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-widget {
    bottom: 80px;
    right: 15px;
    position: fixed;
    transform: none !important;
    -webkit-transform: none !important;
    z-index: 99995;
}

/* Chatbot Position Classes */
.chatbot-widget.pos-left-bottom { left: 20px; bottom: 20px; right: auto; top: auto; }
.chatbot-widget.pos-right-bottom { right: 20px; bottom: 20px; left: auto; top: auto; }
.chatbot-widget.pos-left-top { left: 20px; top: 100px; right: auto; bottom: auto; }
.chatbot-widget.pos-right-top { right: 20px; top: 100px; left: auto; bottom: auto; }

/* Chatbot window position adjustments */
.chatbot-widget.pos-left-bottom .chatbot-window,
.chatbot-widget.pos-left-top .chatbot-window { right: auto; left: 0; }
.chatbot-widget.pos-right-bottom .chatbot-window,
.chatbot-widget.pos-right-top .chatbot-window { left: auto; right: 0; }
.chatbot-widget.pos-left-top .chatbot-window,
.chatbot-widget.pos-right-top .chatbot-window { bottom: auto; top: 75px; }

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--chatbot-color, var(--accent)) 0%, var(--primary) 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 160, 80, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.chatbot-toggle:hover::before {
    left: 100%;
}

/* Chatbot Size Classes */
.chatbot-widget.size-small .chatbot-toggle { width: 48px; height: 48px; font-size: 20px; }
.chatbot-widget.size-medium .chatbot-toggle { width: 56px; height: 56px; font-size: 22px; }
.chatbot-widget.size-large .chatbot-toggle { width: 64px; height: 64px; font-size: 26px; }

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(201, 160, 80, 0.5);
    border-color: var(--gold-light);
}

.chatbot-icon-open,
.chatbot-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.chatbot-icon-close {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.chatbot-widget.open .chatbot-icon-open {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.chatbot-widget.open .chatbot-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Chatbot Overlay - arka plan kararması */
.chatbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.chatbot-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    max-height: 550px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Animasyon için */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.chatbot-widget.open .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--chatbot-color, var(--primary)) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.chatbot-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 160, 80, 0.5), transparent);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.chatbot-avatar:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    transform: scale(1.05);
}

.chatbot-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    color: var(--white) !important;
}

.chatbot-status {
    font-size: 0.8rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white) !important;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(201, 160, 80, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.chatbot-minimize {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(201, 160, 80, 0.3);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbot-minimize:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(201, 160, 80, 0.4);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light) 100%);
    min-height: 300px;
    max-height: 450px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.chatbot-message {
    margin-bottom: 15px;
}

.chatbot-message .message-content {
    padding: 14px 18px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: var(--shadow-xs);
}

.chatbot-message.bot .message-content {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    color: var(--text);
    border: 1px solid var(--border);
    border-bottom-left-radius: 5px;
}

.chatbot-message.user .message-content {
    background: linear-gradient(135deg, var(--chatbot-color, var(--accent)) 0%, var(--primary) 100%);
    color: var(--white);
    margin-left: auto;
    border-bottom-right-radius: 5px;
    box-shadow: var(--shadow);
}

.chatbot-quick-questions {
    margin-top: 15px;
}

.chatbot-quick-questions p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-quick-questions p::before {
    content: '⚡';
    color: var(--gold);
    font-size: 1rem;
}

.chatbot-quick-questions .quick-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: var(--white);
    border: 2px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.chatbot-quick-questions .quick-btn {
    position: relative;
    z-index: 1;
}

.chatbot-quick-questions .quick-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border-color: var(--primary);
    border-left-color: var(--gold);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.chatbot-typing {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: typing 1.4s infinite;
    box-shadow: 0 0 6px rgba(201, 160, 80, 0.5);
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.chatbot-input-area {
    padding: 18px;
    background: linear-gradient(to top, var(--white) 0%, var(--light) 100%);
    border-top: 2px solid var(--border);
    position: relative;
}

.chatbot-input-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.chatbot-input-area form {
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 30px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text) !important;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.chatbot-input-area input::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

.chatbot-input-area input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1), var(--shadow);
}

.chatbot-input-area button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input-area button:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* Lawyer Redirect */
.lawyer-redirect {
    background: linear-gradient(135deg, var(--light) 0%, var(--light-bg) 100%) !important;
    border: 2px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-xs);
}

.lawyer-redirect p {
    margin-bottom: 10px;
}

.redirect-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.redirect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.redirect-btn.phone-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.redirect-btn.phone-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.redirect-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.redirect-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1da851 0%, #128c3e 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-top: 30px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -5px;
    }
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
}

.process-step {
    display: flex;
    gap: 25px;
    padding: 28px 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
    background: var(--white);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 55px;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.team-card {
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
}

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

.team-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 100%);
}

.team-image::before {
    display: none;
}

.team-card:hover .team-image::before {
    display: none;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.team-info {
    padding: 20px 15px;
    text-align: center;
    background: var(--white);
    border-top: none;
    position: relative;
    z-index: 5;
}

.team-info::before {
    display: none;
}

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-info span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.team-info .btn-bio {
    margin-top: 5px;
}

/* Biyografi Butonu */
.btn-bio {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-bio:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-bio i {
    font-size: 0.75rem;
}

/* Biyografi Modal */
.bio-modal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 25px;
}

.bio-modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bio-modal-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.bio-modal .modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.bio-modal-title {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.bio-modal .modal-body {
    padding: 25px;
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text);
}

.bio-modal .modal-body p {
    margin-bottom: 15px;
}

.bio-modal .modal-body ul,
.bio-modal .modal-body ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* ===== CTA SECTION OVERRIDE ===== */
.cta-section {
    background: var(--white);
    padding: 100px 0;
    text-align: left;
}

.cta-section .section-subtitle {
    display: block;
    margin-bottom: 10px;
}

.cta-section .section-title {
    margin-bottom: 30px;
}

/* ===== FOOTER BOTTOM LINKS ===== */
.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.footer-bottom-links li a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--gold);
}

/* KepezWeb Credit - Premium Style */
.kepezweb-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.kepezweb-credit:hover {
    color: rgba(255,255,255,0.8);
}

.kepezweb-made {
    font-weight: 400;
    opacity: 0.7;
}

.kepezweb-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.kepezweb-logo svg {
    flex-shrink: 0;
}

.kepezweb-credit:hover .kepezweb-logo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.footer-copyright-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Legal Content Pages (Privacy, Terms) */
.legal-content {
    max-width: 100%;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.legal-content h2:first-of-type {
    margin-top: 1rem;
}

.legal-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content ul li::marker {
    color: var(--gold);
}

/* ===== WHATSAPP BUTTON ENHANCED ===== */
.whatsapp-float {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* WhatsApp Position Classes */
.whatsapp-float.pos-left-bottom { left: 20px; bottom: 20px; right: auto; top: auto; }
.whatsapp-float.pos-right-bottom { right: 20px; bottom: 20px; left: auto; top: auto; }
.whatsapp-float.pos-left-top { left: 20px; top: 100px; right: auto; bottom: auto; }
.whatsapp-float.pos-right-top { right: 20px; top: 100px; left: auto; bottom: auto; }

/* WhatsApp Size Classes */
.whatsapp-float.size-small { padding: 10px 16px; }
.whatsapp-float.size-small i { font-size: 20px; }
.whatsapp-float.size-small .whatsapp-text { font-size: 13px; }

.whatsapp-float.size-medium { padding: 14px 22px; }
.whatsapp-float.size-medium i { font-size: 24px; }
.whatsapp-float.size-medium .whatsapp-text { font-size: 14px; }

.whatsapp-float.size-large { padding: 16px 26px; }
.whatsapp-float.size-large i { font-size: 28px; }
.whatsapp-float.size-large .whatsapp-text { font-size: 15px; }

/* Icon only mode */
.whatsapp-float.icon-only {
    padding: 14px;
    border-radius: 50%;
}
.whatsapp-float.icon-only.size-small { width: 48px; height: 48px; padding: 0; justify-content: center; }
.whatsapp-float.icon-only.size-medium { width: 56px; height: 56px; padding: 0; justify-content: center; }
.whatsapp-float.icon-only.size-large { width: 64px; height: 64px; padding: 0; justify-content: center; }

.whatsapp-float:hover {
    transform: scale(1.05) translateZ(0);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    /* WhatsApp Mobile - position classes override */
    .whatsapp-float {
        padding: 0 !important;
        border-radius: 50% !important;
        width: 52px !important;
        height: 52px !important;
        justify-content: center;
    }
    
    .whatsapp-float.pos-left-bottom,
    .whatsapp-float.pos-left-top { left: 15px !important; right: auto !important; }
    .whatsapp-float.pos-right-bottom,
    .whatsapp-float.pos-right-top { right: 15px !important; left: auto !important; }
    .whatsapp-float.pos-left-bottom,
    .whatsapp-float.pos-right-bottom { bottom: 20px !important; top: auto !important; }
    .whatsapp-float.pos-left-top,
    .whatsapp-float.pos-right-top { top: 80px !important; bottom: auto !important; }
    
    .whatsapp-float i {
        font-size: 22px !important;
    }
    
    .whatsapp-text {
        display: none !important;
    }
    
    /* Chatbot Widget Mobile */
    .chatbot-widget.pos-left-bottom,
    .chatbot-widget.pos-left-top { left: 15px !important; right: auto !important; }
    .chatbot-widget.pos-right-bottom,
    .chatbot-widget.pos-right-top { right: 15px !important; left: auto !important; }
    .chatbot-widget.pos-left-bottom,
    .chatbot-widget.pos-right-bottom { bottom: 20px !important; top: auto !important; }
    .chatbot-widget.pos-left-top,
    .chatbot-widget.pos-right-top { top: 80px !important; bottom: auto !important; }
    
    .chatbot-toggle {
        width: 52px !important;
        height: 52px !important;
        font-size: 20px !important;
    }
    
    /* Chatbot Window Mobile - Normal size, positioned correctly - Override ALL desktop rules */
    /* Handle both widget-contained and body-appended windows */
    .chatbot-window,
    body > .chatbot-window,
    .chatbot-widget .chatbot-window,
    #chatbot-widget .chatbot-window,
    .chatbot-widget.pos-left-bottom .chatbot-window,
    .chatbot-widget.pos-left-top .chatbot-window,
    .chatbot-widget.pos-right-bottom .chatbot-window,
    .chatbot-widget.pos-right-top .chatbot-window {
        position: fixed !important;
        bottom: 90px !important;
        right: 15px !important;
        left: auto !important;
        top: auto !important;
        width: calc(100vw - 30px) !important;
        max-width: 380px !important;
        height: auto !important;
        max-height: calc(100vh - 120px) !important;
        border-radius: 20px !important;
        z-index: 99995 !important;
        margin: 0 !important;
        padding: 0 !important;
        /* Kapali hali - animasyon */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(20px) scale(0.95) !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    }
    
    /* Acik hali - animasyon */
    .chatbot-widget.open .chatbot-window,
    .chatbot-widget.pos-left-bottom.open .chatbot-window,
    .chatbot-widget.pos-left-top.open .chatbot-window,
    .chatbot-widget.pos-right-bottom.open .chatbot-window,
    .chatbot-widget.pos-right-top.open .chatbot-window {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }
    
    /* When window is in body (mobile), ensure correct positioning */
    body > #chatbot-window.chatbot-window {
        position: fixed !important;
        bottom: 90px !important;
        right: 15px !important;
        left: auto !important;
        top: auto !important;
        width: calc(100vw - 30px) !important;
        max-width: 380px !important;
        height: auto !important;
        max-height: calc(100vh - 120px) !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }
    
    /* Position overrides for different widget positions on mobile */
    .chatbot-widget.pos-left-bottom .chatbot-window,
    .chatbot-widget.pos-left-bottom.open .chatbot-window {
        left: 15px !important;
        right: auto !important;
    }
    
    .chatbot-widget.pos-left-top .chatbot-window,
    .chatbot-widget.pos-left-top.open .chatbot-window {
        left: 15px !important;
        right: auto !important;
        top: 80px !important;
        bottom: auto !important;
    }
    
    .chatbot-widget.pos-right-top .chatbot-window,
    .chatbot-widget.pos-right-top.open .chatbot-window {
        top: 80px !important;
        bottom: auto !important;
    }
    
    /* Ensure display flex doesn't cause positioning issues on mobile */
    .chatbot-widget.open .chatbot-window,
    body > .chatbot-window {
        display: flex !important;
    }
    
    .chatbot-widget .chatbot-header,
    #chatbot-widget .chatbot-header {
        padding: 15px 20px !important;
        padding-top: calc(20px + env(safe-area-inset-top, 0)) !important;
    }
    
    .chatbot-widget .chatbot-messages,
    #chatbot-widget .chatbot-messages {
        max-height: calc(100vh - 180px) !important;
        height: calc(100vh - 180px) !important;
        flex: 1 !important;
    }
    
    .chatbot-widget .chatbot-input-area,
    #chatbot-widget .chatbot-input-area {
        padding: 15px !important;
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 0)) !important;
    }
    
    /* Back to top mobile - hidden on mobile to reduce clutter */
    .back-to-top {
        display: none !important;
    }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(2500px) rotateX(-50deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(2500px) rotateX(0);
}

/* Custom Hover Effects */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Link underline animation */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.link-underline:hover::after {
    width: 100%;
}

/* Pulse animation for CTA elements */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 160, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(201, 160, 80, 0);
    }
}

.pulse-gold {
    animation: pulse 2s infinite;
}

/* Fade in animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 991px) {
    .process-steps {
        margin-bottom: 50px;
    }
    
    .team-image {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        min-width: auto;
    }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.why-choose-content .section-title span {
    color: var(--gold);
}

.why-choose-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature-item {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.why-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 160, 80, 0.3);
}

.why-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--light);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature-item:hover .why-feature-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.why-feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-box {
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.stat-box .stat-icon {
    width: 55px;
    height: 55px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
    font-size: 22px;
    color: var(--white);
}

.stat-box:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: transparent;
}

.stat-box .stat-icon i {
    color: var(--primary);
    transition: var(--transition);
}

.stat-box:hover .stat-icon i {
    color: var(--white);
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary) !important;
}

.stat-box .stat-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== CONSULTATION BANNER ===== */
.consultation-banner {
    padding: 0;
    background: transparent;
}

.consultation-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: -50px auto 50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(201, 160, 80, 0.3);
    overflow: hidden;
}

.consultation-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.consultation-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.consultation-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    flex-shrink: 0;
}

.consultation-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.consultation-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.consultation-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.consultation-actions .btn-light {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    border: none;
}

.consultation-actions .btn-light:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.consultation-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.consultation-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.faq-header {
    padding-right: 40px;
}

.faq-header p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    border: 2px solid rgba(201, 160, 80, 0.3);
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 160, 80, 0.2);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
}

.faq-contact-content span {
    font-size: 0.9rem;
    opacity: 0.85;
    display: block;
    margin-bottom: 5px;
}

.faq-contact-content a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: var(--light);
    border-left-color: var(--gold);
}

.faq-question.active {
    background: var(--primary);
    color: var(--white);
    border-left-color: var(--gold);
}

.faq-question.active .faq-number,
.faq-question.active h4 {
    color: var(--white);
}

.faq-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 35px;
    width: 35px;
    height: 35px;
    background: rgba(201, 160, 80, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question.active .faq-number {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.faq-question h4 {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    padding: 22px 28px 28px 85px;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-features {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        margin-top: 50px;
    }
    
    .consultation-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .consultation-content {
        flex-direction: column;
    }
    
    .consultation-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .consultation-actions .btn {
        width: 100%;
    }
    
    .faq-header {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .faq-answer {
        padding-left: 25px;
    }
}

/* ===== PAGE BANNER ENHANCEMENTS ===== */
.page-banner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.page-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 160, 80, 0.15);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    margin: 0 auto 25px;
}

/* ===== BLOG PAGE SECTION ===== */
.blog-page-section {
    padding: 80px 0;
    background: var(--light);
}

.blog-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.blog-list-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.blog-list-title .title-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.blog-list-count {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-card-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta i {
    color: var(--gold);
    font-size: 0.75rem;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 38, 71, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.overlay-link {
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transform: scale(0.8);
    transition: var(--transition);
    text-decoration: none;
    z-index: 10;
    position: relative;
    pointer-events: auto;
}

.blog-card:hover .overlay-link {
    transform: scale(1);
}

.overlay-link:hover {
    background: var(--gold-light);
    color: var(--white);
    text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .pagination {
    justify-content: center;
    gap: 8px;
}

.blog-pagination .page-link {
    border: none;
    background: var(--white);
    color: var(--text);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.blog-pagination .page-prev,
.blog-pagination .page-next {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}

.widget-title i {
    color: var(--gold);
}

/* Search Widget */
.search-widget {
    padding: 0;
    overflow: hidden;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form .form-control {
    border: none;
    padding: 18px 60px 18px 22px;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.search-form .form-control:focus {
    box-shadow: none;
    background: var(--light);
}

.search-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

/* Categories Widget */
.category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--border-light);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: var(--text);
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.category-list .cat-arrow {
    color: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.category-list li a:hover .cat-arrow {
    opacity: 1;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 2px solid rgba(201, 160, 80, 0.3);
    padding: 0;
    overflow: hidden;
}

.cta-widget-inner {
    padding: 35px 28px;
    text-align: center;
    position: relative;
}

.cta-widget-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.cta-widget .cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 80, 0.15);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.cta-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-widget p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
    line-height: 1.6;
}

.cta-widget .btn-block {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}

.cta-widget .btn-block:last-child {
    margin-bottom: 0;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list li a {
    display: flex;
    gap: 15px;
    color: var(--text);
    transition: var(--transition);
}

.recent-posts-list li a:hover {
    color: var(--gold);
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
}

.recent-post-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.recent-post-date i {
    color: var(--gold);
}

/* Services Widget */
.services-widget .services-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-widget .services-list li {
    margin-bottom: 8px;
}

.services-widget .services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--light);
    border-radius: var(--radius);
    color: var(--text);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.services-widget .services-list li a:hover {
    background: var(--cream);
    border-left-color: var(--gold);
    padding-left: 20px;
}

.services-widget .services-list li a i {
    color: var(--gold);
    font-size: 14px;
}

.services-widget .services-list li a span {
    flex: 1;
}

.services-widget .services-list li a .arrow {
    opacity: 0;
    transition: var(--transition);
}

.services-widget .services-list li a:hover .arrow {
    opacity: 1;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
    margin: 0 auto 25px;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-muted);
}

/* ===== CONTACT PAGE SECTION ===== */
.contact-page-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 160, 80, 0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.contact-card-icon.whatsapp {
    border-color: var(--whatsapp);
    color: var(--whatsapp);
}

.contact-card:hover .contact-card-icon.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-card-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--gold);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header .section-subtitle {
    display: inline-block;
    margin-bottom: 10px;
}

.contact-form-header .section-subtitle::before,
.contact-form-header .section-subtitle::after {
    display: none;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.contact-info-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 25px 30px;
    border-bottom: 3px solid var(--gold);
}

.contact-info-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.contact-info-body {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .info-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item .info-icon.whatsapp {
    border-color: var(--whatsapp);
    color: var(--whatsapp);
}

.contact-info-item .info-content {
    flex: 1;
}

.contact-info-item .info-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-info-item .info-content span,
.contact-info-item .info-content a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-item .info-content a:hover {
    color: var(--gold);
}

.contact-info-footer {
    padding: 25px 30px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.lawyer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lawyer-badge > i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.lawyer-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.lawyer-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Social Card */
.contact-social-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-top: 25px;
    text-align: center;
}

.contact-social-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--border);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border-color: transparent;
}

.social-link.x-twitter:hover {
    background: #000;
    color: var(--white);
    border-color: #000;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white);
    border-color: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
    border-color: #ff0000;
}

/* Map Section */
.map-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border);
}

.map-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.map-wrapper {
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== SERVICES PAGE SECTION ===== */
.services-page-section {
    padding: 80px 0;
    background: var(--light);
}

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

.service-grid-item {
    transition: var(--transition);
}

.services-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 35px 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
}

.info-box-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.info-box-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-box-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Services CTA Section */
.services-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.services-cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(201, 160, 80, 0.3);
    box-shadow: var(--shadow-xl);
}

.services-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.services-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-inner .cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.services-cta-inner .cta-text {
    flex: 1;
}

.services-cta-inner .cta-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.services-cta-inner .cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 400px;
}

.services-cta-inner .cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail-section {
    padding: 80px 0;
    background: var(--light);
}

.service-content-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-featured-image {
    height: 350px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-body {
    padding: 45px;
}

.service-text {
    color: var(--text);
    line-height: 1.9;
    font-size: 1rem;
}

.service-text h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 18px;
}

.service-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 12px;
}

.service-text p {
    margin-bottom: 18px;
}

.service-text ul,
.service-text ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-text li {
    margin-bottom: 10px;
    position: relative;
}

.service-text strong {
    color: var(--primary);
}

.service-text blockquote {
    background: var(--light);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

/* Service FAQs Section */
.service-faqs-section {
    padding: 45px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.faqs-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faqs-title i {
    color: var(--gold);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Form Widget */
.form-widget {
    background: var(--light);
    border: 2px dashed var(--gold);
}

.form-widget-inner {
    text-align: center;
}

.form-widget-icon {
    width: 65px;
    height: 65px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.form-widget h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-widget p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1199px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .services-cta-inner .cta-content {
        flex-direction: column;
    }
    
    .services-cta-inner .cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-info-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .info-box-content {
        flex-direction: column;
    }
    
    .service-featured-image {
        height: 280px;
    }
    
    .service-content-body {
        padding: 35px;
    }
    
    .service-faqs-section {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-info-body {
        padding: 25px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .blog-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-featured-image {
        height: 220px;
    }
    
    .service-content-body {
        padding: 25px;
    }
    
    .service-faqs-section {
        padding: 25px;
    }
    
    .services-cta-inner .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .services-cta-inner .cta-actions .btn {
        width: 100%;
    }
}

/* ===== TEAM PAGE SECTION ===== */
.team-page-section {
    padding: 80px 0;
    background: var(--light);
}

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

.team-grid-item {
    transition: var(--transition);
}

.team-member-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 160, 80, 0.3);
}

.member-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member-card:hover .member-photo img {
    transform: scale(1.08);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--text-muted);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 38, 71, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    opacity: 0;
    transition: var(--transition);
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 12px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(20px);
}

.team-member-card:hover .member-social a {
    transform: translateY(0);
}

.member-social a:nth-child(1) { transition-delay: 0.05s; }
.member-social a:nth-child(2) { transition-delay: 0.1s; }
.member-social a:nth-child(3) { transition-delay: 0.15s; }

.member-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.member-info {
    padding: 28px;
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.member-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.member-title {
    display: block;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 5px;
}

.member-bar {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.specialty-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    background: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Team Info Box */
.team-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 35px 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
}

/* Team CTA Section */
.team-cta-section {
    padding: 50px 0;
    background: var(--white);
}

.team-cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(201, 160, 80, 0.3);
    box-shadow: var(--shadow-xl);
}

.team-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.team-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.team-cta-inner .cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.team-cta-inner .cta-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.team-cta-inner .cta-text h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.team-cta-inner .cta-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.team-cta-inner .cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Homepage Team Cards Mobile - Horizontal Layout */
@media (max-width: 767px) {
    .team-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .team-section .team-card {
        display: flex;
        flex-direction: row;
        height: auto;
    }
    
    .team-section .team-image {
        width: 120px;
        min-width: 120px;
        height: 150px;
        border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    }
    
    .team-section .team-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .team-section .team-info {
        flex: 1;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .team-section .team-info h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .team-section .team-info span {
        font-size: 0.85rem;
    }
    
    .team-section .team-social {
        position: static;
        opacity: 1;
        transform: none;
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }
    
    .team-section .team-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .team-section .team-card:hover {
        transform: none;
    }
}

/* Team Page Responsive */
@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .team-cta-inner .cta-content {
        flex-direction: column;
    }
    
    .team-cta-inner .cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .team-info-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .member-photo {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        height: 300px;
    }
    
    .team-cta-inner .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .team-cta-inner .cta-actions .btn {
        width: 100%;
    }
}

/* ===== MOBILE MENU STYLES ===== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 45px;
    height: 45px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--white);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu - Desktop'ta gizle */
@media (min-width: 992px) {
    .mobile-menu-overlay,
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile Menu Overlay - Smooth Fade */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 71, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Slide Menu - Laçin Style Animation */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease;
}

.mobile-menu.active {
    right: 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-bottom: 3px solid var(--gold);
}

.mobile-menu-logo img {
    max-height: 45px;
    width: auto;
}

.mobile-menu-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 15px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav > ul > li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-nav > ul > li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-nav > ul > li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-nav > ul > li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-nav > ul > li > a i:first-child {
    width: 20px;
    color: var(--gold);
    font-size: 16px;
}

.mobile-menu-nav > ul > li > a:hover,
.mobile-menu-nav > ul > li > a.active {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

.mobile-menu-nav > ul > li > a.active {
    border-left: 3px solid var(--gold);
}

/* Submenu Toggle */
.submenu-toggle {
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    transition: var(--transition);
}

.submenu-toggle i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.mobile-menu-nav li.has-submenu.open .submenu-toggle {
    background: var(--gold);
}

.mobile-menu-nav li.has-submenu.open .submenu-toggle i {
    color: var(--white);
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    background: var(--light);
    padding: 10px 0;
}

.mobile-menu-nav li.has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 52px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.mobile-submenu li a::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.mobile-submenu li a:hover {
    color: var(--primary);
    background: var(--cream);
}

.mobile-submenu li a:hover::before {
    opacity: 1;
}

.mobile-submenu .view-all-link {
    color: var(--gold);
    font-weight: 600;
}

/* Mobile Menu Contact */
.mobile-menu-contact {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-menu-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-contact-btn.phone {
    background: var(--primary);
    color: var(--white);
}

.mobile-contact-btn.phone:hover {
    background: var(--primary-dark);
}

.mobile-contact-btn.whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.mobile-contact-btn.whatsapp:hover {
    background: #1da851;
}

/* Mobile Menu Social */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--light);
}

.mobile-menu-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.mobile-menu-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Body scroll lock when menu open */
body.mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

html.mobile-menu-open {
    overflow: hidden !important;
}

/* Hide floating buttons when mobile menu is open */
body.mobile-menu-open .whatsapp-float,
body.mobile-menu-open .chatbot-widget,
body.mobile-menu-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Mobile Header Adjustments */
@media (max-width: 991px) {
    .main-header {
        padding: 10px 0;
    }
    
    .main-header .navbar-brand img {
        max-height: 40px;
    }
    
    .services-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    
    .services-cta-inner .cta-icon {
        margin: 0 auto;
    }
    
    .services-cta-inner .cta-text p {
        max-width: 100%;
    }
    
    .services-cta-inner .cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .services-cta-inner .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .services-cta-inner .cta-actions .btn {
        width: 100%;
    }
    
    .page-banner {
        padding: 120px 0 50px; /* Fixed header space on mobile */
    }
    
    .page-banner h1 {
        font-size: 1.75rem;
    }
    
    .page-banner-desc {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 991px) {
    /* Hero Section Mobile - Laçin Style */
    .hero-section {
        padding: 100px 0 40px; /* Fixed header space on mobile */
        text-align: center;
    }
    
    .hero-subtitle {
        justify-content: center;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .hero-subtitle::before {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        color: var(--text-light);
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 50px;
    }
    
    .hero-buttons .btn-outline {
        background: var(--white);
        border: 1px solid var(--border);
        color: var(--text);
    }
    
    .hero-features-row {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }
    
    .hero-feature-box {
        padding: 18px 20px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: left;
    }
    
    .hero-feature-box .hero-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
    }
    
    .hero-feature-box h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .hero-feature-box p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .min-vh-hero {
        min-height: auto !important;
    }
    
    /* Sections Mobile */
    .stats-section,
    .about-section,
    .services-section,
    .cta-section,
    .faq-section,
    .team-section,
    .testimonials-section,
    .blog-section {
        padding: 50px 0;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        margin-bottom: 20px;
        height: auto !important;
    }
    
    .service-card-inner {
        height: auto !important;
    }
    
    /* About Section Mobile - scroll fix */
    .about-images,
    .about-main-image {
        height: auto !important;
    }
    
    /* Container scroll fix */
    .container,
    .row,
    [class*="col-"] {
        overflow: visible !important;
        max-height: none !important;
    }
    
    .services-grid,
    .about-section .row,
    .about-content {
        overflow: visible !important;
        height: auto !important;
    }
    
    /* CTA Section Mobile */
    .contact-form {
        padding: 30px 20px;
    }
    
    .process-steps {
        margin-bottom: 30px;
    }
    
    /* Why Choose Stats Mobile */
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
}

@media (max-width: 575px) {
    /* Extra Small Devices */
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* Stats 2 columns on very small */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Forms Mobile */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .form-select {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    /* Cards Mobile */
    .service-card-inner,
    .team-card,
    .blog-card,
    .testimonial-card {
        padding: 20px;
    }
    
    /* FAQ Mobile */
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    /* Footer Mobile */
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-widget h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    /* Contact Cards Mobile */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    /* About Principles Mobile */
    .about-principles li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    /* Consultation Banner Mobile */
    .consultation-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px 50px;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .consultation-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .consultation-actions .btn {
        width: 100%;
    }
}

/* Safe area for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(80px + env(safe-area-inset-bottom));
    }
    
    .chatbot-widget {
        bottom: calc(80px + env(safe-area-inset-bottom));
    }
    
    .main-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Prevent horizontal scroll and bounce */
html, body {
    max-width: 100vw;
    overscroll-behavior-x: none;
}

@media (max-width: 767px) {
    html, body {
        overscroll-behavior-x: none; /* Sadece yatay - dikey pull-to-refresh aktif */
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
    }
    
    /* Fixed elements stability */
    .whatsapp-float,
    .chatbot-widget,
    .back-to-top {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        will-change: transform;
    }
}

/* ========================================
   Team Birsen Style (Birsen Hukuk Tarzı)
======================================== */
.team-birsen-section {
    padding: 80px 0;
    background: #fff;
}

.team-birsen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-birsen-item {
    display: flex;
}

.team-birsen-card {
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.birsen-photo-wrapper {
    position: relative;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    aspect-ratio: 3/4;
    overflow: hidden;
}

.birsen-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-birsen-card:hover .birsen-photo-wrapper img {
    transform: scale(1.05);
}

.birsen-social-icons {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.birsen-social-icons a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.birsen-social-icons a:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.birsen-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #999;
}

.birsen-info {
    padding: 1.25rem;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.birsen-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.birsen-title {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.birsen-info .btn-bio {
    margin-top: 5px;
}

/* Responsive Team Birsen */
@media (max-width: 1199px) {
    .team-birsen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .team-birsen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .team-birsen-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-birsen-section {
        padding: 50px 0;
    }
}

/* ========================================
   About Bottom Gallery (6 Resim)
======================================== */
.about-bottom-gallery {
    margin-top: 3rem;
}

.about-bottom-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.about-bottom-gallery .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.about-bottom-gallery .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.about-bottom-gallery .gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.about-bottom-gallery .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-bottom-gallery .gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-bottom-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-bottom-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-bottom-gallery .gallery-item img {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .about-bottom-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-bottom-gallery .gallery-item img {
        height: 120px;
    }
}

/* ===================================
   Chatbot Info Form Styles
   =================================== */
.chatbot-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 0;
}

.chatbot-info-form {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chatbot-info-form .info-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.chatbot-info-form .info-form-header i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.chatbot-info-form .info-form-header h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.chatbot-info-form .info-form-header p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.chatbot-info-form .form-group {
    margin-bottom: 15px;
}

.chatbot-info-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.chatbot-info-form .form-group label i {
    margin-right: 6px;
    color: var(--accent);
}

.chatbot-info-form .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.chatbot-info-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 95, 159, 0.1);
}

.chatbot-info-form .phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.chatbot-info-form .phone-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 95, 159, 0.1);
}

.chatbot-info-form .phone-prefix {
    padding: 12px 14px;
    background: var(--light-bg);
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}

.chatbot-info-form .phone-input-wrapper .form-control {
    border: none;
    border-radius: 0;
}

.chatbot-info-form .phone-input-wrapper .form-control:focus {
    box-shadow: none;
}

.chatbot-info-form .text-muted {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.chatbot-info-form .simple-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-info-form .simple-captcha span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg);
    padding: 10px 16px;
    border-radius: 8px;
}

.chatbot-info-form .simple-captcha .form-control {
    width: 100px;
}

.chatbot-info-form .btn-start-chat {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.chatbot-info-form .btn-start-chat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.chatbot-info-form .btn-start-chat i {
    margin-right: 8px;
}

.chatbot-info-form .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
}

/* ========================================
   Team Home Section - Ana Sayfa Ekibimiz
   Birsen Hukuk Tarzı Tasarım
======================================== */
.team-home-section {
    padding: 100px 0;
    background: var(--white);
}

.team-home-header {
    padding-right: 40px;
}

.team-home-header .section-subtitle {
    display: inline-block;
    margin-bottom: 16px;
}

.team-home-header .section-title {
    margin-bottom: 20px;
}

.team-home-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.team-home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-home-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.team-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-home-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-bg), var(--border-light));
}

.team-home-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-home-card:hover .team-home-photo img {
    transform: scale(1.05);
}

.team-home-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg), var(--border));
}

.team-home-placeholder i {
    font-size: 80px;
    color: var(--gray);
}

.team-home-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.team-home-card:hover .team-home-social {
    opacity: 1;
    transform: translateX(0);
}

.team-home-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-home-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.team-home-info {
    padding: 20px 24px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.team-home-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-home-info span {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
}

.team-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.team-home-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.team-home-link i {
    transition: transform 0.3s ease;
}

.team-home-link:hover i {
    transform: translateX(5px);
}

/* Responsive Team Home */
@media (max-width: 1199px) {
    .team-home-grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .team-home-section {
        padding: 70px 0;
    }
    
    .team-home-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .team-home-header .section-title {
        text-align: center !important;
    }
    
    .team-home-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .team-home-section {
        padding: 50px 0;
    }
    
    .team-home-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .team-home-info {
        padding: 16px 20px;
    }
    
    .team-home-info h4 {
        font-size: 16px;
    }
}
