/* =========================================================
   AURA Event Venue - Ana Stil Sistemi (style.css)
   Tasarım Dili: Premium, doğal, zarif, ferah
   ========================================================= */

:root {
    --aura-bg: #F7F3EC;
    --aura-cream: #EFE5D4;
    --aura-gold: #B9965B;
    --aura-gold-dark: #9c7d45;
    --aura-dark: #1E241C;
    --aura-green: #465743;
    --aura-soft-green: #8C9A7B;
    --aura-brown: #7A5C3E;
    --aura-white: #FFFFFF;
    --aura-black: #111111;

    --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-script: "Allura", "Brittany Signature", cursive;
    --font-body: "Montserrat", "Segoe UI", system-ui, sans-serif;

    --radius-card: 24px;
    --radius-btn: 50px;
    --shadow-soft: 0 20px 60px rgba(30, 36, 28, 0.08);
    --shadow-hover: 0 28px 80px rgba(30, 36, 28, 0.14);
    --container: 1200px;
}

/* ---------- Reset / Base ---------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--aura-dark);
    background-color: var(--aura-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--aura-green);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--aura-gold);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--aura-dark);
    line-height: 1.2;
    margin-top: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ---------- Tipografi Yardımcıları ---------- */
.section-script {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--aura-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 0 0 14px;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--aura-green);
    font-size: 1.02rem;
}

.text-gold { color: var(--aura-gold) !important; }
.text-cream { color: var(--aura-cream) !important; }
.bg-dark-green { background-color: var(--aura-dark) !important; }

/* ---------- Section ---------- */
.aura-section {
    padding: clamp(56px, 9vw, 110px) 0;
}

.aura-section.center {
    text-align: center;
}

.aura-section.alt {
    background-color: var(--aura-cream);
}

.aura-section.dark {
    background-color: var(--aura-dark);
    color: var(--aura-cream);
}

.aura-section.dark h1,
.aura-section.dark h2,
.aura-section.dark h3 {
    color: var(--aura-white);
}

.section-head {
    text-align: center;
    margin-bottom: 52px;
}

.about-story-media {
    align-self: flex-start;
}

.about-story-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

/* ---------- Butonlar ---------- */
.btn-aura {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-aura {
    background: var(--aura-gold);
    color: var(--aura-white);
    border-color: var(--aura-gold);
}

.btn-primary-aura:hover {
    background: var(--aura-green);
    border-color: var(--aura-green);
    color: var(--aura-white);
    transform: translateY(-2px);
}

.btn-secondary-aura {
    background: transparent;
    color: var(--aura-gold);
    border: 1px solid var(--aura-gold);
}

.btn-secondary-aura:hover {
    background: var(--aura-gold);
    color: var(--aura-white);
    transform: translateY(-2px);
}

.btn-light-aura {
    background: var(--aura-white);
    color: var(--aura-dark);
    border-color: var(--aura-white);
}

.btn-light-aura:hover {
    background: var(--aura-gold);
    color: var(--aura-white);
    border-color: var(--aura-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Kartlar ---------- */
.aura-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-card);
    border-top: 3px solid var(--aura-gold);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    height: 100%;
    transition: all 0.35s ease;
}

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

.aura-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--aura-cream);
    color: var(--aura-gold);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.aura-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.aura-card p {
    color: var(--aura-green);
    margin: 0;
    font-size: 0.96rem;
}

/* ---------- Paket Kartları ---------- */
.package-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-card);
    border: 1px solid rgba(30, 36, 28, 0.08);
    border-top: 3px solid var(--aura-gold);
    box-shadow: var(--shadow-soft);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.package-card-head {
    margin-bottom: 14px;
}

.package-card-head h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--aura-green-dark, var(--aura-green));
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--aura-green);
    background: var(--aura-cream);
    padding: 6px 12px;
    border-radius: 999px;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aura-gold);
    margin-bottom: 16px;
    line-height: 1.2;
}

.package-price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--aura-green);
}

.package-content {
    font-size: 0.95rem;
    color: var(--aura-green);
    margin-bottom: 16px;
}

.package-content p:last-child {
    margin-bottom: 0;
}

.package-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.package-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--aura-green);
    margin-bottom: 8px;
}

