:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --secondary: #e67e22;
    --secondary-light: #f39c12;
    --dark: #0c2233;
    --dark-light: #1a3a4f;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #495057;
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/fonts/bootstrap-icons.woff2?7141511e36d3c2d633a0999f420f44ed") format("woff2");
    font-display: swap;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.main-content {
    padding-top: 130px;
}

.main-content > .slider-hero,
.main-content > .hero-section {
    margin-top: -130px;
    padding-top: 130px;
}

.slider-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}



/* ===== HEADER TOP BAR ===== */
.header-top {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 0;
}

.header-top-item i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.header-top-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.header-top-item a:hover {
    color: var(--secondary);
}

.header-top-divider {
    margin: 0 10px;
    opacity: 0.3;
}

.header-top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-left: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.header-top-social a:hover {
    background: var(--secondary);
    color: #000;
    transform: translateY(-1px);
}

/* ===== MAIN NAVBAR ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.site-header.header-scrolled .header-top {
    display: none !important;
}

.navbar {
    background: #fff !important;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    top: 0;
}

.navbar .container {
    position: relative;
}

/* ===== LOGO ===== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.navbar-brand .logo-img {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 6px;
    transition: height 0.3s ease;
}

.navbar-brand .logo-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.35);
    transition: all 0.3s ease;
}

.navbar-brand .logo-icon-letter {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.navbar-brand .brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.navbar-brand .brand-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== SCROLLED STATE ===== */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .navbar-brand .logo-img {
    height: 40px;
}

.navbar.scrolled .navbar-brand .logo-icon-wrap {
    width: 40px;
    height: 40px;
}

.navbar.scrolled .navbar-brand .logo-icon-letter {
    font-size: 1.3rem;
}

.navbar.scrolled .navbar-brand .brand-name {
    font-size: 1rem;
}

.navbar.scrolled .navbar-brand .brand-tagline {
    font-size: 0.6rem;
}

.navbar.scrolled .navbar-brand {
    padding: 6px 0;
}

/* ===== NAV LINKS ===== */
.navbar .nav-link {
    font-weight: 600;
    padding: 28px 16px !important;
    font-size: 0.9rem;
    color: var(--dark) !important;
    position: relative;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 70%;
}

.navbar.scrolled .nav-link {
    padding: 18px 16px !important;
}

/* ===== HEADER PHONE & CTA ===== */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.header-phone:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--secondary);
    white-space: nowrap;
}

.header-quote-btn:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
}

/* ===== MOBILE BUTTONS ===== */
.header-call-btn,
.header-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.header-call-btn {
    background: var(--primary);
    color: #fff;
}

.header-call-btn:hover {
    background: var(--primary-light);
    color: #fff;
}

.header-wa-btn {
    background: #0B5E42;
    color: #fff;
}

.header-wa-btn:hover {
    background: #128C7E;
    color: #fff;
}

/* ===== MOBILE NAVBAR ===== */
.navbar-toggler {
    border: none;
    padding: 6px 10px;
    font-size: 1.2rem;
    color: var(--dark);
}

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

.navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
}

.header-cta-mobile {
    display: none;
}

