/* ========================================
   BEYAZ EŞYA SERVİSİ - MODERN CSS FRAMEWORK
   Versiyon: 3.0
   Son Güncelleme: 2025
   ======================================== */

/* ---------- Temel Değişkenler ---------- */
:root {
    /* Ana Renkler */
    --primary-color: #e60000;
    --primary-hover: #cc0000;
    --primary-light: #ff6666;
    --primary-dark: #990000;
    
    /* Button Renkler */
    --button-color: #ff3333;
    --button-hover: #e62b2b;
    --button-shadow: rgba(230, 0, 0, 0.3);
    
    /* Diğer Renkler */
    --secondary-color: #333333;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0056b3;
    --light-color: #f8f9fa;
    --dark-color: #222222;
    --white-color: #ffffff;
    
    /* Background & Text */
    --body-bg: #ffffff;
    --body-color: #333333;
    --text-muted: #6c757d;
    --text-light: #999999;
    
    /* Border & Shadow */
    --border-color: #e9ecef;
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition-fast: 0.15s;
    --transition-slow: 0.5s;
    
    /* Icon Sizes */
    --icon-small: 1.25rem;
    --icon-medium: 1.75rem;
    --icon-large: 2.25rem;
    --icon-xlarge: 3rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--body-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Text Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-info { color: var(--info-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--dark-color) !important; }
.text-white { color: var(--white-color) !important; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--dark-color) 0%, #2a2a2a 100%);
    font-size: 14px;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.top-bar a {
    color: var(--white-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.top-bar a:hover {
    color: var(--primary-light);
    transform: translateX(2px);
}

.top-bar i {
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--button-shadow);
}

/* ---------- Navigation ---------- */
.navbar {
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    transition: all var(--transition-speed) ease;
}

.navbar-brand:hover {
    color: var(--primary-color);
    transform: scale(1.02);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: all var(--transition-speed) ease;
}

.navbar-brand h3 {
    margin: 0;
    font-size: 1.25rem;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem !important;
    color: var(--secondary-color) !important;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn:active {
    transform: translateY(0);
}

/* Button Primary */
.btn-primary {
    background: linear-gradient(135deg, var(--button-color) 0%, var(--primary-color) 100%);
    border-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 12px var(--button-shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--button-hover) 0%, var(--primary-hover) 100%);
    border-color: var(--primary-hover);
    color: var(--white-color);
    box-shadow: 0 6px 16px var(--button-shadow);
}

/* Button Outline Primary */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Button Success */
.btn-success {
    background: linear-gradient(135deg, #32cd32, var(--success-color));
    border-color: var(--success-color);
    color: var(--white-color);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--success-color), #1e7e34);
    color: var(--white-color);
}

/* Button Warning */
.btn-warning {
    background: linear-gradient(135deg, #ffd700, var(--warning-color));
    border-color: var(--warning-color);
    color: var(--dark-color);
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--warning-color), #e0a800);
    color: var(--dark-color);
}

/* Button Sizes */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

/* ---------- Cards ---------- */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1rem 1.25rem;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: var(--font-weight-semibold);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.25rem;
    background-color: var(--light-color);
    border-top: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.card-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Service Card */
.service-card {
    transition: all var(--transition-speed) ease;
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* Brand Card */
.brand-card {
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    background-color: var(--light-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Area Card */
.area-card {
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.area-card:hover {
    background-color: var(--light-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

/* Hover Shadow */
.hover-shadow {
    transition: all var(--transition-speed) ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Stat Card */
.stat-card {
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
}

.stat-card:hover i {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

/* ---------- Icons & Badges ---------- */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.icon-box.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.icon-box:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Feature Box */
.feature-box {
    transition: all var(--transition-speed) ease;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    background-color: var(--light-color);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    transition: all var(--transition-speed) ease;
}

.feature-box:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Brand Item */
.brand-item {
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.brand-item:hover {
    background-color: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5em 0.75em;
    font-size: 0.875em;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    color: var(--white-color);
    text-align: center;
    white-space: nowrap;
    border-radius: var(--border-radius-sm);
}

.badge-success { background-color: var(--success-color); }
.badge-danger { background-color: var(--danger-color); }
.badge-warning { background-color: var(--warning-color); color: var(--dark-color); }
.badge-info { background-color: var(--info-color); }

/* Letter Badge */
.letter-badge {
    font-family: 'Arial', sans-serif;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    box-shadow: 0 4px 12px var(--button-shadow);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.3rem;
    color: var(--text-muted);
    padding: 0 0.5rem;
    font-weight: 300;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: var(--font-weight-semibold);
}

/* ---------- Page Sections ---------- */
.page-header {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-sm);
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.15);
}

.form-label {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ---------- Accordion ---------- */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: var(--font-weight-semibold);
    padding: 1rem 1.25rem;
    transition: all var(--transition-speed) ease;
    background-color: var(--white-color);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    transition: transform var(--transition-speed) ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--white-color);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.testimonial-card .fas.fa-star {
    color: var(--warning-color);
    margin-right: 0.125rem;
}

/* ---------- Floating Buttons ---------- */
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: var(--white-color);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Call Float */
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 16px var(--button-shadow);
    z-index: 998;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.call-float:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    transform: scale(1.15);
    box-shadow: 0 8px 20px var(--button-shadow);
}

/* Scroll to Top */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-lg);
}

#scrollTop:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white-color);
    padding-top: 3rem;
}

.footer h5,
.footer h6 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
}

/* ---------- Utilities ---------- */
/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Flex */
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

/* Text */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-decoration-underline { text-decoration: underline !important; }

/* Font Weight */
.fw-light { font-weight: var(--font-weight-light) !important; }
.fw-normal { font-weight: var(--font-weight-normal) !important; }
.fw-medium { font-weight: var(--font-weight-medium) !important; }
.fw-semibold { font-weight: var(--font-weight-semibold) !important; }
.fw-bold { font-weight: var(--font-weight-bold) !important; }

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Hover Effects */
.hover-bg-light:hover {
    background-color: var(--light-color);
    transition: all var(--transition-speed) ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: all var(--transition-speed) ease;
}

.cursor-pointer {
    cursor: pointer;
}

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-hover:hover { box-shadow: var(--shadow-hover) !important; }

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animation Classes */
.fade-in { animation: fadeIn 0.6s ease; }
.fade-in-up { animation: fadeInUp 0.6s ease; }
.fade-in-down { animation: fadeInDown 0.6s ease; }
.slide-in-left { animation: slideInLeft 0.6s ease; }
.slide-in-right { animation: slideInRight 0.6s ease; }

/* ---------- Content Styles ---------- */
.content h2,
.content h3,
.content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
}

.content ul,
.content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        min-height: 400px;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .navbar-brand h3 {
        font-size: 1.2rem;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .row > div {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    
    .top-bar .row > div {
        margin-bottom: 0.5rem;
    }
    
    .hero-section .display-4 {
        font-size: 1.75rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 140px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .call-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        max-height: 40px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-box {
        padding: 1.25rem;
    }
    
    .page-header {
        padding: 1.5rem 0;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    .navbar,
    .top-bar,
    .footer,
    .whatsapp-float,
    .call-float,
    #scrollTop,
    .cta-section,
    .btn {
        display: none !important;
    }

    .page-header {
        border-bottom: 1px solid #000;
    }

    .card {
        border: 1px solid #000;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* ---------- Accessibility ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #cc0000;
        --border-color: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   SERVICE IMAGE SECTION
   ======================================== */

.service-image-section {
    position: relative;
    overflow: hidden;
}

.service-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
}

.service-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-main-image {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.service-image-wrapper:hover .service-main-image {
    transform: scale(1.05);
}

.service-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.service-image-badge i {
    font-size: 1.5rem;
}

/* Service Highlights */
.service-highlights {
    padding: 1rem 0;
}

.service-highlights h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.service-highlights h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-sm);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

.highlight-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all var(--transition-speed) ease;
}

.highlight-item:hover .highlight-icon {
    transform: rotate(5deg) scale(1.1);
}

.highlight-content h5 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .service-image-section {
        padding: 3rem 0;
    }
    
    .service-main-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .service-highlights {
        padding: 0;
    }
    
    .service-highlights h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-image-section {
        padding: 2rem 0;
    }
    
    .service-main-image {
        min-height: 250px;
    }
    
    .service-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-image-badge i {
        font-size: 1.25rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

/* ========================================
   BREADCRUMB MOBILE HIDE
   ======================================== */

@media (max-width: 767px) {
    .breadcrumb {
        display: none !important;
    }
}

/* ========================================
   PAGE HEADER BRAND WITH BACKGROUND
   ======================================== */

.page-header-brand {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/area-brand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(34, 34, 34, 0.8) 100%);
    z-index: 2;
}

.page-header-brand .container {
    z-index: 3;
}

.page-header-brand .breadcrumb-item a,
.page-header-brand .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header-brand .breadcrumb-item a:hover {
    color: var(--white-color);
}

.page-header-brand .breadcrumb-item.active {
    color: var(--white-color);
}

.page-header-brand .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SERVICE CATEGORY IMAGE SECTION
   ======================================== */

.service-category-image {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 100%);
}

.category-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
}

.category-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.category-image-wrapper:hover .category-image {
    transform: scale(1.05);
}

.category-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.category-image-badge i {
    font-size: 1.5rem;
}

.category-highlights h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
}

.highlight-features {
    margin-top: 1.5rem;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* ========================================
   DISTRICTS SECTION
   ======================================== */

.districts-section {
    background: linear-gradient(180deg, var(--white-color) 0%, var(--light-color) 100%);
}

.district-link {
    display: block;
    transition: all var(--transition-speed) ease;
}

.district-card {
    background: var(--white-color);
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--border-color);
}

.district-link:hover .district-card {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.district-card i {
    transition: all var(--transition-speed) ease;
}

.district-link:hover .district-card i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.district-card h6 {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-speed) ease;
}

.district-link:hover .district-card h6 {
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .page-header-brand {
        min-height: 300px;
        padding: 3rem 0;
    }
    
    .category-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .category-highlights {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .page-header-brand {
        min-height: 250px;
        padding: 2rem 0;
    }
    
    .page-header-brand h1 {
        font-size: 1.75rem;
    }
    
    .category-image {
        min-height: 250px;
    }
    
    .category-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-image-badge i {
        font-size: 1.25rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .district-card {
        padding: 1rem !important;
    }
}

/* Breadcrumb Mobile Hide */
@media (max-width: 767px) {
    .breadcrumb {
        display: none !important;
    }
}

/* Fixed Call Bar */
.fixed-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e60000, #cc0000);
    color: white;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    animation: slideUpBar 0.3s ease-out;
}

@keyframes slideUpBar {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Call Bar Layout */
.fixed-call-bar .row {
    align-items: center;
}

.fixed-call-bar .call-bar-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.fixed-call-bar .call-bar-icon i {
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.fixed-call-bar .call-bar-info {
    line-height: 1.2;
}

.fixed-call-bar .call-bar-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.fixed-call-bar .call-bar-label {
    font-size: 0.75rem;
    opacity: 0.85;
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.8);
}

/* Telefon Numarası Butonu */
.fixed-call-bar .call-bar-number {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    white-space: nowrap;
}

.fixed-call-bar .call-bar-number:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    color: white;
}

/* Numara olmayan durum */
.fixed-call-bar.no-service {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    padding: 12px 0;
}

.fixed-call-bar.no-service a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.fixed-call-bar.no-service a:hover {
    color: #fff3f3;
}

/* Desktop - Numara göster */
@media (min-width: 768px) {
    .fixed-call-bar .call-bar-number .d-none.d-md-inline {
        display: inline !important;
    }
    
    .fixed-call-bar .call-bar-number .d-md-none {
        display: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .fixed-call-bar {
        padding: 10px 0;
    }
    
    .fixed-call-bar .call-bar-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .fixed-call-bar .call-bar-title {
        font-size: 0.85rem;
    }
    
    .fixed-call-bar .call-bar-number {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .fixed-call-bar .call-bar-label {
        font-size: 0.65rem;
    }
    
    .fixed-call-bar .call-bar-number .d-md-none {
        display: inline !important;
    }
    
    .fixed-call-bar .call-bar-number .d-none.d-md-inline {
        display: none !important;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .fixed-call-bar .call-bar-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .fixed-call-bar .call-bar-title {
        font-size: 0.8rem;
    }
    
    .fixed-call-bar .call-bar-number {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Sayfanın altına body padding ekle (call bar için) */
body {
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 65px;
    }
}

/* ========================================
   HERO SECTION - HOME
   ======================================== */

.hero-section {
    min-height: 100vh;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(34, 34, 34, 0.9) 100%);
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-actions .btn-lg {
    padding: 1rem 2rem;
    font-weight: var(--font-weight-bold);
}

/* Hero Images Desktop */
.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.hero-image-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
    background: var(--dark-color);
}

.hero-image-card:first-child {
    grid-column: 1 / -1;
    min-height: 300px;
}

.hero-image-card:not(:first-child) {
    min-height: 250px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    max-height: none !important;
    object-fit: cover;
    display: block;
    transition: all var(--transition-speed) ease;
}


.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: var(--white-color);
    transform: translateY(100%);
    transition: all var(--transition-speed) ease;
}

.hero-image-card:hover .hero-image-overlay {
    transform: translateY(0);
}

.hero-image-card:hover img {
    transform: scale(1.1);
}

/* Hero Mobile Images */
.hero-mobile-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: -1rem -1rem 0 -1rem;
    padding: 0;
}

.hero-mobile-images .hero-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.hero-mobile-images .hero-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ========================================
   BRAND NAME CARDS
   ======================================== */

.brand-name-card {
    background: var(--white-color);
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.brand-name-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-name-card h6 {
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-speed) ease;
}

.brand-name-card:hover h6 {
    color: var(--primary-color) !important;
}

/* ========================================
   CTA SECTION - IMPROVED
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.1), rgba(153, 0, 0, 0.2));
    z-index: 2;
}

.cta-section .container {
    z-index: 3;
}

.cta-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.cta-icon i {
    font-size: 3rem;
    color: var(--warning-color);
}

.cta-section .btn-warning {
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    border: none;
}

.cta-section .btn-warning:hover {
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.6);
}

.cta-section .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white-color);
}

.cta-feature {
    text-align: center;
}

.cta-features {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 0;
        padding-top: 16px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-mobile-images {
        margin: 0;
    }
    
    .hero-mobile-images .hero-image-item img {
        height: 150px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-features {
        margin-top: 2rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
}

/* Hero Desktop Images */
.hero-desktop-images {
    display: none;
}

@media (min-width: 992px) {
    .hero-desktop-images {
        display: block !important;
    }
}

/* ========================================
   HERO SLIDER - DESKTOP
   ======================================== */

.hero-desktop-images {
    display: none;
}

@media (min-width: 992px) {
    .hero-desktop-images {
        display: block !important;
    }
}

.hero-slider {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-slide-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item.active .hero-slide-card img {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 3rem 2rem;
    color: var(--white-color);
    transform: translateY(0);
}

.hero-slide-overlay h4 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color:#ffffff!important;
}

.hero-slide-overlay p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all var(--transition-speed) ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
    bottom: 20px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white-color);
    margin: 0 5px;
    transition: all var(--transition-speed) ease;
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    transform: scale(1.3);
}

/* ========================================
   HERO SLIDER - MOBILE
   ======================================== */

.hero-mobile-slider {
    margin: -1rem -1rem 0 -1rem;
    border-radius: 0;
}

.hero-mobile-slider .carousel-item {
    height: 250px;
}

.hero-mobile-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mobile-slider .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
}

.hero-mobile-slider .carousel-caption h5 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
}

.hero-mobile-slider .carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

.hero-mobile-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 3px;
}

