/* ============================================
   ARVEN VETERİNER KLİNİĞİ - MAIN STYLESHEET
   Modern, Mobile-First, SEO Optimized
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #f97316;
    --secondary-dark: #ea580c;
    --secondary-light: #fb923c;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1200px;
    --header-height: 80px;
    --top-bar-height: 40px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: opacity var(--transition-fast);
}

.top-contact:hover {
    opacity: 0.85;
}

.top-contact i {
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

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

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

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

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.main-header.scrolled .navbar {
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: padding var(--transition-normal);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all var(--transition-normal);
}

.logo-light {
    display: none;
}

.main-header.scrolled .logo img {
    height: 45px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(47, 131, 159, 0.08);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu li a .sub-menu-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.dropdown-menu li:hover > a .sub-menu-indicator {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
}

.dropdown-menu li a:hover {
    background: rgba(47, 131, 159, 0.08);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Sub Dropdown Menu (Alt Hizmetler) */
.sub-dropdown-menu {
    list-style: none;
    padding: 5px 0 5px 15px;
    margin: 5px 0;
    border-left: 2px solid var(--primary-light);
    background: rgba(47, 131, 159, 0.03);
    display: none;
}

.dropdown-menu li:hover > .sub-dropdown-menu {
    display: block;
}

.sub-dropdown-menu li a {
    padding: 8px 15px;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-dropdown-menu li a i {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.sub-dropdown-menu li a:hover {
    background: rgba(47, 131, 159, 0.1);
    color: var(--primary-color);
    padding-left: 20px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-appointment i {
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1002;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger-line:nth-child(2) {
    margin: 6px 0;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 10px 15px;
        display: none;
        background: transparent;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        padding-right: 25px;
    }

    .dropdown-menu li a .sub-menu-indicator {
        right: 0;
        transition: transform 0.3s ease;
    }

    .dropdown-menu li.sub-open > a .sub-menu-indicator {
        transform: translateY(-50%) rotate(90deg);
    }

    .dropdown-menu li a:hover {
        padding-left: 10px;
        padding-right: 25px;
    }

    /* Mobile Sub Dropdown */
    .sub-dropdown-menu {
        display: none;
        padding-left: 20px;
        margin-top: 5px;
    }

    .dropdown-menu li.sub-open > .sub-dropdown-menu {
        display: block;
    }

    .sub-dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .top-bar-left {
        gap: 15px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .top-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }

    .hide-mobile {
        display: none !important;
    }

    .top-bar-content {
        justify-content: center;
        gap: 20px;
    }

    .top-bar-left {
        gap: 10px;
    }

    .logo img {
        height: 45px;
    }

    .main-header.scrolled .logo img {
        height: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: row;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 90vh;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ============================================
   HERO SECTION (Legacy support)
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-hero-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Hero Image/Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-main {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.floating-card-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.floating-card-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Slider Responsive */
@media (max-width: 992px) {
    .hero-slider {
        min-height: auto;
    }
    
    .slider-container {
        min-height: auto;
    }
    
    .slider-slide {
        padding: 60px 0;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-floating-card.card-1 {
        left: 0;
    }

    .hero-floating-card.card-2 {
        right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-floating-card {
        display: none;
    }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #1a4a5c 100%);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

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

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

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

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

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

.footer-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: all var(--transition-fast);
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: transform var(--transition-fast);
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-text span,
.contact-text a {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

.contact-text a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Footer Map */
.footer-map {
    width: 100%;
    line-height: 0;
}

.footer-map iframe {
    width: 100%;
    filter: grayscale(20%);
    transition: filter var(--transition-normal);
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright strong {
    color: var(--secondary-color);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

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

.footer-bottom-links span {
    opacity: 0.4;
}

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

    .footer-about {
        grid-column: span 2;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col:not(.footer-about) {
        text-align: left;
    }

    .footer-col:not(.footer-about) .footer-title::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 50px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-col {
        text-align: center !important;
    }

    .footer-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-links li a,
    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-map iframe {
        height: 250px;
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .chatbot-container {
        bottom: 20px;
        right: 85px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Body menu open state */
body.menu-open {
    overflow: hidden;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* ============================================
   HAKKIMIZDA SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.about-img-secondary {
    position: absolute;
    width: 55%;
    bottom: -30px;
    right: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
    z-index: 3;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    z-index: 4;
    animation: pulse 2s ease-in-out infinite;
}

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

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    opacity: 0.1;
    top: -50px;
    left: -50px;
    z-index: 1;
}

.about-content {
    padding-left: 20px;
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-subtitle::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-description-long {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    transition: all var(--transition-normal);
}

.about-feature:hover .about-feature-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.about-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.about-feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    transition: all var(--transition-normal);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.about-btn i {
    transition: transform var(--transition-fast);
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* About Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-subtitle {
        justify-content: center;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        max-width: 400px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-secondary {
        width: 50%;
        bottom: -20px;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }

    .about-experience-badge .number {
        font-size: 2rem;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
}


/* ============================================
   HİZMETLERİMİZ SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-subtitle::before,
.services-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.services-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: visible;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

.service-card-content {
    padding: 40px 25px 25px;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: var(--primary-color);
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.service-card-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

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

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

/* Service Card - No Image Variant */
.service-card-no-img .service-card-icon {
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 20px;
}

.service-card-no-img .service-card-content {
    padding: 25px;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta .btn {
    padding: 16px 35px;
}

/* Services Responsive */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }

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

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .service-card-image {
        height: 180px;
    }
}


/* ============================================
   NEDEN BİZ SECTION
   ============================================ */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-us-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-us-subtitle::before,
.why-us-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.why-us-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-us-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.why-us-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-normal);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-us-card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.why-us-card-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* Why Us Responsive */
@media (max-width: 992px) {
    .why-us-section {
        padding: 80px 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-us-title {
        font-size: 2rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .why-us-section {
        padding: 60px 0;
    }

    .why-us-card {
        padding: 30px 25px;
    }

    .why-us-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}


/* ============================================
   GALERİ SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gallery-subtitle::before,
.gallery-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.gallery-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--border-radius-md);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--secondary-dark);
    transform: rotate(90deg);
}


/* ============================================
   YORUMLAR SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-subtitle::before,
.testimonials-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonials-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

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

.testimonial-info p i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px;
    }
}


/* ============================================
   İLETİŞİM CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-normal);
}

.cta-btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.cta-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cta-info-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-info-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-info {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .cta-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-subtitle::before,
.faq-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

.faq-item.active {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    padding-right: 20px;
}

.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

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

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.blog-subtitle::before,
.blog-subtitle::after {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.blog-card-link i {
    transition: transform var(--transition-fast);
}

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

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

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-card-image {
        height: 180px;
    }
}


/* ============================================
   PAGE HEADER (Alt Sayfalar için)
   ============================================ */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

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

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.breadcrumb span:last-child {
    color: var(--secondary-color);
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

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

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

.about-detail-images {
    position: relative;
}

.about-detail-content {
    padding-left: 20px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-detail-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-detail-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-detail-text-light {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-detail-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-detail-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-detail-feature .feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.about-detail-feature .feature-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.about-detail-feature .feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Detail Responsive */
@media (max-width: 992px) {
    .about-detail-section {
        padding: 80px 0;
    }

    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-detail-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-detail-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .about-detail-title {
        font-size: 1.8rem;
    }

    .about-detail-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.mission-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mission Responsive */
@media (max-width: 992px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-card {
        padding: 30px 25px;
    }
}


/* ============================================
   HİZMETLER SAYFASI
   ============================================ */
.services-intro {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.services-intro-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-page-section {
    padding: 0 0 100px;
    background: var(--white);
}

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

.service-page-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

a.service-page-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

a.service-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

a.service-page-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: transparent;
}

a.service-page-card:hover::before {
    opacity: 1;
}

/* Alt Hizmetler (Sub Services) */
.service-sub-services {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-md);
    border: 1px solid #dee2e6;
}

.service-sub-services h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-sub-services h4 i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-sub-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-sub-services ul li {
    flex: 0 0 auto;
}

.service-sub-services ul li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--text-color);
    background: white;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.service-sub-services ul li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.service-sub-services ul li a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.service-sub-services ul li a:hover i {
    color: white;
}

.service-page-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

a.service-page-card:hover .service-page-image img {
    transform: scale(1.08);
}

.service-page-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-normal);
    z-index: 2;
}

a.service-page-card:hover .service-page-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.service-page-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.service-page-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

a.service-page-card:hover .service-page-content h3 {
    color: var(--primary-color);
}

.service-page-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.service-page-link i {
    transition: transform var(--transition-fast);
    font-size: 0.8rem;
}

a.service-page-card:hover .service-page-link {
    color: var(--secondary-color);
}

a.service-page-card:hover .service-page-link i {
    transform: translateX(5px);
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-sub-services ul {
        gap: 6px;
    }
    
    .service-sub-services ul li a {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .services-intro {
        padding: 40px 0;
    }

    .services-intro-content h2 {
        font-size: 1.7rem;
    }

    .services-page-section {
        padding: 0 0 60px;
    }

    .service-page-image {
        height: 180px;
    }

    .service-page-content {
        padding: 35px 20px 20px;
    }

    .service-page-content h3 {
        font-size: 1.15rem;
    }

    .service-page-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* ============================================
   HİZMET DETAY SAYFASI
   ============================================ */
.service-detail-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Main Content */
.service-detail-main {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 40px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-detail-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

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

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

.service-detail-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.service-detail-text ul {
    margin: 15px 0 25px 0;
    padding-left: 25px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.service-detail-text ol {
    margin: 15px 0 25px 0;
    padding-left: 25px;
}

.service-detail-text ol li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

.service-detail-text em {
    font-style: italic;
    color: var(--text-muted);
}

/* Service CTA Box */
.service-detail-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin-top: 0;
}

.service-cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.service-cta-content {
    flex: 1;
}

.service-cta-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.service-cta-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.service-cta-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

/* Sidebar Services List */
.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.sidebar-services li a i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.sidebar-services li a:hover,
.sidebar-services li.active a {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-services li a:hover i,
.sidebar-services li.active a i {
    color: var(--white);
}

/* Sidebar Sub Services (Alt Hizmetler) */
.sidebar-sub-services {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-sub-services li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar-sub-services li a i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.sidebar-sub-services li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 15px;
}

.sidebar-sub-services li a:hover i {
    transform: scale(1.1);
}

/* Sidebar Contact */
.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.sidebar-contact-list li i {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.sidebar-contact-list li a {
    color: var(--text-color);
    font-weight: 500;
}

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

.sidebar-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.sidebar-contact-btn:hover {
    background: var(--primary-dark);
}

/* Sidebar WhatsApp */
.sidebar-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    text-align: center;
    color: var(--white);
}

.sidebar-whatsapp i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sidebar-whatsapp h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.sidebar-whatsapp p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.sidebar-whatsapp a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    color: #25d366;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
}

.sidebar-whatsapp a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Service Detail Responsive */
@media (max-width: 992px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sidebar-whatsapp {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .service-detail-image {
        height: 280px;
    }

    .service-detail-content {
        padding: 30px;
    }

    .service-detail-content h2 {
        font-size: 1.7rem;
    }

    .service-detail-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .service-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-whatsapp {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .service-detail-image {
        height: 220px;
    }

    .service-detail-content {
        padding: 25px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


/* ============================================
   GALERİ SAYFASI
   ============================================ */
.gallery-page-intro {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.gallery-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.gallery-intro-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-page-section {
    padding: 0 0 100px;
    background: var(--white);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-page-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-page-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-page-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-page-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-page-item:hover .gallery-item-overlay i {
    transform: translateY(0);
}

.gallery-item-overlay span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.1s;
}

.gallery-page-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* Gallery Page Responsive */
@media (max-width: 992px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-page-intro {
        padding: 40px 0;
    }

    .gallery-intro-content h2 {
        font-size: 1.7rem;
    }

    .gallery-page-section {
        padding: 0 0 60px;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}


/* ============================================
   SSS SAYFASI
   ============================================ */
.sss-page-intro {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.sss-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.sss-intro-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.sss-page-section {
    padding: 0 0 100px;
    background: var(--white);
}

.sss-page-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.sss-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* SSS Sidebar */
.sss-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.sss-sidebar-box {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
}

.sss-sidebar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sss-sidebar-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.sss-sidebar-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.sss-sidebar-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sss-sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
}

.sss-sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.sss-sidebar-phone .sss-sidebar-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.sss-phone-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

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

.sss-sidebar-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

.sss-sidebar-whatsapp i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sss-sidebar-whatsapp h4,
.sss-sidebar-whatsapp p {
    color: var(--white);
}

.sss-sidebar-whatsapp p {
    opacity: 0.9;
}

.sss-sidebar-whatsapp a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    color: #25d366;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-fast);
}

.sss-sidebar-whatsapp a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* SSS Page Responsive */
@media (max-width: 992px) {
    .sss-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sss-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

@media (max-width: 576px) {
    .sss-page-intro {
        padding: 40px 0;
    }

    .sss-intro-content h2 {
        font-size: 1.7rem;
    }

    .sss-page-section {
        padding: 0 0 60px;
    }

    .sss-sidebar-box {
        padding: 25px;
    }
}


/* ============================================
   BLOG SAYFASI
   ============================================ */
.blog-page-intro {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.blog-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-intro-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-page-section {
    padding: 0 0 100px;
    background: var(--white);
}

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

a.blog-page-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

a.blog-page-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: transparent;
}

.blog-page-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-page-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    line-height: 1.2;
}

.blog-page-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-page-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-page-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-page-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

a.blog-page-card:hover .blog-page-content h3 {
    color: var(--primary-color);
}

.blog-page-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.blog-page-link i {
    transition: transform var(--transition-fast);
}

a.blog-page-card:hover .blog-page-link {
    color: var(--secondary-color);
}

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

/* Blog Page Responsive */
@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .blog-page-intro {
        padding: 40px 0;
    }

    .blog-intro-content h2 {
        font-size: 1.7rem;
    }

    .blog-page-section {
        padding: 0 0 60px;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-page-image {
        height: 200px;
    }
}


/* ============================================
   BLOG DETAY SAYFASI
   ============================================ */
.blog-detail-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.blog-detail-main {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 40px;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

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

.blog-detail-meta i {
    color: var(--primary-color);
}

.blog-detail-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
}

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

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.blog-detail-share span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-buttons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-whatsapp {
    background: #25d366;
}

.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sidebar Posts */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-posts li a {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.sidebar-posts li a:hover {
    background: var(--gray-200);
}

.sidebar-posts li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-post-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-post-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog Detail Responsive */
@media (max-width: 992px) {
    .blog-detail-section {
        padding: 60px 0;
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-content {
        padding: 25px;
    }

    .blog-detail-content h1 {
        font-size: 1.5rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-detail-share {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 25px;
    }
}


/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* İletişim Bilgileri */
.contact-info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.contact-info-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

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

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

.contact-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.contact-social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.contact-social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* İletişim Formu */
.contact-form-wrapper {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group label span {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-color);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Harita Section */
.map-section {
    background: var(--gray-100);
}

.map-wrapper {
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.3rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}


/* ============================================
   404 SAYFA
   ============================================ */
.error-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: bounce 2s infinite;
}

.error-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-error-primary,
.btn-error-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-normal);
}

.btn-error-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.btn-error-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-error-secondary {
    background: var(--white);
    color: var(--text-color);
    border: 2px solid var(--gray-200);
}

.btn-error-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ============================================
   LEGAL SAYFALAR (Gizlilik, Kullanım Şartları)
   ============================================ */
.legal-section {
    padding: 80px 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 576px) {
    .error-content h1 {
        font-size: 5rem;
    }

    .error-content h2 {
        font-size: 1.4rem;
    }

    .error-icon {
        width: 100px;
        height: 100px;
    }

    .error-icon i {
        font-size: 2.5rem;
    }

    .legal-section {
        padding: 60px 0;
    }
}


/* Designed By */
.designed-by {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

.designed-by a {
    font-weight: 700;
    font-style: italic;
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

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


/* ============================================
   CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.chatbot-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.chatbot-toggle.active {
    background: var(--text-color);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--secondary-color);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-normal);
    overflow: hidden;
}

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

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

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

.chatbot-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 4px;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--gray-100);
}

.chat-message {
    display: flex;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-message.bot .message-content {
    background: var(--white);
    color: var(--text-color);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #2563eb !important;
    border-radius: 50%;
    display: inline-block;
    animation: typingDot 1.4s infinite;
}

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

@keyframes typingDot {
    0%, 60%, 100% { 
        opacity: 0.3;
        transform: translateY(0);
    }
    30% { 
        opacity: 1;
        transform: translateY(-4px);
    }
}

.chatbot-suggestions {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.suggestion-btn {
    padding: 8px 14px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.chatbot-input {
    display: flex;
    padding: 15px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.chatbot-input input:focus {
    border-color: var(--primary-color);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 70vh;
        right: -70px;
        bottom: 65px;
    }
}


/* ========================================
   ALT HİZMETLER SECTION
======================================== */

.alt-hizmetler-section {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.alt-hizmetler-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.alt-hizmetler-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

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

.alt-hizmet-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.alt-hizmet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.alt-hizmet-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.alt-hizmet-content {
    flex: 1;
}

.alt-hizmet-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.alt-hizmet-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.alt-hizmet-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alt-hizmet-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.alt-hizmet-link i {
    font-size: 0.8rem;
}

/* Geri Dön Butonu */
.back-to-service {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-dark);
    gap: 15px;
}

.btn-back i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .alt-hizmetler-section {
        padding: 25px;
        margin-top: 30px;
    }
    
    .alt-hizmetler-title {
        font-size: 1.4rem;
    }
    
    .alt-hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .alt-hizmet-card {
        flex-direction: column;
        text-align: center;
    }
    
    .alt-hizmet-icon {
        margin: 0 auto;
    }
}
