/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Üst Bilgi Barı */
.top-info-bar {
    display: flex;
    width: 100%;
    min-height: 48px;
    position: relative;
    z-index: 1002;
}

.top-info-left {
    position: relative;
    background: #6f0f1d;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.top-info-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -38px;
    width: 0;
    height: 0;
    border-top: 48px solid #6f0f1d;
    border-right: 38px solid transparent;
}

.top-info-left-inner {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 10px;
}

.top-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.top-phone-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-phone-icon svg {
    fill: #ffffff;
    display: block;
}

.top-phone-icon path {
    fill: #ffffff;
}

.top-phone-text {
    white-space: nowrap;
}

.top-bar-divider {
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.top-socials-left {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 20px;
}

.top-socials-left a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-socials-left a:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.top-info-right {
    flex: 1;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
}

.top-info-right-inner {
    width: 100%;
    padding-left: 72px;
    padding-right: 30px;
    display: flex;
    align-items: center;
}

.top-info-items {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.top-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    white-space: nowrap;
}

.top-info-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #e8e8e8;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.top-info-item-primary {
    color: #6f0f1d;
    font-weight: 700;
}

.top-info-mini-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f7e8eb;
    color: #6f0f1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-info-mini-icon svg {
    fill: currentColor;
    display: block;
}

/* Header Tasarımı */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6f0f1d;
    z-index: 2;
    pointer-events: none;
}

/* Logo */
.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Menü */
.navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.navigation ul li {
    margin-left: 15px;
    position: relative;
}

.navigation ul li a,
.dropdown-toggle {
    text-decoration: none;
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    -webkit-appearance: none;
    appearance: none;
}

.navigation ul li a:hover,
.dropdown-toggle:hover {
    color: #e60000;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg,
.dropdown.active-dropdown .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    min-width: 240px;
    flex-direction: column;
    padding: 5px 0;
    border-radius: 0 0 5px 5px;
    border-top: 2px solid #e60000;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
}

