/*
 Absheron Turizm ana stil dosyası.
 Header, ana sayfa hero ve hizmet önizleme alanları bu dosyada yönetilir.
*/

:root {
    --primary: #061f45;
    --primary-dark: #03152f;
    --primary-soft: #0b356b;
    --white: #ffffff;
    --text-dark: #0b1f3f;
    --text-muted: #5f6b7a;
    --border: #dbe3ef;
    --light-bg: #f7f9fc;
    --shadow: rgba(6, 31, 69, 0.12);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-dark);
    background: var(--white);
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

a {
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    min-height: 72px;
    background: rgba(6, 31, 69, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgba(6, 31, 69, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(3, 21, 47, 0.22);
}

.site-header .navbar {
    min-height: 72px;
    padding: 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    min-height: 72px;
    padding: 0 15px;
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.brand-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.2px;
}

.brand-subtitle {
    margin-top: 7px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4.5px;
}

.site-header .navbar-collapse {
    align-items: center;
    justify-content: flex-end;
}

.main-menu {
    gap: 24px;
    margin-right: 28px;
}

.site-header .nav-link {
    position: relative;
    padding: 28px 0 24px;
    color: var(--white);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.25px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header .nav-link::after {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background: var(--white);
    border-radius: 20px;
    transition: width 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    width: 56px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 42px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
}

.header-cta:hover {
    color: var(--primary);
    background: var(--white);
}

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

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

@media (max-width: 1199.98px) {
    .site-header .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .main-menu {
        gap: 18px;
        margin-right: 20px;
    }

    .brand-title {
        font-size: 21px;
    }

    .site-header .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .site-header .navbar,
    .site-header .container {
        min-height: 70px;
    }

    .brand-title {
        font-size: 22px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .site-header .navbar-collapse {
        padding: 18px;
        margin-top: 14px;
        background: var(--primary);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
    }

    .main-menu {
        gap: 0;
        margin-right: 0;
    }

    .site-header .nav-link {
        display: inline-flex;
        padding: 12px 0;
    }

    .site-header .nav-link::after {
        bottom: 6px;
    }

    .header-cta {
        width: 100%;
        max-width: 320px;
        margin-top: 14px;
    }
}

@media (max-width: 479.98px) {
    .site-header .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        letter-spacing: 3px;
    }
}

/* Diğer sayfalar için temel giriş alanı */
.page-intro {
    padding: 144px 0 72px;
    background: var(--light-bg);
}

.page-intro h1 {
    margin-bottom: 16px;
    color: var(--primary);
}

.page-intro p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Ana sayfa hero */
.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.home-hero::after {
    position: absolute;
    top: 40px;
    right: 70px;
    width: 210px;
    height: 250px;
    pointer-events: none;
    content: "";
    opacity: 0.05;
    background:
        linear-gradient(120deg, transparent 0 38%, var(--white) 38% 49%, transparent 49%),
        linear-gradient(60deg, transparent 0 48%, var(--white) 48% 58%, transparent 58%);
    clip-path: polygon(50% 0, 100% 100%, 72% 100%, 50% 42%, 28% 100%, 0 100%);
}

.home-hero-slider,
.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
    min-height: 100vh;
}

.home-hero-slider .carousel-item {
    position: relative;
}

.home-hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-slider .carousel-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(3, 21, 47, 0.88) 0%, rgba(3, 21, 47, 0.70) 28%, rgba(3, 21, 47, 0.34) 48%, rgba(3, 21, 47, 0.08) 70%, rgba(3, 21, 47, 0) 100%);
}

.home-hero-indicators {
    right: auto;
    bottom: 44px;
    left: calc((100% - min(1320px, 100%)) / 2 + 15px);
    justify-content: flex-start;
    margin: 0;
}

.home-hero-indicators [data-bs-target] {
    width: 42px;
    height: 3px;
    border: 0;
    border-radius: 10px;
}

.home-hero-control {
    width: 7%;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    padding: 120px 15px 110px;
    margin: 0 auto;
}

.hero-content {
    max-width: 570px;
}

.hero-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-kicker::after {
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: var(--white);
}

.home-hero h1 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.home-hero p {
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.hero-btn-primary {
    width: 235px;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--white);
}

.hero-btn-secondary {
    width: 195px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-btn-primary:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--white);
}