.package-highlights li i {
    color: var(--aura-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.package-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.package-actions .btn-aura {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.package-inline-head {
    margin-bottom: 18px;
}

.package-inline-title {
    font-size: 1.35rem;
    margin: 0;
    color: var(--aura-green-dark, var(--aura-green));
}

.event-detail-packages-section {
    border-top: 1px solid rgba(30, 36, 28, 0.06);
}

/* ---------- Etkinlik / Görsel Kart ---------- */
.event-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 5;
    display: block;
}

.event-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--aura-green);
    transition: transform 0.6s ease;
}

.event-card:hover img {
    transform: scale(1.07);
}

.event-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 36, 28, 0.85) 0%, rgba(30, 36, 28, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: var(--aura-white);
}

.event-card .overlay h3 {
    color: var(--aura-white);
    margin: 0 0 4px;
    font-size: 1.5rem;
}

.event-card .overlay p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

/* AURA logosu ile marka etkinlik kartı (görsel yoksa) */
.event-card--brand {
    background: var(--aura-green);
}

.event-card--brand.event-card--brand-lg {
    aspect-ratio: 4 / 3;
}

.event-card--brand .event-card-brand {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14% 12% 38%;
}

.event-card--brand .event-card-brand-logo {
    display: block;
    width: 62%;
    max-width: 200px;
    height: auto;
    max-height: 46%;
    object-fit: contain;
    object-position: center;
    opacity: 0.88;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.event-card--brand.event-card--brand-lg .event-card-brand-logo {
    width: 56%;
    max-width: 180px;
    max-height: 40%;
}

.event-card--brand:hover .event-card-brand-logo {
    transform: scale(1.03);
    opacity: 0.95;
}

.event-card--brand .overlay {
    background: linear-gradient(
        to top,
        rgba(20, 24, 20, 0.94) 0%,
        rgba(30, 36, 28, 0.55) 32%,
        rgba(30, 36, 28, 0.12) 62%,
        transparent 100%
    );
}

/* ---------- Navbar ---------- */
.aura-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(17, 17, 17, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transition: all 0.35s ease;
}

.aura-navbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.aura-navbar .brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.aura-navbar .brand-logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(42vw, 220px);
    object-fit: contain;
    background: transparent;
    transition: height 0.3s ease;
}

.aura-navbar.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
}

.aura-navbar.scrolled .brand-logo {
    height: 42px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a,
.nav-dropdown-toggle {
    color: var(--aura-white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.nav-menu > li > a::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--aura-gold);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.is-active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.is-active::after,
.nav-dropdown.is-active .nav-dropdown-toggle::after {
    width: 100%;
}

.nav-menu > li > a.is-active,
.nav-dropdown-toggle.is-active {
    color: var(--aura-gold);
}

/* ---------- Menü Dropdown (Etkinlikler) ---------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hover boşluğunda menünün kapanmaması için görünmez köprü */
.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    max-width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--aura-white);
    border-radius: 16px;
    border: 1px solid rgba(185, 150, 91, 0.15);
    box-shadow: 0 22px 55px rgba(30, 36, 28, 0.2);
    list-style: none;
    margin: 0;
    padding: 8px 0 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-head {
    padding: 8px 18px 6px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--aura-gold);
    font-weight: 600;
    pointer-events: none;
}

.nav-dropdown-empty {
    padding: 10px 18px;
    font-size: 0.82rem;
    color: #999;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--aura-dark) !important;
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a i {
    font-size: 0.85rem;
    color: var(--aura-gold);
    opacity: 0.85;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--aura-cream);
    color: var(--aura-gold) !important;
}

.nav-dropdown-menu .nav-sub.depth-0 a {
    font-weight: 500;
}

.nav-dropdown-menu .nav-sub.depth-1 a {
    padding-left: 28px;
    font-size: 0.84rem;
    color: var(--aura-green) !important;
}

.nav-dropdown-menu .nav-sub.depth-2 a {
    padding-left: 40px;
    font-size: 0.82rem;
}

.nav-dropdown-menu .nav-sub.depth-3 a {
    padding-left: 52px;
}

.nav-cta .btn-aura {
    padding: 10px 22px;
    font-size: 0.78rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--aura-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle .nav-icon-close {
    display: none;
}

.nav-toggle.is-open .nav-icon-open {
    display: none;
}

.nav-toggle.is-open .nav-icon-close {
    display: inline;
}

.aura-navbar.scrolled .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.menu-open {
    overflow: hidden;
}

/* ---------- Hero ---------- */
.aura-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--aura-white);
    overflow: hidden;
}