.dropdown-menu li a {
    padding: 8px 15px !important;
    display: block;
    font-weight: 500 !important;
    font-size: 13.5px;
    width: 100%;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-highlight {
    color: #e60000 !important;
    font-weight: bold !important;
}

/* Gizliler */
.mobile-only-nav,
.mobile-socials,
.hero-btns-mobile,
.mobile-feature-combo {
    display: none;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

/* Hero */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-color: #333;
    background-image: url('img/hero-desktop.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e60000;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #c40000;
    transform: translateY(-1px);
}

/* Masaüstü Avantaj Kutuları */
.advantages {
    position: relative;
    margin-top: -60px;
    z-index: 6;
    padding-bottom: 34px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e60000, #ff3b3b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.advantage-card h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #111111;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

/* Masaüstü SEO Tanıtım Alanı */
.desktop-intro {
    position: relative;
    z-index: 5;
    padding: 0 0 50px;
}

.desktop-intro-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 38px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    max-width: 1080px;
    margin: 0 auto;
}

.desktop-intro-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6f0f1d;
    background: #f8e8eb;
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.desktop-intro-box h2 {
    font-size: 32px;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 18px;
}

.desktop-intro-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b4b4b;
    margin-bottom: 14px;
}

.desktop-intro-box p:last-child {
    margin-bottom: 0;
}
/* Tablet */
@media (max-width: 1200px) {
    .top-info-right-inner {
        padding-left: 60px;
        padding-right: 20px;
    }

    .top-info-items {
        gap: 22px;
    }

    .top-info-item:not(:last-child)::after {
        right: -11px;
    }
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-phone-link {
        font-size: 14px;
    }

    .top-info-item {
        font-size: 13px;
    }

    .top-info-right-inner {
        padding-left: 54px;
    }

    .desktop-intro-box {
        padding: 28px 26px;
    }

    .desktop-intro-box h2 {
        font-size: 27px;
    }

    .desktop-intro-box p {
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }

    .main-header {
        padding: 11px 16px;
    }

    .main-header::before {
        display: none;
    }

    .logo img {
        max-height: 44px;
    }

    .hamburger {
        display: block;
        font-size: 28px;
    }

    .navigation {
        display: none;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .navigation ul li {
        margin: 0;
        border-bottom: 1px solid #eeeeee;
        width: 100%;
    }

    .navigation ul li a,
    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 9px 16px;
        font-size: 14px;
    }

    .mobile-only-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        color: #fff !important;
        padding: 10px 14px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        line-height: 1.2;
    }

    .btn-contact svg {
        flex-shrink: 0;
    }

    .btn-call {
        background-color: #e60000;
    }

    .btn-whatsapp {
        background-color: #07742f;
    }

    .dropdown-menu {
        position: relative;
        display: block;
        width: 100%;
        background-color: #fcfcfc;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown.active-dropdown .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        border-top: 1px solid #eeeeee;
        margin-bottom: 4px;
    }

    .dropdown-menu li a {
        padding: 8px 16px !important;
        font-size: 13px;
        color: #555;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 12px 0;
        margin: 0 16px;
        border-top: 1px solid #dddddd;
    }

    .mobile-socials a {
        color: #555555;
        font-size: 18px;
    }

    .hero {
        height: auto;
        min-height: 400px;
        padding: 70px 0 42px;
        background-image: url('img/hero-mobile.webp');
        background-position: center center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .desktop-hero-btns {
        display: none;
    }

    .hero-btns-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .mobile-feature-combo {
    display: block;
    background: #f4f4f4;
    margin-top: -14px;
    padding: 0 0 28px;
    position: relative;
    z-index: 4;
}

    .mobile-feature-main {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 16px 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    margin-bottom: 2px;
    position: relative;
    z-index: 5;
    transform: translateY(-18px);
}

    .mobile-feature-main-content {
        text-align: center;
    }

    .mobile-feature-badge {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        color: #b30000;
        background: #ffe5e5;
        padding: 6px 10px;
        border-radius: 999px;
        margin-bottom: 10px;
    }

    .mobile-feature-main h2 {
        font-size: 26px;
        line-height: 1.2;
        color: #111111;
        margin-bottom: 10px;
        text-align: center;
    }

    .mobile-feature-main p {
        font-size: 14px;
        line-height: 1.6;
        color: #555555;
        text-align: center;
    }

    .mobile-feature-subgrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mobile-feature-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 16px 14px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
        text-align: left;
    }

    .mobile-feature-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #fff2f2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        margin-bottom: 12px;
    }

    .mobile-feature-card h3 {
        font-size: 16px;
        line-height: 1.3;
        color: #111111;
        margin-bottom: 6px;
    }

    .mobile-feature-card p {
        font-size: 13px;
        line-height: 1.5;
        color: #666666;
    }

    .desktop-intro {
        display: none;
    }

    .advantages {
        display: none;
    }
}
/* Hizmet Kartları Bölümü */
.services-showcase {
    padding: 0 0 56px;
}

.services-showcase-heading {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.services-showcase-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.services-showcase-heading h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #111111;
}

.services-showcase-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1200px;
}

.service-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ddd2d6;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        filter 0.28s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.service-card.is-active,
.service-card:hover {
    transform: translateY(-8px);
    border-color: #cdbfc4;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
    filter: saturate(1.03);
}

.service-card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-media {
    position: relative;
    height: 240px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(183, 31, 51, 0.18) 0%, rgba(183, 31, 51, 0) 38%),
        linear-gradient(180deg, #fff7f9 0%, #f8edf0 100%);
}

.service-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: drop-shadow(0 16px 22px rgba(127, 19, 35, 0.13));
}

.service-card:hover .service-media img,
.service-card.is-active .service-media img {
    transform: scale(1.08);
}

.service-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 221, 225, 0.95);
    color: #7f1323;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.media-shine {
    position: absolute;
    top: 0;
    left: -65%;
    width: 46%;
    height: 100%;
    background: linear-gradient(
        100deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover .media-shine,
.service-card.is-active .media-shine {
    left: 125%;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 12px;
    color: #171717;
}

.service-content p {
    font-size: 15px;
    line-height: 1.72;
    color: #626262;
    margin-bottom: 22px;
}

.service-inline-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7f1323;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15px;
}

