/* ====== MANTOLAMA HİZMETLERİ CSS - KAPSAMLI STIL DOSYASI (BLUE THEME) ====== */

/* ====== CSS VARIABLES (DEĞIŞKENLER) ====== */
:root {
    /* Ana Renkler */
    --primary-color: #3762db;
    --primary-dark: #2851c7;
    --primary-light: #4f73e6;
    --secondary-color: #000000;
    --secondary-dark: #1a1a1a;
    --secondary-light: #333333;
    
    /* Yardımcı Renkler */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-color: #333333;
    --text-muted: #6c757d;
    
    /* Durum Renkleri */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #3762db;
    --info: #17a2b8;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.25);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index Layers */
    --z-dropdown: 1000;
    --z-sticky: 1010;
    --z-fixed: 1020;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ====== GLOBAL RESET & BASE STYLES ====== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====== ACCESSIBILITY ====== */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    z-index: var(--z-tooltip);
}

/* ====== HEADER STYLES ====== */
.header-section {
    position: sticky;
    top: 0;
    z-index: var(--z-fixed);
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    font-size: 0.875rem;
    border-bottom: 2px solid var(--primary-color);
}

.top-bar .contact-info a,
.top-bar .working-hours {
    transition: var(--transition-fast);
}

.top-bar .contact-info a:hover {
    color: var(--primary-light) !important;
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    background: var(--white) !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.navbar-brand img {
    transition: var(--transition);
    filter: brightness(1);
    height: 50px;
}

.navbar-brand:hover img {
    filter: brightness(1.1);
}

/* Navigation Links */
.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    position: relative;
    margin: 0 0.25rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(55, 98, 219, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(55, 98, 219, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 0.25rem;
    transition: var(--transition);
    color: var(--text-color);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateX(5px);
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

/* Mobile Toggle */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(55, 98, 219, 0.25);
    border-color: var(--primary-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233762db' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== HERO SECTION ====== */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.hero-bg {
    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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.hero-content .lead {
    font-size: 1.35rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-features {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero-cta .btn:hover::before {
    left: 100%;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: var(--shadow-lg);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.hero-cta .btn-outline-light {
    border: 2px solid var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition-slow);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Experience Badge */
.experience-badge {
    bottom: 20px;
    right: 20px;
    min-width: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 3px solid var(--white);
    animation: pulse 3s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
    opacity: 0.8;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Trust Indicators */
.trust-indicators {
    background: var(--white);
    backdrop-filter: blur(20px);
    border-top: 3px solid var(--primary-color);
}

.trust-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(55, 98, 219, 0.05);
}

.trust-item i {
    transition: var(--transition);
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.trust-item h4 {
    color: #000000;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animation-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animation-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animation-delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ====== ABOUT SECTION ====== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
}

.about-image img {
    transition: var(--transition-slow);
    border-radius: var(--border-radius-xl);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.section-header h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-header .lead {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.feature-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(55, 98, 219, 0.02);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: rgba(55, 98, 219, 0.05);
    border-color: rgba(55, 98, 219, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    background: rgba(55, 98, 219, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ====== SERVICE CARDS ====== */
.services-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.service-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(55, 98, 219, 0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    z-index: 3;
}

.service-badge .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: var(--shadow);
}

.service-icon {
    background: rgba(55, 98, 219, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
}

.service-features li {
    transition: var(--transition-fast);
    padding: 0.25rem;
    border-radius: var(--border-radius-sm);
}

.service-features li:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.price-range {
    background: rgba(55, 98, 219, 0.1);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ====== PROCESS SECTION ====== */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    background: rgba(55, 98, 219, 0.02);
}

.process-step:hover {
    background: rgba(55, 98, 219, 0.05);
    transform: translateY(-5px);
}

.process-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.step-number i {
    color: #ffffff;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-bg-pattern {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-icon-2 {
    top: 60%;
    right: 10%;
    animation-delay: -4s;
}

.floating-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.cta-actions .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-width: 2px;
}

.cta-actions .btn-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.cta-actions .btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-actions .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-actions .btn-success {
    background: linear-gradient(135deg, var(--success), #20a039);
    border-color: var(--success);
}

.cta-actions .btn-success:hover {
    background: linear-gradient(135deg, #20a039, var(--success));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.testimonial-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warning), #e0a800);
    transform: scaleX(0);
    transition: var(--transition);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.stars i {
    margin-right: 0.2rem;
    font-size: 1rem;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.contact-form {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.form-control,
.form-select {
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(55, 98, 219, 0.1);
    background: var(--white);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primary-light);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(55, 98, 219, 0.25);
}

.contact-card {
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
}

.contact-detail i {
    margin-top: 0.2rem;
}

/* ====== SIDEBAR STYLES ====== */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.widget-title {
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.sidebar-widget .list-unstyled li:hover {
    transform: translateX(5px);
    background: rgba(55, 98, 219, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 0.25rem 0.5rem;
}

.trust-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(55, 98, 219, 0.05);
    transform: translateY(-2px);
}

.trust-icon {
    background: rgba(55, 98, 219, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.recent-project {
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.recent-project:hover {
    background: rgba(55, 98, 219, 0.02);
    transform: translateX(5px);
}

/* ====== FOOTER STYLES ====== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer .contact-item {
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
}

.footer .contact-item:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 1rem;
    transform: translateX(5px);
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.footer .list-unstyled li:hover {
    transform: translateX(5px);
}

.footer .list-unstyled a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer .list-unstyled a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ====== FLOATING BUTTONS ====== */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: var(--z-fixed);
    animation: pulse 3s infinite;
}

.whatsapp-float {
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #1ebe57, #25d366);
    transform: scale(1.1);
    color: var(--white);
}

.call-float {
    bottom: 150px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.call-float:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: scale(1.1);
    color: var(--white);
}

/* ====== PAGE TEMPLATES ====== */
/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

/* Service Header */
.service-header,
.area-header,
.area-service-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.service-icon-large,
.area-icon-large {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--primary-light);
    font-weight: 600;
}

/* ====== SERVICE TEMPLATE STYLES ====== */
.service-main-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
}

.service-main-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: auto;
}

.service-main-image:hover img {
    transform: scale(1.05);
}

.service-description {
    padding: 2rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.service-features {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.why-choose-us {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.advantage-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.advantage-item:hover {
    background: rgba(55, 98, 219, 0.02);
    border-color: rgba(55, 98, 219, 0.1);
    transform: translateY(-2px);
}

/* Service Areas Grid */
.service-areas .area-link {
    transition: var(--transition);
    background: var(--white);
}

.service-areas .area-link:hover {
    background: var(--light-gray);
    transform: translateX(5px);
    color: var(--primary-color);
}

.hover-bg-light:hover {
    background-color: var(--light-gray) !important;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--text-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(55, 98, 219, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    transition: var(--transition);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
    border-top: 1px solid var(--medium-gray);
}

/* Quick Quote Sidebar */
.quick-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border-radius: var(--border-radius-lg);
    top: 120px;
}

.service-info {
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.related-services {
    background: var(--white);
    border: 1px solid var(--medium-gray);
}

/* ====== AREA TEMPLATE STYLES ====== */
.area-service-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.area-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(55, 98, 219, 0.3);
}

.area-features {
    background: var(--light-gray);
    padding: 5rem 0;
}

.feature-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(55, 98, 219, 0.3);
}

.feature-card .feature-icon {
    background: rgba(55, 98, 219, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Area Projects */
.area-projects {
    padding: 5rem 0;
    background: var(--white);
}

.project-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(55, 98, 219, 0.3);
}

.project-card img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Area Contact */
.area-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 0;
}

.contact-features {
    margin-top: 1rem;
}

.contact-features .row > div {
    margin-bottom: 0.5rem;
}

/* Nearby Areas */
.nearby-areas {
    background: var(--light-gray);
    padding: 3rem 0;
}

.nearby-area-card {
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--medium-gray);
}

.nearby-area-card:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: rgba(55, 98, 219, 0.3);
}

/* ====== AREA-SERVICE TEMPLATE STYLES ====== */
.icon-combo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-highlights {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.area-service-content {
    padding: 5rem 0;
    background: var(--white);
}

.area-advantages {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.service-process {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.process-step .step-number {
    font-weight: 700;
    font-size: 1.2rem;
}

.local-references {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.reference-card {
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.reference-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(55, 98, 219, 0.3);
}

/* Area Service Contact */
.area-service-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    top: 120px;
}

.other-area-services {
    border: 1px solid var(--medium-gray);
}

/* Area Service CTA */
.area-service-cta {
    background: var(--light-gray);
    padding: 4rem 0;
}

/* ====== REFERENCES STYLES ====== */
.reference-category {
    margin-bottom: 4rem;
}

.reference-category h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.testimonial-author {
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

/* ====== PAGE CTA STYLES ====== */
.page-cta,
.service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem 0;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .process-icon {
        width: 100px;
        height: 100px;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .experience-badge {
        position: static;
        margin-top: 2rem;
        display: inline-block;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        top: -10px;
        right: -10px;
        font-size: 0.9rem;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-features {
        padding: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        padding: 2rem 0;
    }
    
    .trust-item {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .cta-actions {
        margin-top: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        bottom: 70px;
        right: 15px;
    }
    
    .call-float {
        bottom: 130px;
        right: 15px;
    }
    
    .sidebar-widget {
        margin-bottom: 1.5rem;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .service-header,
    .area-header,
    .area-service-header {
        padding: 2rem 0 1.5rem;
    }
    
    .service-icon-large,
    .area-icon-large {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-features .row > div {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card {
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}

/* ====== PRINT STYLES ====== */
@media print {
    .header-section,
    .whatsapp-float,
    .call-float,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* ====== ACCESSIBILITY IMPROVEMENTS ====== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0040cc;
        --secondary-color: #000000;
        --text-color: #000000;
        --shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .btn {
        border-width: 2px !important;
    }
}

/* ====== UTILITY CLASSES ====== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow) !important;
}

.shadow-custom-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.rounded-custom-lg {
    border-radius: var(--border-radius-lg) !important;
}

.transition-custom {
    transition: var(--transition) !important;
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ====== END OF CSS ====== */

/* Mobile Fixed Phone Button */
.mobile-phone-fixed {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 300px;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-phone-btn i {
    font-size: 20px;
}

.mobile-phone-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .mobile-phone-fixed {
        display: block;
    }
}

/* Scroll animasyonu için */
@keyframes slideUp {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 20px;
        opacity: 1;
    }
}

.mobile-phone-fixed {
    animation: slideUp 0.5s ease-out;
}