.mobile-menu-info {
    padding: 16px 16px 8px;
    border-top: 1px solid #eee;
    margin-top: 4px;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.mobile-menu-phone i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.mobile-menu-hours {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 0.82rem;
}

.mobile-menu-hours i {
    color: var(--secondary);
}

.mobile-menu-buttons {
    display: flex;
    gap: 10px;
    padding: 8px 16px 12px;
}

.btn-call-mobile {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-call-mobile:hover {
    background: var(--primary-light);
    color: #fff;
}

.btn-wa-mobile {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: #0B5E42;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-wa-mobile:hover {
    background: #128C7E;
    color: #fff;
}

.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px 16px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    color: var(--dark);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-social a:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .header-cta-mobile {
        display: block;
    }

    .navbar .nav-link {
        padding: 13px 16px !important;
        font-size: 0.95rem;
        font-weight: 600;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: #f8fafc;
        color: var(--primary) !important;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background: #fff;
        border-top: 2px solid var(--secondary);
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .header-top {
        display: none !important;
    }

    .main-content {
        padding-top: 68px !important;
    }

    .main-content > .slider-hero,
    .main-content > .hero-section {
        margin-top: -68px;
        padding-top: 68px;
    }

    .navbar {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand .logo-img {
        height: 40px;
    }

    .navbar-brand .logo-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .navbar-brand .logo-icon-letter {
        font-size: 1.2rem;
    }

    .navbar-brand .brand-name {
        font-size: 0.95rem;
    }

    .navbar-brand .brand-tagline {
        font-size: 0.55rem;
    }

    .navbar-brand {
        gap: 8px;
        padding: 8px 0;
    }

    .header-call-btn,
    .header-wa-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .navbar .container {
        position: relative;
    }

    .navbar-nav {
        padding-top: 4px;
    }
}

@media (max-width: 575.98px) {
    .main-content {
        padding-top: 60px !important;
    }

    .main-content > .slider-hero,
    .main-content > .hero-section {
        margin-top: -60px;
        padding-top: 60px;
    }

    .navbar-brand .brand-tagline {
        display: none;
    }

    .navbar-brand .logo-img {
        height: 36px;
    }

    .navbar-brand .logo-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .navbar-brand .logo-icon-letter {
        font-size: 1rem;
    }

    .navbar-brand .brand-name {
        font-size: 0.88rem;
    }

    .header-call-btn,
    .header-wa-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .mobile-menu-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-call-mobile,
    .btn-wa-mobile {
        padding: 11px 16px;
        font-size: 0.85rem;
    }
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 34, 51, 0.88) 0%, rgba(26, 82, 118, 0.82) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>') repeat;
    background-size: 80px;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.hero-buttons .btn-warning {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #000;
}

.hero-buttons .btn-warning:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.35);
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

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

/* ===== QUOTE FORM SECTION ===== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    position: relative;
}

.quote-info .badge-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.quote-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.quote-info .text-accent {
    color: var(--secondary);
}

.quote-info > p {
    color: var(--gray);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.quote-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.85rem;
}

.quote-feature-item strong {
    color: var(--dark);
    font-size: 0.92rem;
}

.quote-feature-item small {
    color: var(--gray);
    font-size: 0.82rem;
}

.quote-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.quote-form-card .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
    border-radius: 10px;
    padding: 10px 14px;
    border-color: #e0e0e0;
    font-size: 0.92rem;
    transition: all 0.2s;
    cursor: pointer;
}

.quote-form-card .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a5276' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.quote-form-card .form-select option {
    padding: 10px 14px;
}

.quote-form-card .form-select option:checked {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.12);
}

.quote-form-card .input-group-text {
    background: var(--light);
    border-color: #e0e0e0;
    color: var(--primary);
    border-radius: 10px 0 0 10px;
    font-size: 0.9rem;
}

.quote-form-card .input-group .form-control,
.quote-form-card .input-group .form-select {
    border-radius: 0 10px 10px 0;
}

.btn-whatsapp-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.35);
}

.btn-whatsapp-quote:hover {
    background: linear-gradient(135deg, var(--primary-light), #3498db);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.45);
}

@media (max-width: 991px) {
    .quote-section {
        padding: 60px 0;
    }
    .quote-info h2 {
        font-size: 1.7rem;
    }
    .quote-form-card {
        padding: 25px 20px;
    }
    .quote-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .quote-section {
        padding: 50px 0;
    }
    .quote-info h2 {
        font-size: 1.5rem;
    }
    .quote-form-card {
        padding: 20px 15px;
    }
}

@media (max-width: 575px) {
    .quote-info h2 {
        font-size: 1.3rem;
    }
    .quote-form-card {
        padding: 18px 12px;
        border-radius: 12px;
    }
    .btn-whatsapp-quote {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .quote-feature-item strong {
        font-size: 0.85rem;
    }
    .quote-feature-item small {
        font-size: 0.78rem;
    }
}

/* ===== END QUOTE ===== */

.area-icon-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.area-icon-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.area-icon-placeholder .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.7), rgba(41, 128, 185, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.area-card:hover .area-icon-placeholder .overlay {
    opacity: 1;
}

.area-icon-placeholder .area-icon-label {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    padding: 0 15px;
}

.hizmet-home-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #eaedf2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hizmet-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}

.hizmet-home-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hizmet-home-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,34,51,0.6), rgba(26,82,118,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.hizmet-home-card:hover .hizmet-home-img-overlay {
    opacity: 1;
}

.hizmet-home-img-label {
    background: var(--secondary);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hizmet-home-icon-area {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hizmet-home-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
}

.hizmet-home-icon-circle i {
    font-size: 2rem;
    color: #fff;
}

.hizmet-home-card:hover .hizmet-home-icon-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.hizmet-home-card:hover .hizmet-home-icon-circle i {
    color: #000;
}

.hizmet-home-body {
    padding: 22px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hizmet-home-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hizmet-home-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hizmet-home-mini-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.hizmet-home-body h5 {
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-size: 1.05rem;
}

.hizmet-home-body p {
    color: #5a6577;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.hizmet-home-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s;
}

.hizmet-home-link i {
    transition: transform 0.3s;
}

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

.hizmet-home-card:hover .hizmet-home-link i {
    transform: translateX(4px);
}

.service-card-img-top {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-img-top .service-img-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.service-card-icon-fallback {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.service-card-icon-fallback i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.service-card-icon-fallback span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title .badge-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: rotateY(180deg);
}

.service-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-section {
    background: var(--light);
}

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

.about-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: #000;
    padding: 20px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: var(--shadow);
}

.about-experience-badge span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-features {
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature-item i {
    color: var(--success);
    font-size: 1.2rem;
}

.area-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.area-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.area-card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.7), rgba(41, 128, 185, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.area-card:hover .area-card-img .overlay {
    opacity: 1;
}

.area-card-img .overlay i {
    color: #fff;
    font-size: 2rem;
}

.area-card-body {
    padding: 20px;
}

.area-card-body h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.area-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-section .btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
}

.contact-section {
    background: var(--light);
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.contact-info-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border-color: #e0e0e0;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.15);
}

.contact-form .btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
}

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>') repeat;
    background-size: 80px;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

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

.service-detail-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

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

.service-detail-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-detail-img .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.service-detail-body h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-detail-body p {
    color: var(--gray);
    line-height: 1.7;
}

.site-footer {
    background: #0c1b2e;
    color: #fff;
    font-size: 0.9rem;
}

.footer-cta-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #1a6aa0 100%);
    padding: 0;
}

.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
}

.cta-bar-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cta-bar-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-bar-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-phone {
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta-phone:hover {
    background: #ffe082;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.btn-cta-wa {
    background: #0B5E42;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.footer-main {
    padding: 55px 0 40px;
}

.footer-brand-block {
    margin-bottom: 10px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-brand-info strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-info small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-social-row {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social-row a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

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

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

.footer-nav li {
    margin-bottom: 9px;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.25s ease;
    display: inline-block;
    border-radius: 2px;
}

.footer-nav li a:hover {
    color: #fff;
}

.footer-nav li a:hover::before {
    width: 12px;
}

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

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-info li i {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.footer-info li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-info li a:hover {
    color: var(--secondary);
}

.footer-schedule {
    margin-top: 18px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-schedule i {
    font-size: 0.85rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
}

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

.footer-bottom-row p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(11, 94, 66, 0.12);
    border: 1px solid rgba(11, 94, 66, 0.25);
    font-size: 0.78rem;
    font-weight: 600;
    color: #0B5E42;
    white-space: nowrap;
}

.online-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0B5E42;
    animation: pulseDot 1.5s ease-in-out infinite;
}

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

.floating-btn {
    position: fixed;
    z-index: 9999;
}

.floating-wa {
    bottom: 90px;
    right: 20px;
}

.floating-phone {
    bottom: 24px;
    right: 20px;
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-wa a {
    background: #0B5E42;
}

.floating-phone a {
    background: var(--primary);
}

.floating-btn a:hover {
    transform: scale(1.1);
}

.floating-wa a:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-phone a:hover {
    box-shadow: 0 6px 20px rgba(42, 128, 197, 0.45);
}

.why-us-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
}

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

.why-us-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
}

.why-us-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-us-card p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 0;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
    color: var(--secondary);
    margin-bottom: 12px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.carousel-item {
    min-height: 520px;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 34, 51, 0.88) 0%, rgba(26, 82, 118, 0.75) 40%, rgba(12, 34, 51, 0.65) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 40px 0 80px;
}

.hero-slide-text {
    color: #fff;
}

.hero-slide-badge {
    display: inline-block;
    background: var(--secondary);
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-slide-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--secondary);
}

.btn-hero-phone:hover {
    background: #d35400;
    border-color: #d35400;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.4);
}

.btn-hero-phone i {
    font-size: 1.1rem;
}

.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0B5E42;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #0B5E42;
}