.service-inline-link svg {
    width: 11px;
    height: 11px;
    transition: transform 0.25s ease;
}

.service-card:hover .service-inline-link svg,
.service-card.is-active .service-inline-link svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .services-showcase-heading h2 {
        font-size: 34px;
    }

    .services-showcase-heading p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-media {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 0 0 36px;
    }

    .services-showcase-heading {
        margin-bottom: 24px;
    }

    .services-showcase-badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .services-showcase-heading h2 {
        font-size: 28px;
    }

    .services-showcase-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        border-radius: 22px;
    }

    .service-card.is-active,
    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-media {
        height: 200px;
    }

    .service-media img {
        padding: 24px;
    }

    .service-chip {
        top: 12px;
        right: 12px;
        font-size: 11px;
        min-height: 30px;
        padding: 6px 10px;
    }

    .service-content {
        padding: 18px 16px 18px;
    }

    .service-content h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.62;
        margin-bottom: 18px;
    }

    .service-inline-link {
        font-size: 13px;
    }
}

/* Ana Sayfa CTA Bölümü */
.home-cta-section {
    padding: 0 0 60px;
}

.home-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(183, 31, 51, 0.18) 0%, rgba(183, 31, 51, 0) 34%),
        linear-gradient(135deg, #7f1323 0%, #98182a 45%, #b71f33 100%);
    box-shadow: 0 20px 44px rgba(90, 15, 28, 0.20);
    padding: 38px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.home-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0) 56%);
    pointer-events: none;
}

.home-cta-content,
.home-cta-actions {
    position: relative;
    z-index: 2;
}

.home-cta-content {
    flex: 1;
    max-width: 760px;
}

.home-cta-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.home-cta-content h2 {
    font-size: 36px;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 14px;
}

.home-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    max-width: 760px;
}

.home-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 270px;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.home-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.home-cta-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-cta-btn-call {
    background: #ffffff;
    color: #7f1323;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.home-cta-btn-call .home-cta-btn-icon {
    background: #f8e9ec;
    color: #7f1323;
}

.home-cta-btn-whatsapp {
    background: #07742f;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.home-cta-btn-whatsapp .home-cta-btn-icon {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

@media (max-width: 992px) {
    .home-cta-box {
        padding: 30px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta-content h2 {
        font-size: 30px;
    }

    .home-cta-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .home-cta-actions {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
    }

    .home-cta-btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .home-cta-section {
        padding: 0 0 36px;
    }

    .home-cta-box {
        border-radius: 20px;
        padding: 24px 18px;
        gap: 20px;
    }

    .home-cta-badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .home-cta-content h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .home-cta-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-cta-actions {
        flex-direction: column;
        gap: 10px;
    }

    .home-cta-btn {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }

    .home-cta-btn-icon {
        width: 32px;
        height: 32px;
    }
}
/* Ana Sayfa SSS Bölümü */
.home-faq-section {
    padding: 0 0 60px;
}

.home-faq-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.home-faq-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.home-faq-heading h2 {
    font-size: 38px;
    line-height: 1.16;
    margin-bottom: 14px;
    color: #111111;
}

.home-faq-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.home-faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-faq-item:hover {
    transform: translateY(-2px);
    border-color: #ccbfc4;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.home-faq-item.active {
    border-color: #cdbec3;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
}

.home-faq-question {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    text-align: left;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.home-faq-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8e9ec;
    color: #7f1323;
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.25s ease, background 0.25s ease;
}

.home-faq-item.active .home-faq-icon {
    transform: rotate(45deg);
    background: #f2dde2;
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.home-faq-item.active .home-faq-answer {
    max-height: 220px;
}

.home-faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #5f5f5f;
}

@media (max-width: 992px) {
    .home-faq-heading h2 {
        font-size: 32px;
    }

    .home-faq-heading p {
        font-size: 16px;
    }

    .home-faq-question {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 0 0 36px;
    }

    .home-faq-heading {
        margin-bottom: 24px;
    }

    .home-faq-badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .home-faq-heading h2 {
        font-size: 27px;
    }

    .home-faq-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-faq-list {
        gap: 12px;
    }

    .home-faq-item {
        border-radius: 16px;
    }

    .home-faq-question {
        padding: 18px 16px;
        font-size: 15px;
        gap: 12px;
    }

    .home-faq-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .home-faq-answer p {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-faq-item.active .home-faq-answer {
        max-height: 260px;
    }
}
/* Hizmet Bölgeleri Bölümü */
.home-areas-section {
    padding: 0 0 56px;
}

.home-areas-heading {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-areas-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.home-areas-heading h2 {
    font-size: 38px;
    line-height: 1.16;
    margin-bottom: 14px;
    color: #111111;
}

.home-areas-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.home-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-area-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 72px;
    padding: 0 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(183, 31, 51, 0.05) 0%, rgba(183, 31, 51, 0) 42%);
    pointer-events: none;
}

.home-area-card:hover {
    transform: translateY(-4px);
    border-color: #ccbfc4;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
}

.home-area-name,
.home-area-arrow {
    position: relative;
    z-index: 2;
}

.home-area-name {
    font-size: 17px;
    font-weight: 700;
    color: #171717;
}

.home-area-arrow {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f8e9ec;
    color: #7f1323;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.home-area-card:hover .home-area-arrow {
    transform: translateX(3px);
    background: #f2dde2;
}

/* Anahtar Kelime / Mini Hizmet Özeti Bölümü */
.home-keywords-section {
    padding: 0 0 64px;
}

.home-keywords-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
    padding: 34px 36px;
}

.home-keywords-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183, 31, 51, 0.10) 0%, rgba(183, 31, 51, 0) 70%);
    pointer-events: none;
}