.hero-btn-secondary:hover {
    color: var(--primary);
    background: var(--white);
}

@media (min-width: 1200px) {
    .home-hero {
        min-height: 100vh;
    }
}

@media (max-width: 1199.98px) {
    .hero-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .home-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
        background-image:
            linear-gradient(90deg, rgba(3, 21, 47, 0.98) 0%, rgba(3, 21, 47, 0.90) 44%, rgba(3, 21, 47, 0.66) 100%),
            url("../images/hero-antalya.jpg");
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        background-color: var(--primary-dark);
    }

    .hero-container {
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .home-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        background-image:
            linear-gradient(90deg, rgba(3, 21, 47, 0.99) 0%, rgba(3, 21, 47, 0.92) 48%, rgba(3, 21, 47, 0.70) 100%),
            url("../images/hero-antalya.jpg");
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        background-color: var(--primary-dark);
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 479.98px) {
    .hero-container {
        padding: 78px 16px 70px;
    }

    .hero-kicker {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .home-hero h1 {
        font-size: 29px;
    }

    .home-hero p {
        font-size: 15px;
    }
}

/* Ana sayfa hakkında alanı */
.home-about-services {
    padding: 68px 0 82px;
    overflow-x: hidden;
    background: var(--white);
}

.about-services-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.about-services-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.7fr;
    gap: 52px;
    align-items: start;
}

.about-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 29px;
    font-weight: 800;
    line-height: 1.25;
}

.section-line {
    display: block;
    width: 46px;
    height: 2px;
    margin-bottom: 28px;
    background: var(--primary);
}

.about-content p {
    max-width: 440px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
}

.about-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 42px;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.about-detail-link:hover {
    color: var(--white);
    background: var(--primary);
}

@media (max-width: 1199.98px) {
    .about-services-container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 991.98px) {
    .about-services-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479.98px) {
    .about-services-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-content h2 {
        font-size: 25px;
    }
}

/* Hizmet kartları */
.service-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: 6px;
}