.aura-hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.aura-hero .hero-media img,
.aura-hero .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ana sayfa — tam ekran YouTube hero (yazı/buton yok) */
.aura-hero.aura-hero--video {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 520px;
    padding: 0;
    background: #1E241C;
}

.aura-hero.aura-hero--video::after {
    display: none;
}

.aura-hero.aura-hero--video .hero-youtube-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.aura-hero.aura-hero--video .hero-youtube-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    max-width: none;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
}

.hero-sound-toggle {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(30, 36, 28, 0.55);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.hero-sound-toggle:hover {
    background: rgba(30, 36, 28, 0.82);
    border-color: rgba(185, 150, 91, 0.65);
    transform: scale(1.06);
}

.hero-sound-toggle:focus-visible {
    outline: 2px solid var(--aura-gold);
    outline-offset: 3px;
}

.aura-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(30, 36, 28, 0.55), rgba(30, 36, 28, 0.65));
}

.aura-hero .hero-script {
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    color: var(--aura-gold);
    margin-bottom: 4px;
}

.aura-hero h1 {
    color: var(--aura-white);
    font-size: clamp(2.4rem, 7vw, 5rem);
    margin: 0 0 18px;
}

.aura-hero p {
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Page Header (iç sayfalar) ---------- */
.page-header {
    position: relative;
    padding: 170px 0 70px;
    text-align: center;
    color: var(--aura-white);
    background: var(--aura-green);
    overflow: hidden;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(30, 36, 28, 0.55), rgba(30, 36, 28, 0.7));
    z-index: 0;
}

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

.page-header h1 {
    color: var(--aura-white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 0;
}

.breadcrumb-aura {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-aura a {
    color: var(--aura-cream);
}

/* ---------- Formlar ---------- */
.aura-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--aura-green);
}

.aura-form .form-control,
.aura-form .form-select {
    border: 1px solid rgba(122, 92, 62, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    background: var(--aura-white);
}

.aura-form .form-control:focus,
.aura-form .form-select:focus {
    border-color: var(--aura-gold);
    box-shadow: 0 0 0 0.2rem rgba(185, 150, 91, 0.18);
}

.form-card {
    background: var(--aura-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: clamp(24px, 4vw, 44px);
}

/* ---------- Hızlı Teklif Formu (Hero altı) ---------- */
.quick-quote {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

/* ---------- Galeri ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 34px;
}

.gallery-filter button {
    border: 1px solid var(--aura-gold);
    background: transparent;
    color: var(--aura-gold);
    border-radius: var(--radius-btn);
    padding: 8px 22px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: var(--aura-gold);
    color: var(--aura-white);
}

/* ---------- Blog ---------- */
.blog-card {
    background: var(--aura-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all 0.35s ease;
}

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

.blog-card .thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .thumb img {
    transform: scale(1.06);
}

.blog-card .body {
    padding: 24px;
}

.blog-card .meta {
    font-size: 0.78rem;
    color: var(--aura-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.blog-layout {
    align-items: flex-start;
}

.blog-sidebar {
    position: sticky;
    top: 96px;
}

.blog-widget {
    background: var(--aura-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    margin-bottom: 20px;
}

.blog-widget-title {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--aura-dark);
    margin-bottom: 14px;
}

.blog-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-widget-list li + li {
    margin-top: 8px;
}

.blog-widget-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(30, 36, 28, 0.82);
    font-size: 0.9rem;
}

.blog-widget-list a:hover,
.blog-widget-list a.is-active {
    color: var(--aura-gold);
}

.blog-widget-count {
    font-size: 0.78rem;
    color: rgba(30, 36, 28, 0.45);
}

.blog-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent-list li + li {
    margin-top: 12px;
}

.blog-recent-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: inherit;
}

.blog-recent-thumb {
    width: 64px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-recent-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.blog-recent-body strong {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--aura-dark);
}

.blog-recent-body small {
    font-size: 0.76rem;
    color: rgba(30, 36, 28, 0.5);
}

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--aura-cream);
    color: var(--aura-dark);
    font-size: 0.8rem;
    border: 1px solid rgba(30, 36, 28, 0.08);
}

.blog-tag:hover,
.blog-tag.is-active {
    background: var(--aura-gold);
    border-color: var(--aura-gold);
    color: #fff;
}

.blog-list-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.blog-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--aura-white);
    box-shadow: var(--shadow-soft);
    font-size: 0.84rem;
}

.blog-filter-clear {
    font-size: 0.84rem;
    color: var(--aura-gold);
    text-decoration: underline;
}