.btn-hero-wa:hover {
    background: #094C35;
    border-color: #094C35;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11,94,66,0.4);
}

.btn-hero-wa i {
    font-size: 1.2rem;
}

.hero-slide-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-slide-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero-slide-trust span i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.carousel-indicators {
    bottom: 35px !important;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 5px;
    transition: all 0.3s;
    opacity: 1;
}

.carousel-indicators .active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 991px) {
    .hero-slide-content {
        min-height: 450px;
        padding: 30px 0 60px;
    }
    .hero-slide-title {
        font-size: 2.2rem;
    }
    .hero-slide-desc {
        font-size: 1rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 15px;
    }
    .hero-stat .number {
        font-size: 1.5rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .about-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 480px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-badges {
        gap: 8px;
    }
    .hero-badge {
        padding: 5px 12px;
        font-size: 0.78rem;
    }
    .hero-stat .number {
        font-size: 1.3rem;
    }
    .hero-stat .label {
        font-size: 0.75rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .hizmet-home-card {
        border-radius: 12px;
    }
    .hizmet-home-img {
        height: 170px;
    }
    .hizmet-home-icon-area {
        height: 150px;
    }
    .service-card {
        padding: 25px 20px;
    }
    .carousel-item {
        min-height: 400px;
    }
    .hero-slide-content {
        min-height: 350px;
        padding: 20px 0 50px;
    }
    .hero-slide-title {
        font-size: 1.6rem !important;
    }
    .hero-slide-desc {
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
    }
    .hero-slide-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn-hero-phone,
    .btn-hero-wa {
        padding: 12px 20px !important;
        font-size: 0.88rem !important;
        justify-content: center;
        width: 100%;
    }
    .hero-slide-trust {
        gap: 12px;
    }
    .hero-slide-trust span {
        font-size: 0.8rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    .carousel-indicators {
        bottom: 15px !important;
    }
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 15px;
    }
    .floating-wa, .floating-phone {
        right: 12px;
    }
    .floating-wa {
        bottom: 80px;
    }
    .floating-phone {
        bottom: 15px;
    }
    .floating-wa a, .floating-phone a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .page-header {
        padding: 40px 0 30px;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
    .cta-section {
        padding: 50px 0;
        text-align: center;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .cta-section .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .contact-form {
        padding: 20px 15px;
    }
    .contact-info-card {
        padding: 20px 15px;
    }
    .contact-info-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .why-us-card .icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    .area-card-img {
        height: 140px;
    }
    .service-detail-img {
        height: 180px;
    }
    .about-image-wrapper img {
        height: 280px;
    }
    .counter-item .count {
        font-size: 1.8rem;
    }
    .site-footer {
        padding: 0;
    }
    .cta-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px 0;
    }
    .cta-bar-text h3 {
        font-size: 1.15rem;
    }
    .cta-bar-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-phone,
    .btn-cta-wa {
        justify-content: center;
        width: 100%;
    }
    .footer-main {
        padding: 40px 0 30px;
    }
}

@media (max-width: 575px) {
    .carousel-item {
        min-height: 350px;
    }
    .hero-slide-content {
        min-height: 300px;
        padding: 15px 0 40px;
    }
    .hero-slide-title {
        font-size: 1.3rem !important;
    }
    .hero-slide-desc {
        font-size: 0.88rem !important;
        margin-bottom: 12px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-slide-actions {
        flex-direction: column;
        gap: 8px !important;
    }
    .btn-hero-phone,
    .btn-hero-wa {
        padding: 10px 16px !important;
        font-size: 0.82rem !important;
        width: 100%;
        justify-content: center;
    }
    .hero-slide-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .hero-slide-trust span {
        font-size: 0.72rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 0.92rem;
    }
    .hero-section {
        min-height: 400px;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.88rem;
    }
    .hero-badge {
        padding: 4px 10px;
        font-size: 0.72rem;
    }
    .hero-stats {
        gap: 15px;
    }
    .hero-stat .number {
        font-size: 1.2rem;
    }
    .hizmet-home-card {
        border-radius: 12px;
    }
    .hizmet-home-img {
        height: 160px;
    }
    .hizmet-home-icon-area {
        height: 140px;
    }
    .hizmet-home-body {
        padding: 16px 14px;
    }
    .hizmet-home-body h5 {
        font-size: 0.95rem;
    }
    .hizmet-home-body p {
        font-size: 0.82rem;
    }
    .section-padding {
        padding: 40px 0;
    }
    .section-title h2 {
        font-size: 1.3rem;
    }
    .section-title .badge-label {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .main-content > .slider-hero {
        min-height: 350px;
        padding-top: 80px;
        margin-top: -80px;
    }
    .page-header {
        padding: 30px 0 20px;
    }
    .page-header h1 {
        font-size: 1.3rem;
    }
    .page-header .breadcrumb {
        font-size: 0.8rem;
    }
    .hizmet-hero {
        min-height: 280px;
    }
    .hizmet-hero-content h1 {
        font-size: 1.4rem;
    }
    .hizmet-hero-content p {
        font-size: 0.88rem;
    }
    .hizmet-hero-badges {
        gap: 8px;
    }
    .hizmet-hero-badge {
        padding: 5px 12px;
        font-size: 0.72rem;
    }
    .hizmet-detail-img {
        height: 180px;
    }
    .hizmet-ozellik-kart {
        padding: 14px;
    }
    .hizmet-ozellik-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }
    .detail-content-card {
        padding: 20px 15px !important;
    }
    .detail-main-img {
        height: 220px !important;
    }
    .sidebar-cta {
        position: static !important;
        margin-top: 20px;
    }
    .sidebar-cta .btn-phone,
    .sidebar-cta .btn-whatsapp {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    .sidebar-cta-body {
        padding: 18px !important;
    }
    .sidebar-cta-header {
        padding: 20px 18px 18px !important;
    }
    .ozellik-kart {
        padding: 15px !important;
    }
    .hizmet-ikon-kart .ikon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.3rem !important;
    }
    .diger-hizmet-kart .kart-resim {
        height: 150px !important;
    }
    .sss-accordion .accordion-button {
        font-size: 0.88rem;
        padding: 12px 15px;
    }
    .sss-accordion .accordion-body {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    .site-footer {
        font-size: 0.85rem;
    }
    .cta-bar-inner {
        padding: 20px 0;
    }
    .cta-bar-text h3 {
        font-size: 1.05rem;
    }
    .cta-bar-text p {
        font-size: 0.82rem;
    }
    .btn-cta-phone,
    .btn-cta-wa {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .footer-main {
        padding: 35px 0 25px;
    }
    .footer-brand-img {
        height: 34px;
    }
    .footer-brand-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.1rem;
    }
    .footer-brand-info strong {
        font-size: 0.95rem;
    }
    .footer-brand-info small {
        font-size: 0.68rem;
    }
    .footer-heading {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }
    .footer-info li {
        font-size: 0.82rem;
    }
    .footer-schedule {
        font-size: 0.78rem;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    .footer-social-row a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.counter-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 50px 0;
}

.counter-item {
    text-align: center;
    color: #fff;
}

.counter-item .count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.counter-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.alert-message {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

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

/* ===== HIZMET DETAY PAGE ===== */
.bg-light { background: #f8fafc !important; }

.hizmet-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hizmet-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hizmet-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 34, 51, 0.93) 0%, rgba(26, 82, 118, 0.88) 100%);
}

.hizmet-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.hizmet-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.hizmet-hero-content h1 i {
    color: var(--secondary);
}

.hizmet-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hizmet-hero-content .breadcrumb {
    font-size: 0.88rem;
}

.hizmet-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.hizmet-hero-content .breadcrumb-item a:hover {
    color: var(--secondary);
}

.hizmet-hero-content .breadcrumb-item.active {
    color: var(--secondary);
}

.hizmet-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.hizmet-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hizmet-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

.hizmet-detail-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hizmet-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hizmet-ozellik-kart {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.hizmet-ozellik-kart:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.hizmet-ozellik-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.hizmet-ozellik-kart strong {
    display: block;
    font-size: 0.98rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.hizmet-ozellik-kart p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.detail-main-img {
    width: 100%;
    object-fit: cover;
    height: 420px;
    border-radius: 12px;
}

.detail-main-img-wrapper {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
}

.detail-content-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.detail-content-card-accent {
    border-left: 5px solid var(--secondary);
}

.detail-title {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0;
}

.title-bar {
    display: inline-block;
    width: 4px;
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

.title-bar-lg {
    height: 30px;
    background: var(--secondary);
}

.title-bar-md {
    height: 26px;
    background: var(--primary);
}

.detail-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
}

.detail-text p {
    margin-bottom: 1rem;
}

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

.ozellik-baslik {
    color: var(--dark);
    display: block;
}

.ozellik-aciklama {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 4px 0 0;
    line-height: 1.6;
}

.sidebar-cta {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.sidebar-cta-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
    padding: 28px 24px 24px;
    text-align: center;
    color: #fff;
}

.sidebar-cta-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}

.sidebar-cta-header h5 {
    font-size: 1.15rem;
    color: #fff !important;
}

.sidebar-cta-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #fff;
}

.sidebar-cta-body {
    padding: 24px;
}

.sidebar-cta .btn-phone {
    background: linear-gradient(135deg, var(--primary), #1a5276);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar-cta .btn-phone:hover {
    background: linear-gradient(135deg, #1a5276, var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12,34,51,0.3);
}

.sidebar-cta .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar-cta .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e5eb, transparent);
    margin: 20px 0;
}

.sidebar-features {
    background: linear-gradient(135deg, rgba(26,82,118,0.04), rgba(41,128,185,0.04));
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(26,82,118,0.08);
}

.sidebar-features-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.sidebar-features-list {
    font-size: 0.85rem;
    color: #4a5568;
    padding-left: 0;
    margin-bottom: 0;
    line-height: 2;
    list-style: none;
}

.sidebar-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
}

.sidebar-features-list li i {
    color: var(--secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.sidebar-features-list.sidebar-hizmet-links li a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

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

.sidebar-features-desc {
    font-size: 0.85rem;
    color: #5a6577;
    margin-bottom: 0;
    line-height: 1.5;
}

.sidebar-hours {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(245,158,11,0.15);
}

.sidebar-hours-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.sidebar-hours-text {
    font-size: 0.85rem;
    color: #5a6577;
    margin-bottom: 0;
    line-height: 1.5;
}

.bolge-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bolge-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bolge-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bolge-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 34, 51, 0.94) 0%, rgba(26, 82, 118, 0.9) 100%);
}

.bolge-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.bolge-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.bolge-hero-content h1 span {
    color: var(--secondary);
}

.bolge-hero-content .bolge-hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.bolge-hero-content .breadcrumb {
    font-size: 0.88rem;
}

.bolge-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.bolge-hero-content .breadcrumb-item a:hover {
    color: var(--secondary);
}

.bolge-hero-content .breadcrumb-item.active {
    color: var(--secondary);
}

.bolge-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.bolge-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bolge-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bolge-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--secondary);
    color: #0c2233;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all .3s;
    font-size: 0.95rem;
    margin-top: 8px;
}

.bolge-hero-btn:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.25);
    color: #0c2233;
}