.service-preview-card {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(6, 31, 69, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-preview-card:hover {
    box-shadow: 0 22px 48px rgba(6, 31, 69, 0.16);
    transform: translateY(-6px);
}

.service-preview-media {
    height: 205px;
    overflow: hidden;
    background: var(--border);
    border-radius: 14px 14px 0 0;
    transition: height 0.45s ease, transform 0.45s ease;
}

.service-preview-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    transition: transform 0.45s ease;
}

.service-preview-card:hover .service-preview-media img {
    transform: scale(1.08);
}

.service-preview-card:hover .service-preview-media {
    height: 390px;
}

.service-preview-icon {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    color: var(--white);
    background: var(--primary);
    border: 5px solid var(--white);
    border-radius: 50%;
    font-size: 28px;
    transform: translateX(-50%);
}

.service-svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.service-preview-content {
    position: relative;
    z-index: 2;
    padding: 26px 24px 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-preview-card:hover .service-preview-content {
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
}

.service-preview-content h3 {
    margin-bottom: 11px;
    color: var(--primary);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.service-preview-content p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-preview-content a {
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .service-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 58px;
    }
}

@media (max-width: 767.98px) {
    .service-preview-grid {
        grid-template-columns: 1fr;
    }

    .service-preview-card {
        height: 420px;
    }

    .service-preview-media {
        height: 220px;
    }

    .service-preview-card:hover .service-preview-media {
        height: 420px;
    }
}

/* Grup şirketleri */
.group-companies-section {
    padding: 86px 0 94px;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.group-companies-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.group-section-heading {
    text-align: center;
}

.group-section-heading span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.group-section-heading h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.group-section-heading p {
    max-width: 760px;
    margin: 0 auto 48px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.group-company-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.group-company-card {
    position: relative;
    min-height: 260px;
    padding: 34px 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.group-company-card:hover {
    box-shadow: 0 24px 58px rgba(6, 31, 69, 0.16);
    transform: translateY(-7px);
}

.company-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--primary);
    border-radius: 18px;
    font-size: 22px;
    font-weight: 900;
    transition: background-color 0.25s ease;
}

.group-company-card:hover .company-emblem {
    background: var(--primary-dark);
}

.group-company-content {
    padding: 0;
}

.group-company-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.group-company-content p {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.group-company-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.group-company-content a:hover {
    transform: translateX(4px);
}

.group-company-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 46px;
    padding: 28px 34px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(6, 31, 69, 0.16);
}

.group-company-cta h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
}

.group-company-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

.group-company-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 48px;
    padding: 0 24px;
    color: var(--primary);
    background: var(--white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .group-companies-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .group-company-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .group-section-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .group-companies-section {
        padding: 66px 0 72px;
    }

    .group-company-grid {
        grid-template-columns: 1fr;
    }

    .group-company-cta {
        flex-direction: column;
        text-align: center;
    }

    .group-company-cta a {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 479.98px) {
    .group-companies-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .group-section-heading h2 {
        font-size: 27px;
    }

    .group-company-card {
        padding: 22px;
    }

    .group-company-cta {
        padding: 26px 20px;
    }
}

/* Ana sayfa alt değerler ve iletişim */
.home-values-section {
    padding: 82px 0 88px;
    background: var(--white);
}

.home-values-container,
.home-contact-band-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.home-values-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.home-values-heading span,
.home-contact-band span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-values-heading h2,
.home-contact-band h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.home-values-heading p,
.home-contact-band p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-value-card {
    padding: 30px 28px;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.09);
}

.home-value-card span {
    display: block;
    margin-bottom: 20px;
    color: rgba(6, 31, 69, 0.32);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.home-value-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.home-value-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-contact-band {
    padding: 0 0 92px;
    background: var(--white);
}

.home-contact-band-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px 38px;
    background: var(--primary);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(6, 31, 69, 0.16);
}

.home-contact-band span,
.home-contact-band h2,
.home-contact-band p {
    color: var(--white);
}

.home-contact-band p {
    color: rgba(255, 255, 255, 0.78);
}

.home-contact-band a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 50px;
    padding: 0 24px;
    color: var(--primary);
    background: var(--white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.home-visual-showcase {
    padding: 86px 0 96px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.home-showcase-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.home-showcase-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.home-showcase-heading span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-showcase-heading h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.home-showcase-heading p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.home-showcase-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(6, 31, 69, 0.14);
}

.home-showcase-card.large {
    grid-row: span 2;
    min-height: 584px;
}

.home-showcase-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-showcase-card:hover img {
    transform: scale(1.06);
}

.home-showcase-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(3, 21, 47, 0.04) 0%, rgba(3, 21, 47, 0.72) 100%);
}

.home-showcase-card div {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.home-showcase-card span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.home-showcase-card h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.home-showcase-card a {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .home-values-container,
    .home-contact-band-container,
    .home-showcase-container {
        margin-right: 24px;
        margin-left: 24px;
    }
}

@media (max-width: 991.98px) {
    .home-values-grid {
        grid-template-columns: 1fr;
    }

    .home-contact-band-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-showcase-grid {
        grid-template-columns: 1fr;
    }

    .home-showcase-card.large {
        min-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .home-values-section {
        padding: 66px 0 72px;
    }

    .home-values-heading h2,
    .home-contact-band h2 {
        font-size: 30px;
    }

    .home-contact-band {
        padding-bottom: 72px;
    }

    .home-visual-showcase {
        padding: 66px 0 72px;
    }

    .home-showcase-heading h2 {
        font-size: 30px;
    }

    .home-contact-band a {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 479.98px) {
    .home-values-container,
    .home-contact-band-container {
        margin-right: 16px;
        margin-left: 16px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .home-values-heading h2,
    .home-contact-band h2,
    .home-showcase-heading h2 {
        font-size: 27px;
    }
}

/* İç sayfa ortak içerikler */
.inner-content-section {
    padding: 78px 0 86px;
    background: var(--white);
}

.inner-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.inner-section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.inner-section-heading span,
.inner-copy span,
.contact-info-panel span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.inner-section-heading h2,
.inner-copy h2,
.contact-info-panel h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.inner-section-heading p,
.inner-copy p,
.contact-info-panel p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.inner-two-column,
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: start;
}

.inner-highlight-card,
.inner-info-card,
.company-detail-card,
.contact-note-card {
    padding: 30px 28px;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.09);
}

.inner-highlight-card h3,
.inner-info-card h3,
.company-detail-card h3,
.contact-note-card h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 21px;
    font-weight: 800;
}

.inner-highlight-card ul {
    padding-left: 18px;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

.inner-card-grid,
.company-detail-grid,
.gallery-grid {
    display: grid;
    gap: 24px;
}

.inner-card-grid {
    margin-top: 42px;
}

.inner-card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.inner-info-card p,
.company-detail-card p,
.contact-note-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.activity-detail-list {
    display: grid;
    gap: 24px;
}

.activity-detail-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.09);
}

.activity-detail-media {
    min-height: 260px;
    overflow: hidden;
}

.activity-detail-media img,
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-detail-content {
    padding: 34px 32px;
}

.activity-detail-content span {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.activity-detail-content h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
}

.activity-detail-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.activity-detail-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.activity-page-section {
    padding: 78px 0 88px;
    background: var(--white);
}

.activity-page-container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.activity-page-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(6, 31, 69, 0.12);
}