.home-keywords-badge,
.home-keywords-box h2,
.home-keywords-box p {
    position: relative;
    z-index: 2;
}

.home-keywords-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.home-keywords-box h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 18px;
    max-width: 950px;
}

.home-keywords-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 16px;
}

.home-keywords-box p:last-child {
    margin-bottom: 0;
}

.home-keywords-box strong {
    color: #7f1323;
    font-weight: 800;
}

@media (max-width: 992px) {
    .home-areas-heading h2,
    .home-keywords-box h2 {
        font-size: 31px;
    }

    .home-areas-heading p,
    .home-keywords-box p {
        font-size: 15px;
    }

    .home-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-keywords-box {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .home-areas-section {
        padding: 0 0 36px;
    }

    .home-keywords-section {
        padding: 0 0 40px;
    }

    .home-areas-heading,
    .home-keywords-box {
        margin: 0 auto;
    }

    .home-areas-heading {
        margin-bottom: 24px;
    }

    .home-areas-badge,
    .home-keywords-badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .home-areas-heading h2,
    .home-keywords-box h2 {
        font-size: 27px;
    }

    .home-areas-heading p,
    .home-keywords-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .home-areas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-area-card {
        min-height: 62px;
        border-radius: 15px;
        padding: 0 14px;
    }

    .home-area-card::before {
        border-radius: 15px;
    }

    .home-area-name {
        font-size: 15px;
    }

    .home-area-arrow {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .home-keywords-box {
        border-radius: 18px;
        padding: 22px 16px;
    }
}
/* Footer */
.site-footer {
    background: linear-gradient(180deg, #2a0e14 0%, #1a090d 100%);
    color: rgba(255,255,255,0.86);
    padding: 54px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
    gap: 34px;
    padding-bottom: 34px;
}

.footer-col h3 {
    font-size: 19px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-logo img {
    max-height: 54px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    max-width: 420px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-static:hover {
    transform: none;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 18px 0 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-about-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 36px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 26px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 0;
    }

    .footer-col:not(:first-child) {
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-logo img {
        max-height: 48px;
        margin-bottom: 14px;
    }

    .footer-about-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }

    .footer-links {
        align-items: center;
        gap: 10px;
    }

    .footer-links li {
        width: 100%;
    }

    .footer-links li a {
        font-size: 14px;
        line-height: 1.7;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer-links li a:hover {
        transform: none;
    }

    .footer-contact-list {
        width: 100%;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 1.7;
        width: 100%;
    }

    .footer-contact-item:hover {
        transform: none;
    }

    .footer-socials {
        justify-content: center;
        gap: 10px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        padding: 16px 0 18px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}
.footer-credit {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    text-align: center;
}

.footer-credit a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.25s ease;
}

.footer-credit a:hover {
    opacity: 0.85;
}
/* Son Yazılar Bölümü */
.home-latest-posts-section {
    padding: 0 0 56px;
}

.home-latest-posts-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-latest-posts-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.home-latest-posts-heading h2 {
    font-size: 36px;
    line-height: 1.16;
    margin-bottom: 14px;
    color: #111111;
}

.home-latest-posts-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
}

.home-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.latest-post-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    padding: 22px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.latest-post-card:hover {
    transform: translateY(-4px);
    border-color: #ccbfc4;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
}

.latest-post-card.loading-card {
    color: #777777;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.latest-post-date {
    font-size: 13px;
    font-weight: 700;
    color: #7f1323;
    margin-bottom: 14px;
}

.latest-post-title {
    font-size: 20px;
    line-height: 1.4;
    color: #171717;
    font-weight: 700;
    margin-bottom: 18px;
}

.latest-post-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7f1323;
    font-size: 14px;
    font-weight: 800;
}

.latest-post-link svg {
    width: 11px;
    height: 11px;
    transition: transform 0.25s ease;
}

.latest-post-card:hover .latest-post-link svg {
    transform: translateX(4px);
}

.home-latest-posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.home-latest-posts-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #ddd2d6;
    color: #7f1323;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-latest-posts-all-link:hover {
    transform: translateY(-2px);
    border-color: #ccbfc4;
    box-shadow: 0 12px 22px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .home-latest-posts-heading h2 {
        font-size: 31px;
    }

    .home-latest-posts-heading p {
        font-size: 15px;
    }

    .home-latest-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-latest-posts-section {
        padding: 0 0 36px;
    }

    .home-latest-posts-heading {
        margin-bottom: 24px;
    }

    .home-latest-posts-badge {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .home-latest-posts-heading h2 {
        font-size: 27px;
    }

    .home-latest-posts-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .latest-post-card {
        min-height: 160px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .latest-post-title {
        font-size: 18px;
    }

    .latest-post-date {
        font-size: 12px;
    }
}
/* Hizmet Sayfası */
.service-hero {
    padding: 42px 0 34px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.service-hero-content {
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    padding: 34px 34px 32px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 14px;
    color: #666666;
}

.service-breadcrumb a {
    color: #7f1323;
    text-decoration: none;
    font-weight: 700;
}

.service-page-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.service-hero-content h1 {
    font-size: 42px;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 16px;
}

.service-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.service-main-btn:hover {
    transform: translateY(-2px);
}

.service-main-btn-call {
    background: #7f1323;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(127, 19, 35, 0.18);
}

.service-main-btn-whatsapp {
    background: #07742f;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(7, 116, 47, 0.18);
}

.service-hero-media {
    position: relative;
}

.service-hero-image-wrap {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #ddd2d6;
    background:
        radial-gradient(circle at top right, rgba(183, 31, 51, 0.18) 0%, rgba(183, 31, 51, 0) 38%),
        linear-gradient(180deg, #fff7f9 0%, #f8edf0 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image-wrap img {
    width: 100%;
    max-width: 420px;
    max-height: 420px;
    object-fit: contain;
    padding: 34px;
    filter: drop-shadow(0 18px 24px rgba(127, 19, 35, 0.14));
}

.service-highlights {
    padding: 0 0 34px;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-highlight-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    text-align: center;
    border: 1px solid #e2d8dc;
}

.service-highlight-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e60000, #ff3b3b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-highlight-card h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #111111;
}

.service-highlight-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #5a5a5a;
}

.service-content-section {
    padding: 0 0 34px;
}

.service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.service-main-content-box {
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    padding: 34px 34px 30px;
}

.service-content-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.service-main-content-box h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 18px;
}

.service-main-content-box h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #171717;
    margin: 24px 0 12px;
}

.service-main-content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 16px;
}

.service-check-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 8px 0 10px;
}