.bolge-detail-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bolge-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

.bolge-detail-icon-block {
    height: 380px;
    border-radius: 16px;
}

.bolge-hizmet-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 14px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    text-decoration: none;
    color: var(--dark);
    text-align: center;
    transition: all 0.3s ease;
    gap: 8px;
}

.bolge-hizmet-kart i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.bolge-hizmet-kart span {
    font-size: 0.85rem;
    font-weight: 600;
}

.bolge-hizmet-kart:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(26, 82, 118, 0.1);
    color: var(--primary);
}

.bolge-hizmet-kart:hover i {
    color: var(--secondary);
    transform: scale(1.12);
}

.bolge-avantaj {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef0f2;
    transition: all 0.3s ease;
}

.bolge-avantaj:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.bolge-avantaj-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}

.bolge-avantaj strong {
    display: block;
    font-size: 0.96rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.bolge-avantaj p {
    font-size: 0.84rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.55;
}

.bolge-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.bolge-stat-item {
    background: var(--light);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
}

.bolge-stat-item .stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.bolge-stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
    display: block;
}

.sidebar-features-desc {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.hizmet-ikon-kart {
    background: var(--light);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.hizmet-ikon-kart:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.hizmet-ikon-kart .ikon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 1.5rem;
}

.hizmet-kart-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.88rem;
}

