/* ===================================
   S&S Lift ve Vinç Hizmetleri
   Custom Styles
   =================================== */

/* ===================================
   1. CSS Variables & Root Styles
   =================================== */
:root {
    /* Color Palette */
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C61;
    --secondary-color: #004E89;
    --secondary-dark: #003A66;
    --secondary-light: #1A6BA8;
    --accent-color: #F7B801;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --success: #28A745;
    --danger: #DC3545;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ===================================
   2. Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

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

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

section {
    padding: var(--section-padding);
}

/* ===================================
   3. Navigation Styles
   =================================== */
.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 50%, var(--secondary-dark) 100%);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 0.5rem 0 !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.navbar-logo {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.brand-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}

/* ===================================
   4. Hero Slider Section
   =================================== */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider-section .carousel {
    height: 100vh;
}

.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Carousel Controls Styling */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: var(--transition-base);
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    opacity: 1;
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

/* Carousel Indicators Styling */
.hero-slider-section .carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.hero-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: var(--transition-base);
}

.hero-slider-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Blue Overlay for Slide 1 */
.hero-overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.75) 0%, rgba(0, 78, 137, 0.7) 50%, rgba(232, 90, 42, 0.6) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Instagram Button - Always Visible with Gradient */
.hero-buttons .btn-outline-light:has(.bi-instagram) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-color: transparent;
}

.hero-buttons .btn-outline-light:has(.bi-instagram):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

/* WhatsApp Button - Always Visible with Green */
.hero-buttons .btn-outline-light:has(.bi-whatsapp) {
    background: #25D366;
    color: var(--white);
    border-color: transparent;
}

.hero-buttons .btn-outline-light:has(.bi-whatsapp):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Fade-in animation for all pages */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* ===================================
   4.5 Page Header (for multi-page)
   =================================== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-background.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.breadcrumb-item a:hover {
    color: #fff;
}

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

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

/* ===================================
   5. Section Headers
   =================================== */
.section-header {
    margin-bottom: 3rem;
}

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

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

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

/* ===================================
   6. Services Section
   =================================== */
.services-section {
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

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

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

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Service Detail Cards (for hizmetlerimiz.html) */
.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-base);
}

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

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-image {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Special styling for 26.6m image to fit perfectly */
.service-detail-image-contain img {
    object-fit: cover;
    object-position: center;
}

.service-detail-card:hover .service-detail-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* Disable scale on hover for contain images */
.service-detail-card:hover .service-detail-image-contain img {
    transform: scale(1);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-detail-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.why-choose-card {
    text-align: center;
    padding: 1.5rem;
}

.why-choose-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   7. Equipment Section
   =================================== */
.equipment-section {
    background: var(--white);
}

.equipment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
}

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

.equipment-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.equipment-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.equipment-content {
    padding: 2rem;
}

.equipment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.equipment-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.equipment-specs li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.equipment-specs i {
    color: var(--success);
    font-size: 1.1rem;
}

.equipment-card .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

.equipment-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.equipment-card .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.equipment-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.equipment-card .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

/* Rental Info Styles */
.rental-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.rental-info .text-muted {
    font-size: 0.9rem;
}

.rental-info .text-primary {
    color: var(--primary-color) !important;
    font-size: 0.95rem;
}

.equipment-card .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
}

/* Equipment Feature Cards */
.equipment-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

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

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.equipment-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.equipment-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Technical Specifications Cards */
.tech-spec-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.tech-spec-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.tech-spec-card h4 i {
    color: var(--primary-color);
}

.tech-spec-card .table {
    margin-bottom: 0;
}

.tech-spec-card .table td {
    padding: 0.75rem;
    border-color: var(--light-color);
}

.tech-spec-card .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 78, 137, 0.03);
}

/* ===================================
   8. About Section
   =================================== */
.about-section {
    background: var(--light-color);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 15px;
}