.service-check-list li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

.service-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7f1323;
    font-weight: 800;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-sidebar-box {
    background: #ffffff;
    border: 1px solid #ddd2d6;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    padding: 22px 18px;
}

.service-sidebar-box h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #171717;
    margin-bottom: 14px;
}

.service-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    background: #7f1323;
    color: #ffffff;
}

.service-sidebar-btn:last-child {
    margin-bottom: 0;
}

.service-sidebar-btn-whatsapp {
    background: #07742f;
}

.service-sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-sidebar-links li a {
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.service-sidebar-links li a:hover {
    color: #7f1323;
}

.service-area-strip {
    padding: 0 0 34px;
}

.service-area-strip-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(183, 31, 51, 0.16) 0%, rgba(183, 31, 51, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    padding: 30px 32px;
    text-align: center;
}

.service-area-strip-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.service-area-strip-box h2 {
    font-size: 31px;
    line-height: 1.22;
    margin-bottom: 14px;
    color: #111111;
}

.service-area-strip-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #5b5b5b;
}

.service-faq-section {
    padding: 0 0 56px;
}

.service-faq-heading {
    max-width: 860px;
    margin: 0 auto 24px;
    text-align: center;
}

.service-faq-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8e9ec;
    border: 1px solid #f0dde1;
    color: #7f1323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.service-faq-heading h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #111111;
}