.diger-hizmet-kart {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.diger-hizmet-kart:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.diger-hizmet-kart .kart-resim {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.diger-hizmet-kart .kart-resim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
}

.diger-hizmet-kart .kart-body {
    padding: 15px;
}

.diger-hizmet-kart .kart-body h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.diger-hizmet-kart .kart-body p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ===== HAKKIMIZDA SECTION (HOMEPAGE) ===== */
.about-section-home {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.about-section-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 82, 118, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section-home .about-image-wrapper img {
    height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-section-home .about-content-col {
    display: flex;
    flex-direction: column;
}

.about-section-home .about-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-section-home .about-description-wrap {
    position: relative;
    max-height: 210px;
    overflow: hidden;
    margin-bottom: 6px;
}

.about-section-home .about-description-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--light));
    pointer-events: none;
}

.about-section-home .about-description {
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
    font-size: 0.95rem;
}

.about-section-home .about-description p {
    margin-bottom: 1rem;
}

.about-section-home .about-description p:last-child {
    margin-bottom: 0;
}

.about-section-home .about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.about-section-home .about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
}

.about-section-home .about-feature-item i {
    color: var(--success);
    font-size: 1rem;
}

.about-section-home .about-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 24px;
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all .3s;
    align-self: flex-start;
    font-size: 0.88rem;
}