.hero-mobile-slider .carousel-indicators button.active {
    background-color: var(--warning-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .hero-desktop-images {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-mobile-slider .carousel-item {
        height: 200px;
    }
    
    .hero-slide-card {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-mobile-slider .carousel-item {
        height: 180px;
    }
}

/* ========================================
   PAGE HEADER SERVICE
   ======================================== */

.page-header-service {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.page-header-bg-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/service-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header-service .container {
    z-index: 3;
}

.page-header-service .breadcrumb-item a,
.page-header-service .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header-service .breadcrumb-item a:hover {
    color: var(--white-color);
}

.page-header-service .breadcrumb-item.active {
    color: var(--white-color);
}

.page-header-service .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SERVICE DETAIL IMAGE SECTION
   ======================================== */

.service-detail-image {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 100%);
}

.service-detail-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-speed) ease;
}

.service-detail-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-detail-img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.service-detail-image-wrapper:hover .service-detail-img {
    transform: scale(1.05);
}

.service-detail-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.service-detail-badge i {
    font-size: 1.5rem;
}

.service-detail-info h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
}

.service-features {
    margin-top: 1.5rem;
}

/* ========================================
   OTHER SERVICES SECTION
   ======================================== */

.other-service-item {
    background: var(--white-color);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.other-service-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.other-service-item h6 {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-speed) ease;
}

.other-service-item:hover h6 {
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .page-header-service {
        min-height: 300px;
        padding: 3rem 0;
    }
    
    .service-detail-img {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .service-detail-info {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .page-header-service {
        min-height: 250px;
        padding: 2rem 0;
    }
    
    .page-header-service h1 {
        font-size: 1.75rem;
    }
    
    .service-detail-img {
        min-height: 250px;
    }
    
    .service-detail-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-detail-badge i {
        font-size: 1.25rem;
    }
    
    .other-service-item {
        padding: 1rem !important;
    }
}

.fixed-call-bar .call-bar-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.fixed-call-bar .call-bar-info {
    line-height: 1.3;
}

.fixed-call-bar .call-bar-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.fixed-call-bar .call-bar-label {
    font-size: 0.7rem;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
}