.service-faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #fcfafb 100%);
    border: 1px solid #ddd2d6;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.service-faq-item.active {
    border-color: #cdbec3;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
}

.service-faq-question {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    text-align: left;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.service-faq-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8e9ec;
    color: #7f1323;
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.25s ease, background 0.25s ease;
}

.service-faq-item.active .service-faq-icon {
    transform: rotate(45deg);
    background: #f2dde2;
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-faq-item.active .service-faq-answer {
    max-height: 220px;
}

.service-faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #5f5f5f;
}

@media (max-width: 992px) {
    .service-hero-grid,
    .service-content-grid,
    .service-highlights-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .service-main-content-box h2,
    .service-faq-heading h2,
    .service-area-strip-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 24px 0 24px;
    }

    .service-hero-content,
    .service-main-content-box,
    .service-area-strip-box {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .service-hero-content h1 {
        font-size: 28px;
    }

    .service-hero-content p,
    .service-main-content-box p,
    .service-area-strip-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    .service-hero-image-wrap {
        min-height: 260px;
        border-radius: 18px;
    }

    .service-hero-image-wrap img {
        max-width: 260px;
        max-height: 260px;
        padding: 20px;
    }

    .service-main-content-box h2,
    .service-faq-heading h2,
    .service-area-strip-box h2 {
        font-size: 26px;
    }

    .service-main-content-box h3 {
        font-size: 21px;
    }

    .service-check-list li {
        font-size: 14px;
    }

    .service-faq-item {
        border-radius: 16px;
    }

    .service-faq-question {
        padding: 18px 16px;
        font-size: 15px;
        gap: 12px;
    }

    .service-faq-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .service-faq-answer p {
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .service-faq-item.active .service-faq-answer {
        max-height: 260px;
    }

    .service-highlight-card {
        padding: 22px 16px;
    }

    .service-highlight-card h2 {
        font-size: 20px;
    }

    .service-highlight-card p {
        font-size: 14px;
    }
}
.service-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-sidebar-post {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #ece4e7;
    text-decoration: none;
}

.service-sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-sidebar-post.loading-post {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
}

.service-sidebar-post-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #7f1323;
    margin-bottom: 6px;
}

.service-sidebar-post-title {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    color: #222222;
    transition: color 0.25s ease;
}

.service-sidebar-post:hover .service-sidebar-post-title {
    color: #7f1323;
}