.about-section-home .about-more-link:hover {
    background: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
    color: #000;
}

@media (max-width: 991px) {
    .about-section-home .about-description-wrap {
        max-height: none;
        overflow: visible;
    }
    .about-section-home .about-description-wrap::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-section-home .about-image-wrapper img {
        height: 280px;
    }
    .about-section-home .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HAKKIMIZDA PAGE ===== */
.about-title {
    font-size: 2rem;
    color: var(--dark);
}

.about-description {
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

.about-description p {
    margin-bottom: 1rem;
}

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

.about-mission-box {
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    padding: 16px;
    margin-top: 16px;
}

.about-mission-box h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-mission-box p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 0;
}

.about-vision-box {
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    padding: 16px;
    margin-top: 12px;
}

.about-vision-box h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-vision-box p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ===== ILETISIM PAGE ===== */
.contact-link {
    color: inherit;
    text-decoration: none;
}

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

.contact-info-whatsapp .icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.contact-info-whatsapp .contact-link {
    color: #0B5E42;
}

.contact-info-whatsapp .contact-link:hover {
    color: #094C35;
}

.contact-hours-box {
    background: var(--secondary);
    border-radius: var(--radius);
    color: #000;
    padding: 16px;
    margin-top: 24px;
}

.contact-hours-box h6 {
    font-weight: 700;
}

.contact-hours-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-submit-btn {
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.contact-map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-section-title {
    color: var(--dark);
}

.contact-section-desc {
    color: var(--gray);
}

.contact-form-title {
    color: var(--dark);
}

/* ===== HIZMETLERIMIZ PAGE ===== */
.hizmet-list-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hizmet-list-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hizmet-list-link:hover .hizmet-list-card {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(12,34,51,0.12);
    border-color: transparent;
}

.hizmet-list-visual {
    position: relative;
    overflow: hidden;
}

.hizmet-list-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.hizmet-list-link:hover .hizmet-list-img {
    transform: scale(1.06);
}

.hizmet-list-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,34,51,0.7), rgba(26,82,118,0.5));
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hizmet-list-link:hover .hizmet-list-img-ov {
    opacity: 1;
}