.activity-page-hero img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.activity-page-hero div {
    padding: 48px 44px;
}

.activity-page-hero span {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.activity-page-hero h2 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.activity-page-hero p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.activity-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.activity-feature-grid article {
    padding: 30px 28px;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.09);
}

.activity-feature-grid h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.activity-feature-grid p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.company-detail-grid {
    grid-template-columns: repeat(4, 1fr);
}

.company-detail-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--primary);
    border-radius: 16px;
    font-size: 20px;
    font-weight: 900;
}

.company-detail-card a,
.contact-note-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-carousel {
    overflow: hidden;
    margin-bottom: 34px;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(6, 31, 69, 0.14);
}

.gallery-carousel .carousel-item {
    height: 470px;
    background: var(--primary-dark);
}

.gallery-carousel .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-carousel .carousel-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(3, 21, 47, 0.04) 0%, rgba(3, 21, 47, 0.70) 100%);
}

.gallery-carousel .carousel-caption {
    z-index: 2;
    right: auto;
    bottom: 38px;
    left: 38px;
    max-width: 520px;
    text-align: left;
}

.gallery-carousel .carousel-caption h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
}

.gallery-carousel .carousel-caption p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.gallery-item {
    overflow: hidden;
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(6, 31, 69, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(6, 31, 69, 0.09);
}

.gallery-item img {
    height: 230px;
}

.gallery-item figcaption {
    padding: 18px 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.contact-info-panel {
    padding-right: 24px;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-info-list div {
    padding: 18px 20px;
    background: var(--light-bg);
    border-radius: 14px;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 13px;
}

.contact-info-list p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .inner-container,
    .activity-page-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .company-detail-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .inner-two-column,
    .contact-layout,
    .activity-detail-card,
    .activity-page-hero {
        grid-template-columns: 1fr;
    }

    .inner-card-grid.three,
    .activity-feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .inner-content-section {
        padding: 64px 0 72px;
    }

    .inner-section-heading h2,
    .inner-copy h2,
    .contact-info-panel h2 {
        font-size: 30px;
    }

    .company-detail-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .activity-detail-media {
        min-height: 220px;
    }

    .activity-page-section {
        padding: 64px 0 72px;
    }

    .activity-page-hero img,
    .gallery-carousel .carousel-item {
        min-height: 300px;
        height: 340px;
    }

    .activity-page-hero h2 {
        font-size: 30px;
    }

    .gallery-carousel .carousel-caption {
        right: 24px;
        bottom: 26px;
        left: 24px;
    }
}

@media (max-width: 479.98px) {
    .inner-container,
    .activity-page-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .inner-section-heading h2,
    .inner-copy h2,
    .contact-info-panel h2 {
        font-size: 27px;
    }

    .inner-highlight-card,
    .inner-info-card,
    .company-detail-card,
    .contact-note-card,
    .activity-detail-content,
    .activity-page-hero div,
    .activity-feature-grid article {
        padding: 24px 22px;
    }

    .gallery-carousel .carousel-caption h3 {
        font-size: 24px;
    }
}

/* Sade görünür olma animasyonu */
[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer temel görünümü */
.site-footer {
    padding: 48px 0 24px;
    color: var(--white);
    background: var(--primary);
}

.site-footer h2 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.site-footer p {
    margin-bottom: 8px;
}

.footer-menu {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer-menu a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
    margin-bottom: 0;
}