.blog-pagination {
    margin-top: 36px;
}

.blog-pagination ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-page-link {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--aura-white);
    color: var(--aura-dark);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.blog-page-link:hover,
.blog-page-link.is-active {
    background: var(--aura-gold);
    color: #fff;
}

.blog-page-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.blog-page-ellipsis {
    color: rgba(30, 36, 28, 0.45);
    padding: 0 4px;
}

.blog-detail-cover {
    margin: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.blog-detail-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-detail-summary {
    color: rgba(30, 36, 28, 0.78);
    margin-bottom: 1.5rem;
}

/* ---------- Referans / Yorum ---------- */
.testimonial {
    background: var(--aura-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 28px 24px 24px;
    background: linear-gradient(180deg, var(--aura-cream) 0%, rgba(239, 229, 212, 0.35) 100%);
    border-bottom: 1px solid rgba(30, 36, 28, 0.06);
}

.testimonial-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.testimonial-logo img {
    display: block;
    max-height: 88px;
    max-width: min(100%, 220px);
    width: auto;
    object-fit: contain;
}

.testimonial-company {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    color: var(--aura-green);
    line-height: 1.4;
}

.testimonial-header.is-fallback .testimonial-company.visually-hidden {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
}

.testimonial-body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial .stars {
    color: var(--aura-gold);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.testimonial p {
    font-style: italic;
    color: var(--aura-dark);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.testimonial .author {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(30, 36, 28, 0.08);
    font-weight: 600;
    color: var(--aura-green);
}

/* ---------- SSS (Accordion) ---------- */
.faq-item {
    background: var(--aura-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-item .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--aura-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--aura-green);
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 24px 22px;
}

.faq-item .faq-q .sign {
    color: var(--aura-gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q .sign {
    transform: rotate(45deg);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    text-align: center;
    background:
        linear-gradient(rgba(30, 36, 28, 0.85), rgba(30, 36, 28, 0.9)),
        url("../img/cta-bg.jpg") center/cover no-repeat;
    color: var(--aura-white);
    border-radius: 0;
}

.cta-banner h2 {
    color: var(--aura-white);
}

/* ---------- Footer ---------- */
.aura-footer {
    background: var(--aura-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 24px;
    font-size: 0.9rem;
}

.aura-footer h4 {
    color: var(--aura-white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.aura-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.aura-footer a:hover {
    color: var(--aura-gold);
}

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

.aura-footer ul li {
    margin-bottom: 10px;
}

.aura-footer .footer-logo {
    display: block;
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 44px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
}

.footer-bottom-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.siyahdigital-link {
    display: inline-flex;
    flex-shrink: 0;
}

.siyahdigital-link img {
    display: block;
    height: 26px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.siyahdigital-link:hover img {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
    background: var(--aura-gold);
    border-color: var(--aura-gold);
    color: #fff;
}

/* ---------- Çerez onay bandı ---------- */
.cookie-consent {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 1240;
    padding: 1rem 0;
    background: var(--aura-dark);
    border-top: 1px solid rgba(185, 150, 91, 0.25);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.cookie-consent-text {
    flex: 1 1 280px;
    max-width: 760px;
    color: rgba(239, 229, 212, 0.88);
}

.cookie-consent-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--aura-white);
}

.cookie-consent-text p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    flex-shrink: 0;
}

.cookie-consent-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--aura-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent-link:hover {
    color: var(--aura-white);
}

.cookie-consent-btn {
    padding: 10px 18px;
    font-size: 0.82rem;
}

body.has-cookie-consent .wa-float {
    bottom: 110px;
}

body.has-cookie-consent:not(.menu-open) main {
    padding-bottom: 6.5rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 999;
    animation: wa-pulse 2.2s infinite;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Yardımcılar ---------- */
.mt-section { margin-top: clamp(40px, 6vw, 80px); }
.divider-gold {
    width: 80px;
    height: 2px;
    background: var(--aura-gold);
    margin: 16px auto;
    border: 0;
}

/* ---------- Zengin metin içeriği ---------- */
.rich-content img { max-width: 100%; height: auto; border-radius: 8px; }
.rich-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.rich-content table th,
.rich-content table td { border: 1px solid #e0e0e0; padding: 8px 12px; }
.rich-content blockquote {
    border-left: 3px solid var(--aura-gold);
    padding-left: 1rem;
    color: #555;
    margin: 1rem 0;
}