.hizmet-list-img-ov::after {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    box-shadow: 0 4px 15px rgba(230,126,34,0.4);
    transform: scale(0);
    transition: transform 0.3s 0.1s;
}

.hizmet-list-link:hover .hizmet-list-img-ov::after {
    transform: scale(1);
}

.hizmet-list-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--secondary), #f39c12);
    color: #000;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(230,126,34,0.3);
}

.hizmet-list-icon-area {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hizmet-list-icon-area i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s;
}

.hizmet-list-link:hover .hizmet-list-icon-area {
    background: linear-gradient(135deg, #0c2233, #1a3a5c);
}

.hizmet-list-link:hover .hizmet-list-icon-area i {
    color: var(--secondary);
    transform: scale(1.15);
}

.hizmet-list-body {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hizmet-list-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.hizmet-list-link:hover .hizmet-list-title {
    color: var(--primary);
}

.hizmet-list-desc {
    color: #5a6577;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.hizmet-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
}

.hizmet-list-go {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s;
}

.hizmet-list-link:hover .hizmet-list-go {
    color: var(--secondary);
}

.hizmet-list-go i {
    transition: transform 0.3s;
}

.hizmet-list-link:hover .hizmet-list-go i {
    transform: translateX(4px);
}

.hizmet-list-wa {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #0B5E42;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
}

.hizmet-list-wa:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

.service-detail-img-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.service-detail-img-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.service-detail-btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 700;
}

.service-detail-btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

@media (max-width: 991px) {
    .hizmet-list-img {
        height: 180px;
    }
    .hizmet-list-icon-area {
        height: 160px;
    }
    .hizmet-list-body {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .hizmet-list-card {
        border-radius: 12px;
    }
    .hizmet-list-img {
        height: 170px;
    }
    .hizmet-list-icon-area {
        height: 150px;
    }
    .hizmet-list-icon-area i {
        font-size: 2.8rem;
    }
    .hizmet-list-body {
        padding: 14px;
    }
    .hizmet-list-title {
        font-size: 0.95rem;
    }
    .hizmet-list-desc {
        font-size: 0.82rem;
    }
    .hizmet-list-wa {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .hizmet-list-img {
        height: 160px;
    }
    .hizmet-list-icon-area {
        height: 130px;
    }
    .hizmet-list-icon-area i {
        font-size: 2.5rem;
    }
    .hizmet-list-body {
        padding: 12px;
    }
    .hizmet-list-footer {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .hizmet-list-wa {
        justify-content: center;
    }
}

.service-detail-btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 700;
}

.service-detail-btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

@media (max-width: 991px) {
    .detail-main-img {
        height: 300px;
    }
    .detail-content-card {
        padding: 25px 20px;
    }
    .sidebar-cta {
        position: static !important;
        margin-top: 20px;
    }
    .bolge-hero-content h1 {
        font-size: 1.9rem;
    }
    .bolge-hero-content p {
        font-size: 1rem;
    }
    .bolge-detail-img {
        height: 300px;
    }
    .page-header {
        min-height: auto !important;
        padding: 50px 0 35px;
    }
    .page-header h1 {
        font-size: 1.8rem !important;
    }
    .about-image-wrapper img {
        height: 300px;
    }
    .contact-form {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .detail-main-img {
        height: 220px;
    }
    .detail-content-card {
        padding: 20px 15px;
    }
    .detail-content-card h2 {
        font-size: 1.4rem;
    }
    .detail-content-card h3 {
        font-size: 1.2rem;
    }
    .detail-text {
        font-size: 0.95rem;
    }
    .hizmet-ikon-kart {
        padding: 20px 12px;
    }
    .hizmet-ikon-kart .ikon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .hizmet-ikon-kart .hizmet-kart-label {
        font-size: 0.75rem;
    }
    .diger-hizmet-kart .kart-resim {
        height: 160px;
    }
    .bolge-detail-section {
        padding: 20px 15px;
    }
    .bolge-hero-content h1 {
        font-size: 1.6rem;
    }
    .bolge-hero-content p {
        font-size: 0.92rem;
    }
    .bolge-hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    .bolge-detail-img {
        height: 220px;
    }
    .bolge-avantaj {
        padding: 16px;
    }
    .bolge-avantaj-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }
    .sidebar-cta {
        position: static !important;
        margin-top: 20px;
    }
    .sidebar-cta-body {
        padding: 18px !important;
    }
    .sidebar-cta .btn-phone,
    .sidebar-cta .btn-whatsapp {
        padding: 13px !important;
        font-size: 0.92rem !important;
    }
    .sidebar-cta-icon-wrap {
        width: 50px !important;
        height: 50px !important;
    }
    .page-header h1 {
        font-size: 1.5rem !important;
    }
    .page-header p {
        font-size: 0.95rem !important;
    }
    .about-image-wrapper img {
        height: 240px;
    }
    .contact-form {
        padding: 20px 15px;
    }
    .contact-info-card {
        padding: 20px 15px;
    }
    .contact-info-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .bolge-hizmet-kart {
        padding: 16px 10px;
    }
    .bolge-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .bolge-stat-item {
        padding: 12px 8px;
    }
    .bolge-stat-item .stat-num {
        font-size: 1.2rem;
    }
    .bolge-stat-item .stat-label {
        font-size: 0.68rem;
    }
    .sidebar-features {
        padding: 12px;
    }
    .sidebar-hours {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .detail-main-img {
        height: 180px;
    }
    .detail-content-card {
        padding: 15px 12px;
        border-radius: 12px;
    }
    .detail-content-card h2 {
        font-size: 1.2rem;
    }
    .sidebar-cta .btn-phone,
    .sidebar-cta .btn-whatsapp {
        padding: 12px !important;
        font-size: 0.88rem !important;
    }
    .sidebar-cta-header {
        padding: 18px 16px 16px !important;
    }
    .sidebar-cta-header h5 {
        font-size: 1.05rem !important;
    }
    .sidebar-cta-icon-wrap {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }
    .sidebar-cta-body {
        padding: 16px !important;
    }
    .sidebar-divider {
        margin: 14px 0 !important;
    }
    .sidebar-features {
        padding: 12px !important;
    }
    .sidebar-hours {
        padding: 12px !important;
    }
    .bolge-hero-content {
        padding: 50px 0 35px;
    }
    .bolge-hero-content h1 {
        font-size: 1.4rem;
    }
    .bolge-hero-content p {
        font-size: 0.88rem;
    }
    .bolge-hero-btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    .bolge-hero-badges {
        gap: 8px;
    }
    .bolge-hero-badge {
        padding: 5px 12px;
        font-size: 0.72rem;
    }
    .bolge-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .bolge-stat-item {
        padding: 10px 6px;
    }
    .bolge-stat-item .stat-num {
        font-size: 1.1rem;
    }
    .bolge-detail-img {
        height: 180px;
    }
    .bolge-avantaj {
        padding: 14px;
    }
    .page-header h1 {
        font-size: 1.3rem !important;
    }
    .about-image-wrapper img {
        height: 200px;
    }
    .contact-hours-box {
        padding: 12px;
    }
    .service-detail-img {
        height: 160px;
    }
}

.pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background: #f8f9fa;
    border-color: #dee2e6;
}

@media (max-width: 575px) {
    .pagination .page-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}