/* About Carousel Styles */
.about-image-wrapper .carousel {
    border-radius: 15px;
    overflow: hidden;
}

.about-image-wrapper .carousel-inner {
    border-radius: 15px;
}

.about-image-wrapper .carousel-control-prev,
.about-image-wrapper .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .carousel-control-prev,
.about-image-wrapper:hover .carousel-control-next {
    opacity: 0.8;
}

.about-image-wrapper .carousel-control-prev:hover,
.about-image-wrapper .carousel-control-next:hover {
    opacity: 1;
}

.about-image-wrapper .carousel-control-prev-icon,
.about-image-wrapper .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 0.5rem;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Mission & Vision Cards */
.mission-vision-section {
    background: var(--light-color);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-base);
}

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

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Values Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Statistics Cards */
.statistics-section {
    background: var(--light-color);
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   9. Contact Section
   =================================== */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
    border-left: 4px solid var(--primary-color);
}

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

.contact-info-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    transition: var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
}

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

/* ===================================
   10. Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 50%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 35px;
    max-height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 4px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp - Yeşil */
.social-link:has(.bi-whatsapp):hover {
    background: #25D366;
}

/* Instagram - Pembe/Mor Gradient */
.social-link:has(.bi-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook - Mavi */
.social-link:has(.bi-facebook):hover {
    background: #1877F2;
}

/* Twitter - Açık Mavi */
.social-link:has(.bi-twitter):hover {
    background: #1DA1F2;
}

/* LinkedIn - Koyu Mavi */
.social-link:has(.bi-linkedin):hover {
    background: #0077B5;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

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

/* ===================================
   11. Scroll to Top Button
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   12. Responsive Design
   =================================== */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

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

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-badge {
        bottom: 20px;
        right: 20px;
        padding: 1.5rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }
}

/* Small Devices (Landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero-slider-section {
        min-height: 100vh;
    }
    
    .hero-slider-section .carousel {
        height: 100vh;
    }
    
    .hero-slide {
        min-height: 100vh;
        background-attachment: scroll;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn-primary {
        margin-right: 0 !important;
    }

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

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .equipment-image {
        height: 250px;
    }

    .service-detail-image {
        height: 240px;
    }

    .about-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .equipment-title {
        font-size: 1.3rem;
    }

    .equipment-image {
        height: 220px;
    }

    .service-detail-image {
        height: 200px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

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

    .footer-links,
    .footer-contact {
        text-align: left;
    }
}

/* ===================================
   13. Utility Classes
   =================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

/* ===================================
   14. Loading Animation (Optional)
   =================================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===================================
   15. Navbar Contact Styles
   =================================== */
.navbar-contact {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.navbar-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    transition: var(--transition-base);
}

.navbar-contact-link:hover {
    background: var(--accent-color);
    color: var(--dark-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 184, 1, 0.4);
}

.navbar-contact-link i {
    font-size: 1.1rem;
}

/* ===================================
   16. Page Header Contact Buttons
   =================================== */
.btn-header-contact {
    background: var(--primary-color);
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.btn-header-contact:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-header-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.btn-header-whatsapp:hover {
    background: #1da851;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments for header buttons */
@media (max-width: 991.98px) {
    .navbar-contact {
        margin-right: 1rem;
    }
    
    .navbar-contact-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .navbar-contact-link span {
        display: none;
    }
    
    .navbar-contact-link i {
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .page-header .row {
        flex-direction: column;
    }
    
    .btn-header-contact,
    .btn-header-whatsapp {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .page-header .page-title {
        margin: 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .btn-header-contact,
    .btn-header-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===================================
   17. Print Styles
   =================================== */
@media print {

    .navbar,
    .scroll-top-btn,
    .hero-buttons,
    .contact-form {
        display: none !important;
    }

    .hero-slider-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-slide {
        min-height: auto;
        padding: 2rem 0;
    }

    section {
        page-break-inside: avoid;
    }
}