/* MODULE.CSS REBUILD ? BLOCK 1/10 (Foundations + Layout + Nav + Buttons + Cards + Hero) */

/* 0) TOKENS */
:root {
    --brand-gold: #d4af37;
    --brand-gold-dark: #b88a1a;
    --brand-gold-soft: #f3e5ab;
    --brand-dark: #0f172a;
    --brand-ink: #111827;
    --brand-gray: #64748b;
    --brand-soft: #f8fafc;
    --brand-white: #fff;
    --bg-0: #f8fafc;
    --bg-1: #fdfbf6;
    --line: #e5e7eb;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Playfair Display", "Inter", system-ui, -apple-system, "Segoe UI", serif;
    --r-xs: 10px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-xl: 28px;
    --shadow-1: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow-2: 0 10px 30px rgba(15, 23, 42, .10);
    --shadow-3: 0 18px 44px rgba(17, 24, 39, .12);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --dur-1: 160ms;
    --dur-2: 260ms;
    --container: 1200px;
    --gutter: 24px;
    --focus: 0 0 0 4px rgba(212, 175, 55, .25);
}

/* 1) RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--brand-ink);
    background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--bg-0) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease);
}

a:hover {
    opacity: .92;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 1rem;
    color: rgba(15, 23, 42, .82);
}

strong {
    color: var(--brand-ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .75rem;
    font-family: var(--font-heading);
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--brand-dark);
}

h1 {
    font-size: clamp(30px, 4vw, 48px);
}

h2 {
    font-size: clamp(24px, 3.1vw, 38px);
}

h3 {
    font-size: clamp(20px, 2.2vw, 28px);
}

h4 {
    font-size: clamp(18px, 1.9vw, 22px);
}

/* 2) LAYOUT */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: calc(var(--gutter)/1.3);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: calc(var(--gutter)/-2);
}

[class*="col-"] {
    width: 100%;
    padding-inline: calc(var(--gutter)/2);
}

@media(min-width:768px) {
    .col-md-2 {
        width: 16.666%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666%;
    }

    .col-md-12 {
        width: 100%;
    }
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.section {
    padding: clamp(44px, 6vw, 72px) 0;
}

.section-bg {
    background: radial-gradient(circle at 15% 10%, rgba(212, 175, 55, .18), transparent 55%), linear-gradient(180deg, rgba(15, 23, 42, .03), rgba(15, 23, 42, 0));
    border-top: 1px solid rgba(15, 23, 42, .06);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

/* 3) UTILITIES */
.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.gap-2 {
    gap: .5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.text-center {
    text-align: center !important;
}

.text-end {
    text-align: right !important;
}

.text-white {
    color: #fff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, .55) !important;
}

.text-muted {
    color: var(--brand-gray) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.small {
    font-size: .875rem !important;
}

.lead {
    font-size: 1.15rem;
    font-weight: 450;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-3 {
    padding-inline: 1rem !important;
}

.px-4 {
    padding-inline: 1.5rem !important;
}

.py-3 {
    padding-block: 1rem !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.shadow-sm {
    box-shadow: var(--shadow-1) !important;
}

.rounded-top {
    border-top-left-radius: var(--r-lg);
    border-top-right-radius: var(--r-lg);
}

.rounded-3 {
    border-radius: var(--r-md) !important;
}

.border {
    border: 1px solid var(--line) !important;
}

.bg-light {
    background: transparent !important;
}

/* 4) FORMS (base) */
input,
select,
textarea,
button {
    font: inherit;
    color: inherit;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    background: #fff;
    outline: none;
    transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(212, 175, 55, .8);
    box-shadow: var(--focus);
}

::placeholder {
    color: rgba(100, 116, 139, .75);
}

/* 5) BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 12px 18px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: var(--shadow-1);
    transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease), background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

.btn:active {
    transform: translateY(1px);
}

.btn:focus {
    outline: none;
    box-shadow: var(--shadow-1), var(--focus);
}

.btn-sm {
    padding: 10px 14px;
    border-radius: 11px;
    font-weight: 700;
}

.btn-lg {
    padding: 14px 20px;
    border-radius: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, .28);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(212, 175, 55, .28);
}

.btn-secondary {
    background: var(--brand-dark);
    color: #fff;
    border: none;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .18);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .22);
}

.btn-light {
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid var(--line);
}

.btn-light:hover {
    border-color: rgba(15, 23, 42, .18);
}

.btn-gold {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    border: none;
}

.btn-outline-gold {
    background: transparent;
    color: var(--brand-dark);
    border: 1px solid rgba(212, 175, 55, .55);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, .12);
    border-color: rgba(212, 175, 55, .75);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 12px 34px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
    transform: translateY(-1px);
}

/* 6) CARDS */
.card,
.dashboard-card,
.auth-card,
.card-neo {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-2);
}

.card {
    padding: 24px;
}

.card-neo {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.card-neo:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.card-title {
    margin-bottom: 10px;
}

.card-text {
    color: rgba(100, 116, 139, .92);
    margin-bottom: 0;
}

/* 7) NAV (Glass) ? pages use .glass-nav/.nav-bar/.menu/.dropdown/.nav-toggle/.nav-actions  */
.glass-nav {
    position: sticky;
    top: 16px;
    z-index: 999;
    margin-top: 18px;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu>li {
    position: relative;
}

.menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 650;
    color: rgba(15, 23, 42, .88);
    transition: background var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}

.menu a:hover {
    background: rgba(212, 175, 55, .12);
    color: var(--brand-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Dropdowns */
.dropdown-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
    margin-left: 6px;
    transition: transform var(--dur-2) var(--ease);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(225deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .18);
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: rgba(15, 23, 42, .06);
}

/* Mobile nav (JS: #navToggle toggles .is-open on #navbarMain; dropdown toggles .is-open on .dropdown) */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .9);
    cursor: pointer;
    box-shadow: var(--shadow-1);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(15, 23, 42, .75);
    margin: 4px auto;
    border-radius: 99px;
}

@media(max-width:980px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 8px 4px 6px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .menu a {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: unset;
        box-shadow: none;
        border-radius: 14px;
        background: rgba(15, 23, 42, .03);
        border: 1px solid rgba(15, 23, 42, .06);
    }

    .dropdown.is-open .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        margin-left: auto;
    }
}

/* 8) HERO */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    padding: clamp(56px, 8vw, 96px) 0;
    margin-top: 18px;
    margin-bottom: clamp(28px, 4vw, 48px);
    color: #fff;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, .72), rgba(15, 23, 42, .72)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920');
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .18);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 15% 12%, rgba(212, 175, 55, .45), transparent 55%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, .10), transparent 55%);
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: .55;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: calc(var(--gutter)/1.3);
}

.hero-subtitle {
    margin: 10px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.05rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .10);
    color: var(--brand-gold-soft);
    font-size: .95rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* 9) ANIMATION HOOKS */
.fade-in {
    animation: sdFade .8s var(--ease) both;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes sdFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* 10) TYPO & SIZE UTILITIES (light Bootstrap compatibility) */
.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.display-4 {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-warning {
    color: var(--brand-gold) !important;
}

.bg-white {
    background: #fff !important;
}

.rounded {
    border-radius: var(--r-sm) !important;
}

.rounded-4 {
    border-radius: 18px !important;
}

.rounded-5 {
    border-radius: 22px !important;
}

.g-4 {
    gap: 1.5rem !important;
}

.g-3 {
    gap: 1rem !important;
}

.g-2 {
    gap: .5rem !important;
}

/* 11) BADGES / PILLS */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .6rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, .10);
}

.badge-soft {
    background: rgba(15, 23, 42, .04);
    color: rgba(15, 23, 42, .85);
}

.badge-gold {
    background: rgba(212, 175, 55, .16);
    border-color: rgba(212, 175, 55, .35);
    color: rgba(15, 23, 42, .92);
}

.badge-dark {
    background: rgba(15, 23, 42, .10);
    border-color: rgba(15, 23, 42, .18);
    color: rgba(15, 23, 42, .92);
}

/* 12) DIVIDERS */
.hr {
    height: 1px;
    width: 100%;
    background: rgba(15, 23, 42, .08);
    border: 0;
    margin: 18px 0;
}

.sep {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 14px 0;
}

/* 13) TABLE (dashboard/history) */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}

.table th,
.table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    text-align: left;
    vertical-align: middle;
}

.table th {
    background: rgba(15, 23, 42, .03);
    font-weight: 800;
    color: rgba(15, 23, 42, .88);
    font-size: .92rem;
}

.table tr:hover td {
    background: rgba(212, 175, 55, .06);
}

.table .text-center {
    text-align: center !important;
}

/* 14) SPINNER (blog redirect page) */
.spinner-border {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: sdSpin .75s linear infinite;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

@keyframes sdSpin {
    to {
        transform: rotate(360deg);
    }
}

/* 15) FOOTER */
.footer {
    background: var(--brand-dark);
    color: #94a3b8;
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--brand-gold);
    font-size: .95rem;
}

.footer h4,
.footer h5,
.footer h3 {
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: -.01em;
}

.footer p {
    color: #94a3b8;
}

.footer a {
    color: #cbd5e1;
    transition: color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.footer a:hover {
    color: var(--brand-gold);
    transform: translateX(2px);
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled li {
    margin-bottom: .6rem;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    transition: transform var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
    font-size: 1.2rem;
}

.social-circle:hover {
    background: var(--brand-gold);
    transform: scale(1.08);
}

/* 16) LINKS (footer / content) */
.link {
    color: var(--brand-dark);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, .55);
    text-underline-offset: 4px;
}

.link:hover {
    text-decoration-color: rgba(212, 175, 55, .95);
}

/* 16.5) BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        font-size: 28px;
        line-height: 1;
        min-width: 48px;
        min-height: 48px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
}

/* 16.6) STAT CARDS */
.stat-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* 17) RESPONSIVE TUNING */
@media(max-width:520px) {
    .container {
        padding-inline: 18px;
    }

    .card {
        padding: 18px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-actions .btn {
        width: auto;
    }

    .hero {
        border-radius: 22px;
    }
}

/* 18) SPACING HELPERS used inline in pages */
.mb-xs {
    margin-bottom: .5rem;
}

.mb-sm {
    margin-bottom: .75rem;
}

.mb-md {
    margin-bottom: 1.25rem;
}

.mb-lg {
    margin-bottom: 2rem;
}

.mb-xl {
    margin-bottom: 3rem;
}

.mt-md {
    margin-top: 1.25rem;
}

.mt-lg {
    margin-top: 2rem;
}

.py-md {
    padding-block: 1.25rem;
}

.py-lg {
    padding-block: 2rem;
}

/* 19) TEXT HELPERS */
.section-subtitle {
    margin: .25rem 0 0;
    color: rgba(100, 116, 139, .92);
    font-size: 1rem;
    line-height: 1.55;
}

.text-uppercase {
    text-transform: uppercase !important;
    letter-spacing: .08em;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 20) MEDIA / FIGURES */
.figure {
    margin: 0;
}

.figure img {
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-2);
}

.kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .9em;
    padding: .12em .45em;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(15, 23, 42, .03);
}

/* 21) ALERTS */
.alert {
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.alert-success {
    border-color: rgba(16, 185, 129, .25);
    background: rgba(16, 185, 129, .08);
    color: rgba(15, 23, 42, .92);
}

.alert-warning {
    border-color: rgba(245, 158, 11, .30);
    background: rgba(245, 158, 11, .10);
    color: rgba(15, 23, 42, .92);
}

.alert-danger {
    border-color: rgba(239, 68, 68, .30);
    background: rgba(239, 68, 68, .10);
    color: rgba(15, 23, 42, .92);
}

/* 22) MICRO-INTERACTIONS */
::selection {
    background: rgba(212, 175, 55, .35);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 10px;
}

@media (prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* 23) SCROLLBAR (webkit) */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, .04);
}

*::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, .18);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .6);
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, .28);
}

/* 24) DASHBOARD (foundation only) */
.dashboard-page .section {
    padding: clamp(36px, 5vw, 60px) 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width:980px) {
    .dashboard-grid {
        grid-template-columns: 280px 1fr;
    }
}

.dashboard-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
}

.dashboard-main {
    min-width: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

@media(min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(212, 175, 55, .28);
}

.stat-value {
    font-weight: 900;
    color: var(--brand-dark);
    font-size: 1.35rem;
    line-height: 1;
}

.stat-label {
    color: rgba(100, 116, 139, .92);
    font-weight: 650;
    font-size: .95rem;
    margin-top: 6px;
}

.filter-select {
    min-width: 210px;
    max-width: 100%;
    background: #fff;
}

/* 25) DASHBOARD (impact cards) */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

@media(min-width:768px) {
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.impact-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, rgba(15, 23, 42, .01));
    box-shadow: var(--shadow-1);
}

.impact-card h4 {
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: -.01em;
}

.impact-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.impact-card li {
    margin: .35rem 0;
    color: rgba(75, 85, 99, .95);
}

/* 26) SMALL HELPERS */
.hidden {
    display: none !important;
}

.center {
    margin-inline: auto;
}

.max-600 {
    max-width: 600px;
}

.max-700 {
    max-width: 700px;
}

.max-800 {
    max-width: 800px;
}

/* 27) PLACEHOLDER ICON SLOT (empty divs in cards) */
.icon-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(15, 23, 42, .04);
    border: 1px dashed rgba(15, 23, 42, .10);
}

/* MODULE.CSS REBUILD ? BLOCK 2/10 */
/* Dashboard Advanced + Tables + Bank Accounts + Contact + Actions */

/* 1) DASHBOARD HEADER / TOOLBAR */
.dashboard-header {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--brand-dark);
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dashboard-actions .btn {
    white-space: nowrap;
}

/* 2) FILTER BAR */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-1);
}

.filter-bar label {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(15, 23, 42, .7);
}

.filter-bar select,
.filter-bar input {
    min-width: 160px;
}

@media(max-width:640px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar select,
    .filter-bar input {
        width: 100%;
    }
}

/* 3) DATA TABLE WRAPPER */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.table-wrap .table {
    border: none;
    border-radius: 0;
}

/* 4) TABLE STATES */
.table tbody tr {
    transition: background var(--dur-2) var(--ease);
}

.table tbody tr:hover {
    background: rgba(212, 175, 55, .08);
}

.table td.actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* 5) TABLE ACTION BUTTONS */
.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    cursor: pointer;
    transition: background var(--dur-2) var(--ease),
        transform var(--dur-1) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.btn-icon:hover {
    background: rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-1);
}

.btn-icon.danger:hover {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .35);
}

.btn-icon.success:hover {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .35);
}

/* 6) EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(100, 116, 139, .9);
}

.empty-state h3 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.empty-state p {
    max-width: 420px;
    margin-inline: auto;
}

/* 7) BANK ACCOUNTS GRID */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

@media(min-width:768px) {
    .bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .bank-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 8) BANK CARD */
.bank-card {
    position: relative;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, rgba(15, 23, 42, .015));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.bank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.bank-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-dark));
}

/* 9) BANK CARD CONTENT */
.bank-name {
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.bank-branch {
    font-size: .9rem;
    color: rgba(100, 116, 139, .9);
    margin-bottom: 12px;
}

.bank-info {
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.bank-info strong {
    display: inline-block;
    min-width: 80px;
}

/* 10) IBAN COPY AREA */
.iban-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .04);
    border: 1px dashed rgba(15, 23, 42, .18);
    font-family: ui-monospace, monospace;
    font-size: .9rem;
}

.iban-box span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iban-copy {
    flex-shrink: 0;
}

/* 11) COPY FEEDBACK */
.copy-feedback {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(16, 185, 129, .95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity var(--dur-2) var(--ease),
        transform var(--dur-2) var(--ease);
}

.bank-card.copied .copy-feedback {
    opacity: 1;
    transform: none;
}

/* 12) CONTACT PAGE GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

@media(min-width:980px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* 13) CONTACT INFO CARD */
.contact-info {
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, rgba(15, 23, 42, .02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
}

.contact-info h3 {
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(212, 175, 55, .18);
    border: 1px solid rgba(212, 175, 55, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text {
    font-size: .95rem;
    color: rgba(15, 23, 42, .9);
}

/* 14) CONTACT FORM CARD */
.contact-form {
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
}

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: rgba(15, 23, 42, .75);
}

/* 15) FORM ACTION ROW */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 160px;
}

@media(max-width:520px) {
    .form-actions .btn {
        width: 100%;
    }
}

/* 16) STATUS TAGS */
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
}

.status.active {
    background: rgba(16, 185, 129, .15);
    color: rgba(15, 23, 42, .95);
}

.status.passive {
    background: rgba(239, 68, 68, .15);
    color: rgba(15, 23, 42, .95);
}

.status.pending {
    background: rgba(245, 158, 11, .18);
    color: rgba(15, 23, 42, .95);
}

/* 17) PAGINATION */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}


.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
    transition: background var(--dur-2) var(--ease),
        transform var(--dur-1) var(--ease);
}

.page-link:hover {
    background: rgba(212, 175, 55, .12);
}

.page-item.active .page-link {
    background: var(--brand-gold);
    color: #fff;
    border-color: transparent;
}

/* 18) LOADING OVERLAY */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* 19) DASHBOARD SECTION CARD */
.section-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-2);
    margin-bottom: 24px;
}

.section-card h3 {
    margin-bottom: 12px;
}

/* 20) MINI STATS */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media(min-width:768px) {
    .mini-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.mini-stat {
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .06);
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 1.2rem;
    color: var(--brand-dark);
}

.mini-stat span {
    font-size: .8rem;
    color: rgba(100, 116, 139, .9);
}

/* 21) ICON LIST */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icon-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}

.icon-list-item i {
    color: var(--brand-gold);
}

/* 22) FLOAT ACTION BUTTON */
.fab {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 44px rgba(212, 175, 55, .45);
    z-index: 999;
    transition: transform var(--dur-2) var(--ease);
}

.fab:hover {
    transform: scale(1.08);
}

/* 23) TOOLTIP */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, .95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-2) var(--ease),
        transform var(--dur-2) var(--ease);
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

/* 24) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 2 */
/* MODULE.CSS REBUILD ? BLOCK 3/10 */
/* Blog + Gallery + Projects + Visual Effects */

/* 1) BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 28px;
}

@media(min-width:768px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 2) BLOG CARD */
.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
}

/* 3) BLOG IMAGE */
.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(15, 23, 42, .65));
}

/* 4) BLOG CONTENT */
.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin-top: -42px;
    z-index: 2;
    position: relative;
}

.blog-meta span {
    background: rgba(15, 23, 42, .65);
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* 5) BLOG TITLE */
.blog-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 14px 0 8px;
    color: var(--brand-dark);
}

.blog-excerpt {
    font-size: .95rem;
    color: rgba(100, 116, 139, .95);
    margin-bottom: 16px;
}

/* 6) BLOG FOOTER */
.blog-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-read {
    font-weight: 800;
    font-size: .85rem;
    color: var(--brand-gold-dark);
    letter-spacing: .05em;
}

.blog-read:hover {
    text-decoration: underline;
}

/* 7) BLOG DETAIL */
.blog-detail {
    max-width: 820px;
    margin-inline: auto;
}

.blog-detail img {
    border-radius: 22px;
    margin: 28px 0;
    box-shadow: var(--shadow-2);
}

.blog-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-detail h2,
.blog-detail h3 {
    margin-top: 36px;
}

/* 8) GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media(min-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 9) GALLERY ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease),
        filter .7s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(.75);
}

/* 10) GALLERY OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dur-2) var(--ease);
    background: linear-gradient(rgba(15, 23, 42, .55), rgba(15, 23, 42, .55));
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: .9rem;
    text-transform: uppercase;
}

/* 11) LIGHTBOX PLACEHOLDER */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox.active {
    display: flex;
}

/* 12) PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 28px;
}

@media(min-width:980px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 13) PROJECT CARD */
.project-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    min-height: 340px;
    box-shadow: var(--shadow-3);
    transition: transform var(--dur-2) var(--ease);
}

.project-card:hover {
    transform: translateY(-6px);
}

/* 14) PROJECT IMAGE */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: opacity .6s var(--ease),
        transform .8s var(--ease);
}

.project-card:hover img {
    opacity: .55;
    transform: scale(1.08);
}

/* 15) PROJECT OVERLAY */
.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(15, 23, 42, .85), transparent 60%);
    color: #fff;
}

/* 16) PROJECT CONTENT */
.project-category {
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-gold-soft);
    margin-bottom: 6px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.project-desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 14px;
}

/* 17) PROJECT CTA */
.project-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-actions .btn {
    font-size: .8rem;
    padding: 10px 14px;
    border-radius: 999px;
}

/* 18) PROJECT BADGE */
.project-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(212, 175, 55, .95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .05em;
}

/* 19) REVEAL EFFECT */
.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s var(--ease),
        transform .9s var(--ease);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: none;
}

/* 20) REVEAL FADE */
.reveal-fade {
    opacity: 0;
    transition: opacity .9s var(--ease);
}

.reveal-fade.is-visible {
    opacity: 1;
}

/* 21) HOVER SHINE EFFECT */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
}

.hover-shine:hover::before {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* 22) IMAGE STACK */
.image-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.image-stack img {
    border-radius: 20px;
    box-shadow: var(--shadow-2);
}

.image-stack img:nth-child(odd) {
    transform: translateY(12px);
}

/* 23) TAG LIST */
.tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tag {
    font-size: .7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    border: 1px solid rgba(15, 23, 42, .12);
}

/* 24) AUTHOR BOX */
.author-box {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    margin-top: 40px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: .95rem;
}

.author-info span {
    font-size: .8rem;
    color: rgba(100, 116, 139, .9);
}

/* 25) BLOG NAV */
.blog-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.blog-nav a {
    flex: 1;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-1);
    font-weight: 800;
}

.blog-nav a:hover {
    background: rgba(212, 175, 55, .1);
}

/* 26) SECTION HEADER */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.section-header h2 {
    margin-bottom: 0;
}

/* 27) IMAGE MASK */
.image-mask {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-3);
}

/* 28) MOBILE TWEAKS */
@media(max-width:520px) {
    .blog-title {
        font-size: 1.2rem;
    }

    .project-title {
        font-size: 1.35rem;
    }

    .project-overlay {
        padding: 20px;
    }
}

/* 29) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 3 */
/* MODULE.CSS REBUILD ? BLOCK 4/10 */
/* Auth Pages (Login / Register) + Glass Forms + Validation + States */

/* 1) AUTH PAGE WRAPPER */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background:
        radial-gradient(circle at 10% 10%, rgba(212, 175, 55, .25), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .18), transparent 40%),
        linear-gradient(180deg, #0f172a, #020617);
}

/* 2) AUTH CONTAINER */
.auth-container {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

/* 3) AUTH CARD (GLASS) */
.auth-card {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    padding: 34px 30px;
}

/* 4) AUTH HEADER */
.auth-header {
    text-align: center;
    margin-bottom: 26px;
}

.auth-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 14px 40px rgba(212, 175, 55, .45);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.auth-subtitle {
    font-size: .95rem;
    color: rgba(100, 116, 139, .95);
}

/* 5) AUTH FORM */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* 6) FORM GROUP */
.auth-form .form-group {
    position: relative;
}

.auth-form label {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(15, 23, 42, .75);
}

/* 7) INPUT WITH ICON */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: rgba(100, 116, 139, .9);
    pointer-events: none;
}

.input-icon input {
    padding-left: 42px;
}

/* 8) AUTH INPUT */
.auth-form input {
    border-radius: 14px;
    padding: 14px 14px;
    font-size: .95rem;
    background: #fff;
}

/* 9) INPUT STATES */
.auth-form input:focus {
    border-color: rgba(212, 175, 55, .8);
    box-shadow: var(--focus);
}

.auth-form input.is-valid {
    border-color: rgba(16, 185, 129, .8);
}

.auth-form input.is-invalid {
    border-color: rgba(239, 68, 68, .8);
}

/* 10) VALIDATION MESSAGE */
.validation-msg {
    font-size: .75rem;
    margin-top: 4px;
    font-weight: 700;
}

.validation-msg.success {
    color: rgba(16, 185, 129, .95);
}

.validation-msg.error {
    color: rgba(239, 68, 68, .95);
}

/* 11) PASSWORD TOGGLE */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: .9rem;
    color: rgba(100, 116, 139, .9);
}

/* 12) REMEMBER / FORGOT */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .8rem;
}

.auth-options a {
    color: var(--brand-gold-dark);
    font-weight: 800;
}

.auth-options a:hover {
    text-decoration: underline;
}

/* 13) CHECKBOX */
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-gold);
}

/* 14) SUBMIT BUTTON */
.auth-submit {
    margin-top: 10px;
}

.auth-submit .btn {
    width: 100%;
    padding: 14px;
    font-size: .95rem;
    border-radius: 16px;
}

/* 15) AUTH DIVIDER */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(100, 116, 139, .8);
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(15, 23, 42, .15);
}

/* 16) SOCIAL LOGIN */
.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .15);
    background: #fff;
    font-weight: 800;
    font-size: .85rem;
    cursor: pointer;
    transition: background var(--dur-2) var(--ease),
        transform var(--dur-1) var(--ease);
}

.social-btn:hover {
    background: rgba(15, 23, 42, .05);
    transform: translateY(-1px);
}

/* 17) AUTH FOOTER */
.auth-footer {
    margin-top: 22px;
    text-align: center;
    font-size: .85rem;
}

.auth-footer a {
    font-weight: 900;
    color: var(--brand-gold-dark);
}

/* 18) AUTH BACKGROUND SHAPES */
.auth-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .45;
    z-index: 0;
}

.auth-bg-shape.gold {
    width: 240px;
    height: 240px;
    background: rgba(212, 175, 55, .75);
    top: -80px;
    left: -80px;
}

.auth-bg-shape.white {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .45);
    bottom: -60px;
    right: -60px;
}

/* 19) LOADING STATE */
.auth-loading {
    pointer-events: none;
    opacity: .75;
}

.auth-loading .btn {
    position: relative;
}

.auth-loading .btn::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    animation: sdSpin .75s linear infinite;
}

/* 20) ERROR ALERT */
.auth-alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: .85rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.auth-alert.error {
    background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .35);
    color: rgba(15, 23, 42, .95);
}

.auth-alert.success {
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .35);
    color: rgba(15, 23, 42, .95);
}

/* 21) REGISTER STEP INDICATOR */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.step {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .2);
}

.step.active {
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .25);
}

/* 22) TERMS TEXT */
.terms-text {
    font-size: .7rem;
    text-align: center;
    color: rgba(100, 116, 139, .85);
    margin-top: 14px;
}

.terms-text a {
    color: var(--brand-gold-dark);
    font-weight: 800;
}

/* 23) AUTH ILLUSTRATION SLOT */
.auth-illustration {
    display: none;
}

@media(min-width:1100px) {
    .auth-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
    }

    .auth-illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        background:
            linear-gradient(rgba(15, 23, 42, .65), rgba(15, 23, 42, .65)),
            url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600");
        background-size: cover;
        background-position: center;
        color: #fff;
        padding: 60px;
    }

    .auth-illustration h2 {
        font-size: 2.6rem;
        max-width: 420px;
    }
}

/* 24) MOBILE TWEAKS */
@media(max-width:420px) {
    .auth-card {
        padding: 28px 22px;
    }

    .auth-title {
        font-size: 1.6rem;
    }
}

/* 25) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 4 */
/* MODULE.CSS REBUILD ? BLOCK 5/10 */
/* About Page + Timeline + Team + Mission/Vision + Stats + References */

/* 1) ABOUT HERO */
.about-hero {
    padding: 80px 0 60px;
    text-align: center;
    max-width: 880px;
    margin-inline: auto;
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 1.1rem;
    color: rgba(100, 116, 139, .95);
}

/* 2) MISSION / VISION GRID */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 26px;
    margin-top: 48px;
}

@media(min-width:900px) {
    .mission-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 3) MISSION CARD */
.mission-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

.mission-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .18);
}

.mission-card h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.mission-card p {
    font-size: 1rem;
}

/* 4) ICON BADGE */
.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 14px;
    box-shadow: 0 14px 36px rgba(212, 175, 55, .35);
}

/* 5) TIMELINE */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            var(--brand-gold),
            transparent);
}

/* 6) TIMELINE ITEM */
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 42px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2px;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .25);
}

.timeline-item h4 {
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.timeline-item span {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(100, 116, 139, .85);
}

/* 7) TIMELINE CONTENT */
.timeline-content {
    padding: 18px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
}

/* 8) TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 26px;
    margin-top: 60px;
}

@media(min-width:768px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 9) TEAM CARD */
.team-card {
    position: relative;
    text-align: center;
    padding: 26px 22px 30px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
}

/* 10) TEAM AVATAR */
.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 11) TEAM INFO */
.team-name {
    font-weight: 900;
    font-size: 1.15rem;
}

.team-role {
    font-size: .85rem;
    color: rgba(100, 116, 139, .9);
    margin-bottom: 12px;
}

/* 12) TEAM SOCIAL */
.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, .06);
    transition: background var(--dur-2) var(--ease),
        transform var(--dur-2) var(--ease);
}

.team-social a:hover {
    background: var(--brand-gold);
    color: #fff;
    transform: scale(1.1);
}

/* 13) STATS SECTION */
.stats-section {
    margin: 90px 0;
    padding: 60px 20px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, .85), rgba(15, 23, 42, .85)),
        url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1600");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

/* 14) STATS GRID */
.stats-grid-lg {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 900px;
    margin-inline: auto;
}

@media(min-width:900px) {
    .stats-grid-lg {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 15) STAT ITEM */
.stat-lg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-lg strong {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -.02em;
    animation: countUp 1.6s ease-out forwards;
}

.stat-lg span {
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}

/* 16) COUNTER ANIMATION */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* 17) REFERENCES */
.references {
    margin-top: 80px;
    text-align: center;
}

.references h3 {
    margin-bottom: 28px;
}

/* 18) LOGO WALL */
.logo-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
}

@media(min-width:768px) {
    .logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .logo-wall {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* 19) LOGO ITEM */
.logo-item {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .75;
    transition: opacity var(--dur-2) var(--ease),
        transform var(--dur-2) var(--ease);
}

.logo-item img {
    max-height: 42px;
    filter: grayscale(100%);
    transition: filter var(--dur-2) var(--ease);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.logo-item:hover img {
    filter: none;
}

/* 20) QUOTE */
.about-quote {
    margin: 90px auto 0;
    max-width: 760px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--brand-dark);
    position: relative;
}

.about-quote::before,
.about-quote::after {
    content: "?";
    font-size: 4rem;
    position: absolute;
    color: rgba(212, 175, 55, .35);
}

.about-quote::before {
    left: -30px;
    top: -20px;
}

.about-quote::after {
    content: "?";
    right: -30px;
    bottom: -20px;
}

/* 21) MOBILE OPTIMIZATION */
@media(max-width:520px) {
    .timeline {
        padding-left: 24px;
    }

    .timeline-content {
        padding: 16px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .stat-lg strong {
        font-size: 2.1rem;
    }
}

/* 22) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 5 */
/* MODULE.CSS REBUILD ? BLOCK 6/10 */
/* Homepage Features + CTA + Pricing + Highlight Sections */

/* 1) FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 28px;
    margin-top: 60px;
}

@media(min-width:768px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1100px) {
    .feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 2) FEATURE CARD */
.feature-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .18);
}

/* 3) FEATURE ICON */
.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 12px 34px rgba(212, 175, 55, .35);
}

/* 4) FEATURE CONTENT */
.feature-title {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature-text {
    font-size: .95rem;
    color: rgba(100, 116, 139, .95);
}

/* 5) HIGHLIGHT SECTION */
.highlight-section {
    margin: 90px 0;
    padding: 80px 24px;
    border-radius: 42px;
    background:
        radial-gradient(circle at 10% 10%, rgba(212, 175, 55, .35), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .18), transparent 40%),
        linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 6) HIGHLIGHT CONTENT */
.highlight-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}

.highlight-section p {
    max-width: 680px;
    margin-inline: auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
}

/* 7) CTA BUTTON GROUP */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-group .btn {
    min-width: 180px;
}

/* 8) SHOWCASE GRID */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
    margin-top: 70px;
}

@media(min-width:980px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* 9) SHOWCASE ITEM */
.showcase-item {
    padding: 36px 34px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 10) SHOWCASE IMAGE */
.showcase-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 11) SHOWCASE TEXT */
.showcase-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.showcase-item p {
    font-size: 1rem;
    color: rgba(100, 116, 139, .95);
    margin-bottom: 16px;
}

/* 12) PRICING SECTION */
.pricing-section {
    margin: 100px 0;
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 12px;
}

.pricing-section p {
    max-width: 620px;
    margin-inline: auto;
    color: rgba(100, 116, 139, .95);
}

/* 13) PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
    margin-top: 60px;
}

@media(min-width:900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* 14) PRICING CARD */
.pricing-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3);
}

/* 15) PRICING FEATURED */
.pricing-card.featured {
    background:
        linear-gradient(180deg, #fff, rgba(212, 175, 55, .06));
    border: 2px solid rgba(212, 175, 55, .55);
}

.pricing-card.featured::before {
    content: "En Popüler";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .05em;
}

/* 16) PRICING HEADER */
.pricing-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.pricing-price {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--brand-dark);
}

.pricing-period {
    font-size: .8rem;
    color: rgba(100, 116, 139, .85);
    margin-bottom: 18px;
}

/* 17) PRICING LIST */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
}

.pricing-list li i {
    color: var(--brand-gold);
}

/* 18) PRICING CTA */
.pricing-card .btn {
    width: 100%;
    border-radius: 18px;
}

/* 19) TRUST BAR */
.trust-bar {
    margin: 90px auto 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    text-align: center;
}

@media(min-width:768px) {
    .trust-bar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.trust-item {
    padding: 18px;
}

.trust-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
}

.trust-item span {
    font-size: .85rem;
    color: rgba(100, 116, 139, .9);
}

/* 20) FLOATING CTA */
.floating-cta {
    margin-top: 100px;
    padding: 60px 24px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 80px rgba(212, 175, 55, .55);
}

.floating-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.floating-cta p {
    max-width: 600px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 24px;
}

/* 21) FLOATING CTA BUTTONS */
.floating-cta .btn {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 900;
    border-radius: 999px;
    padding: 14px 28px;
}

/* 22) BACKGROUND DECOR */
.bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
}

.bg-decor.gold {
    background: rgba(212, 175, 55, .85);
    width: 260px;
    height: 260px;
    top: -120px;
    right: -120px;
}

/* 23) MOBILE TWEAKS */
@media(max-width:520px) {
    .feature-card {
        padding: 26px 22px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .highlight-section {
        padding: 60px 20px;
    }
}

/* 24) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 6 */
/* MODULE.CSS REBUILD ? BLOCK 7/10 */
/* Modals + Lightbox + Toast + Micro Interactions */

/* 1) MODAL OVERLAY */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-2) var(--ease);
    z-index: 9998;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 2) MODAL WINDOW */
.modal {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
    padding: 30px 28px;
    position: relative;
    animation: modalIn .5s var(--ease);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* 3) MODAL HEADER */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 900;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, .06);
    cursor: pointer;
    font-size: 1.2rem;
    transition: background var(--dur-2) var(--ease),
        transform var(--dur-2) var(--ease);
}

.modal-close:hover {
    background: rgba(239, 68, 68, .15);
    transform: rotate(90deg);
}

/* 4) MODAL BODY */
.modal-body {
    font-size: .95rem;
    color: rgba(100, 116, 139, .95);
    margin-bottom: 22px;
}

/* 5) MODAL FOOTER */
.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-footer .btn {
    min-width: 140px;
}

/* 6) FULLSCREEN MODAL */
.modal.fullscreen {
    max-width: none;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 40px;
    overflow-y: auto;
}

/* 7) LIGHTBOX OVERLAY */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-2) var(--ease);
    z-index: 9999;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 8) LIGHTBOX CONTENT */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn .4s var(--ease);
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* 9) LIGHTBOX CLOSE */
.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

/* 10) LIGHTBOX NAV */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

/* 11) TOAST CONTAINER */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* 12) TOAST */
.toast {
    min-width: 260px;
    max-width: 340px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: toastIn .45s var(--ease);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* 13) TOAST TYPES */
.toast.success {
    border-left: 6px solid rgba(16, 185, 129, .95);
}

.toast.error {
    border-left: 6px solid rgba(239, 68, 68, .95);
}

.toast.warning {
    border-left: 6px solid rgba(245, 158, 11, .95);
}

/* 14) TOAST CONTENT */
.toast strong {
    display: block;
    font-size: .95rem;
    margin-bottom: 4px;
}

.toast span {
    font-size: .85rem;
    color: rgba(100, 116, 139, .95);
}

/* 15) RIPPLE EFFECT */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: "";
    position: absolute;
    inset: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.ripple:active::after {
    animation: ripple .6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: .6;
    }

    100% {
        transform: scale(12);
        opacity: 0;
    }
}

/* 16) HOVER LIFT */
.hover-lift {
    transition: transform var(--dur-2) var(--ease),
        box-shadow var(--dur-2) var(--ease);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
}

/* 17) PULSE */
.pulse {
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, .45);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* 18) SHAKE (ERROR) */
.shake {
    animation: shake .4s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-6px);
    }

    100% {
        transform: translateX(0);
    }
}

/* 19) SKELETON LOADER */
.skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, .08);
    border-radius: 12px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    animation: skeleton 1.2s infinite;
}

@keyframes skeleton {
    100% {
        transform: translateX(100%);
    }
}

/* 20) PROGRESS BAR */
.progress {
    width: 100%;
    height: 10px;
    background: rgba(15, 23, 42, .1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    transition: width .6s var(--ease);
}

/* 21) ACCORDION */
.accordion {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s var(--ease);
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 16px 20px;
}

/* 22) DROPDOWN (GENERIC) */
.dropdown-box {
    position: relative;
}

.dropdown-box-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-2);
    padding: 10px;
    display: none;
}

.dropdown-box.active .dropdown-box-menu {
    display: block;
}

/* 23) IMAGE ZOOM ON HOVER */
.zoom-hover {
    overflow: hidden;
}

.zoom-hover img {
    transition: transform .7s var(--ease);
}

.zoom-hover:hover img {
    transform: scale(1.12);
}

/* 24) MOBILE ADJUSTMENTS */
@media(max-width:520px) {
    .modal {
        padding: 24px 20px;
    }

    .lightbox-nav.prev {
        left: -48px;
    }

    .lightbox-nav.next {
        right: -48px;
    }

    .toast-container {
        right: 14px;
        bottom: 14px;
    }
}

/* 25) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 7 */
/* MODULE.CSS REBUILD ? BLOCK 8/10 */
/* Responsive Fine-Tuning + Dark Mode + Print + Accessibility */

/* 1) RESPONSIVE TYPO TUNING */
@media(max-width:1024px) {
    h1 {
        font-size: clamp(28px, 4.5vw, 42px);
    }

    h2 {
        font-size: clamp(22px, 3.6vw, 34px);
    }

    .section {
        padding: clamp(36px, 5vw, 60px) 0;
    }
}

/* 2) TABLET LAYOUT FIXES */
@media(max-width:900px) {
    .nav-bar {
        padding: 10px 12px;
    }

    .hero {
        padding: 72px 0;
    }

    .pricing-grid {
        gap: 26px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: relative;
        top: auto;
    }
}

/* 3) MOBILE LAYOUT FIXES */
@media(max-width:640px) {
    .hero {
        padding: 60px 0;
    }

    .hero-subtitle {
        font-size: .95rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid,
    .stats-grid-lg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        gap: 10px;
    }
}

/* 4) SMALL MOBILE */
@media(max-width:420px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .container {
        padding-inline: 16px;
    }

    .btn {
        padding: 12px 14px;
    }
}

/* 5) DARK MODE ROOT */
body.dark {
    --bg-0: #020617;
    --bg-1: #020617;
    --brand-dark: #e5e7eb;
    --brand-ink: #e5e7eb;
    --brand-gray: #94a3b8;
    --line: rgba(255, 255, 255, .12);
    background: #020617;
    color: #e5e7eb;
}

/* 6) DARK MODE ELEMENTS */
body.dark .card,
body.dark .pricing-card,
body.dark .feature-card,
body.dark .team-card,
body.dark .bank-card,
body.dark .section-card {
    background: rgba(15, 23, 42, .95);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

body.dark p {
    color: #cbd5f5;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4 {
    color: #fff;
}

/* 7) DARK MODE NAV */
body.dark .nav-bar {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .12);
}

body.dark .menu a {
    color: #e5e7eb;
}

body.dark .menu a:hover {
    background: rgba(255, 255, 255, .08);
}

/* 8) DARK MODE BUTTONS */
body.dark .btn-light {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
}

body.dark .btn-outline-gold {
    color: #fff;
}

/* 9) DARK MODE TABLE */
body.dark .table {
    background: rgba(15, 23, 42, .95);
}

body.dark .table th {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

body.dark .table td {
    border-bottom-color: rgba(255, 255, 255, .08);
}

/* 10) DARK MODE INPUTS */
body.dark input,
body.dark select,
body.dark textarea {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

body.dark ::placeholder {
    color: #94a3b8;
}

/* 11) DARK MODE MODAL */
body.dark .modal {
    background: rgba(15, 23, 42, .98);
    color: #e5e7eb;
}

/* 12) PRINT STYLES */
@media print {
    * {
        background: none !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .nav-bar,
    .footer,
    .btn,
    .fab,
    .toast-container,
    .modal-overlay,
    .lightbox-overlay {
        display: none !important;
    }

    .section {
        padding: 20px 0;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: .8em;
    }
}

/* 13) ACCESSIBILITY: FOCUS */
:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* 14) ACCESSIBILITY: REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* 15) ACCESSIBILITY: SKIP LINK */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* 16) IMAGE RESPONSIVE HELPERS */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 17) SAFE AREA (MOBILE NOTCH) */
.safe-area {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

/* 18) SCROLL SNAP (OPTIONAL SECTIONS) */
.snap-x {
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: auto;
}

.snap-x>* {
    scroll-snap-align: start;
}

/* 19) HIGH CONTRAST MODE */
@media (prefers-contrast: more) {
    * {
        border-color: #000 !important;
    }

    .btn-primary {
        background: #000 !important;
        color: #fff !important;
    }
}

/* 20) CURSOR HELPERS */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* 21) Z-INDEX SCALE */
.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.z-100 {
    z-index: 100;
}

.z-1000 {
    z-index: 1000;
}

/* 22) OVERFLOW HELPERS */
.overflow-hidden {
    overflow: hidden !important;
}

.overflow-auto {
    overflow: auto !important;
}

/* 23) ASPECT RATIO UTIL */
.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.ratio>* {
    position: absolute;
    inset: 0;
}

/* 24) DEBUG (DEV ONLY) */
.debug * {
    outline: 1px dashed rgba(255, 0, 0, .35);
}

/* 25) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 8 */
/* MODULE.CSS REBUILD ? BLOCK 9/10 */
/* Performance + Utilities + Overrides + Legacy Fallbacks */

/* 1) PERFORMANCE: WILL-CHANGE (LIMITED USE) */
.will-transform {
    will-change: transform;
}

.will-opacity {
    will-change: opacity;
}

.will-scroll {
    will-change: scroll-position;
}

/* 2) PERFORMANCE: IMAGE RENDER */
img {
    image-rendering: auto;
}

img.pixel {
    image-rendering: pixelated;
}

/* 3) GPU ACCELERATION (SAFE) */
.gpu {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 4) FONT RENDERING */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 5) CSS CONTAINMENT */
.contain-layout {
    contain: layout;
}

.contain-paint {
    contain: paint;
}

.contain-strict {
    contain: strict;
}

/* 6) ISOLATION */
.isolate {
    isolation: isolate;
}

/* 7) UTILITY: DISPLAY */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-grid {
    display: grid !important;
}

.d-flex {
    display: flex !important;
}

/* 8) UTILITY: FLEX */
.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.flex-evenly {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

/* 9) UTILITY: ALIGN */
.items-start {
    align-items: flex-start !important;
}

.items-center {
    align-items: center !important;
}

.items-end {
    align-items: flex-end !important;
}

.self-start {
    align-self: flex-start !important;
}

.self-center {
    align-self: center !important;
}

.self-end {
    align-self: flex-end !important;
}

/* 10) UTILITY: JUSTIFY */
.justify-start {
    justify-content: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

/* 11) UTILITY: TEXT */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-break {
    word-break: break-word !important;
}

/* 12) UTILITY: WIDTH / HEIGHT */
.w-auto {
    width: auto !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.h-auto {
    height: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.vh-100 {
    height: 100vh !important;
}

/* 13) UTILITY: SPACING (EXTENDED) */
.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* 14) UTILITY: BORDER */
.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid var(--line) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--line) !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-full {
    border-radius: 999px !important;
}

/* 15) UTILITY: BACKGROUND */
.bg-transparent {
    background: transparent !important;
}

.bg-dark {
    background: #020617 !important;
    color: #fff !important;
}

.bg-gold {
    background: var(--brand-gold) !important;
    color: #fff !important;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark)) !important;
    color: #fff !important;
}

/* 16) UTILITY: OPACITY */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: .25 !important;
}

.opacity-50 {
    opacity: .5 !important;
}

.opacity-75 {
    opacity: .75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

/* 17) UTILITY: POSITION */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

/* 18) UTILITY: TOP / LEFT */
.top-0 {
    top: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

/* 19) POINTER EVENTS */
.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

/* 20) VISIBILITY */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* 21) LEGACY BROWSER FALLBACKS */
@supports not (backdrop-filter:blur(10px)) {

    .glass-nav,
    .auth-card {
        background: rgba(255, 255, 255, .95);
    }
}

/* 22) LEGACY FLEX GAP FIX */
.no-flex-gap>* {
    margin-right: 12px;
}

.no-flex-gap>*:last-child {
    margin-right: 0;
}

/* 23) OVERRIDE LAYER (SAFE ZONE) */
.override {
    all: unset;
    display: block;
}

/* 24) COMPONENT OVERRIDES */
.card.no-shadow {
    box-shadow: none !important;
}

.card.no-border {
    border: none !important;
}

.btn.no-shadow {
    box-shadow: none !important;
}

/* 25) STATE CLASSES */
.is-hidden {
    display: none !important;
}

.is-disabled {
    opacity: .5;
    pointer-events: none;
}

.is-loading {
    pointer-events: none;
    opacity: .6;
}

/* 26) TRANSITION HELPERS */
.transition-none {
    transition: none !important;
}

.transition-fast {
    transition: all .15s ease !important;
}

.transition-slow {
    transition: all .6s ease !important;
}

/* 27) SAFE LINK RESET */
a.reset {
    color: inherit;
    text-decoration: none;
}

/* 28) COMPONENT LOCK */
.locked {
    user-select: none;
    pointer-events: none;
}

/* 29) TESTING GRID (DEV) */
.grid-debug {
    background-image:
        linear-gradient(to right, rgba(255, 0, 0, .15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 0, 0, .15) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 30) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 9 */
/* MODULE.CSS REBUILD ? BLOCK 10/10 */
/* Final Polish + Maintainability + Production Ready Layer */

/* 1) GLOBAL POLISH */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

/* 2) CONSISTENT TRANSITIONS */
* {
    transition-property: background, color, border, box-shadow, transform, opacity;
    transition-duration: var(--dur-2);
    transition-timing-function: var(--ease);
}

/* 3) REMOVE UNWANTED TRANSITIONS */
.no-transition,
.no-transition * {
    transition: none !important;
}

/* 4) LINK POLISH */
a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

a:hover {
    text-decoration-thickness: 2px;
}

/* 5) BUTTON POLISH */
.btn {
    line-height: 1;
}

.btn:disabled,
.btn[disabled] {
    opacity: .6;
    pointer-events: none;
}

/* 6) INPUT POLISH */
input,
textarea,
select {
    caret-color: var(--brand-gold);
}

input:disabled,
textarea:disabled,
select:disabled {
    background: rgba(15, 23, 42, .04);
    opacity: .6;
    cursor: not-allowed;
}

/* 7) IMAGE POLISH */
img {
    user-select: none;
}

img.rounded {
    border-radius: var(--r-lg);
}

/* 8) ICON CONSISTENCY */
i,
.icon {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 9) SECTION CONSISTENCY */
section+section {
    margin-top: 0;
}

/* 10) CARD CONSISTENCY */
.card> :last-child {
    margin-bottom: 0;
}

/* 11) LIST RESET SAFETY */
ul,
ol {
    padding-left: 1.1rem;
}

ul.clean,
ol.clean {
    list-style: none;
    padding-left: 0;
}

/* 12) TABLE FINAL TOUCH */
.table tr:last-child td {
    border-bottom: none;
}

.table-responsive {
    overflow-x: auto;
}

/* 13) MODAL FINAL TOUCH */
.modal:focus {
    outline: none;
}

.modal-overlay {
    overscroll-behavior: contain;
}

/* 14) TOAST FINAL TOUCH */
.toast {
    backdrop-filter: blur(8px);
}

/* 15) SHADOW SCALE NORMALIZATION */
.shadow-none {
    box-shadow: none !important;
}

.shadow-1 {
    box-shadow: var(--shadow-1) !important;
}

.shadow-2 {
    box-shadow: var(--shadow-2) !important;
}

.shadow-3 {
    box-shadow: var(--shadow-3) !important;
}

/* 16) BORDER SCALE */
.border-light {
    border: 1px solid rgba(255, 255, 255, .18) !important;
}

.border-dark {
    border: 1px solid rgba(15, 23, 42, .18) !important;
}

/* 17) COLOR HELPERS */
.text-gold {
    color: var(--brand-gold) !important;
}

.text-dark {
    color: var(--brand-dark) !important;
}

.text-gray {
    color: var(--brand-gray) !important;
}

.text-soft {
    color: rgba(100, 116, 139, .85) !important;
}

/* 18) BACKGROUND HELPERS */
.bg-soft {
    background: rgba(15, 23, 42, .04) !important;
}

.bg-white {
    background: #fff !important;
}

.bg-blur {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
}

/* 19) RADIUS SCALE */
.radius-xs {
    border-radius: var(--r-xs) !important;
}

.radius-sm {
    border-radius: var(--r-sm) !important;
}

.radius-md {
    border-radius: var(--r-md) !important;
}

.radius-lg {
    border-radius: var(--r-lg) !important;
}

.radius-xl {
    border-radius: var(--r-xl) !important;
}

/* 20) SPACING FINAL HELPERS */
.gap-xs {
    gap: .4rem !important;
}

.gap-sm {
    gap: .6rem !important;
}

.gap-md {
    gap: 1rem !important;
}

.gap-lg {
    gap: 1.6rem !important;
}

/* 21) ALIGNMENT HELPERS */
.center-x {
    margin-left: auto !important;
    margin-right: auto !important;
}

.center-y {
    display: flex;
    align-items: center !important;
}

.center-both {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

/* 22) TEXT FLOW */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* 23) CONTENT WIDTH HELPERS */
.max-w-400 {
    max-width: 400px !important;
}

.max-w-600 {
    max-width: 600px !important;
}

.max-w-800 {
    max-width: 800px !important;
}

.max-w-1000 {
    max-width: 1000px !important;
}

/* 24) SAFE ANIMATION ZONE */
.animate {
    will-change: transform, opacity;
}

/* 25) HIDDEN BUT ACCESSIBLE */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 26) DEV FLAGS */
[data-debug="true"] {
    outline: 2px dashed red;
}

/* 27) ATTRIBUTE STATES */
[data-state="active"] {
    opacity: 1;
}

[data-state="inactive"] {
    opacity: .5;
}

[data-state="disabled"] {
    pointer-events: none;
    opacity: .4;
}

/* 28) PRODUCTION SAFETY */
html:not(.loaded) * {
    animation: none !important;
    transition: none !important;
}

/* 29) MODULE END BANNER */
/*
??????????????????????????????????????
MODULE.CSS ? PRODUCTION READY ?
10 / 10 BLOCKS LOADED
??????????????????????????????????????
*/

/* 30) END BLOCK */
/* ????????????????????????????? */
/* END BLOCK 10 */
/* ========================================================= */
/* BLOCK 12 ? BUTTON / ICON / LAYOUT HARD OVERRIDES          */
/* ========================================================= */

/* SADECE ÖNEML? BUTONLAR GÖRÜNSÜN */
button:not(.btn),
a:not(.btn) {
    text-decoration: none !important;
}

/* Primary CTA d???ndaki hero butonlar?n? bast?r */
.hero a:not(.btn-primary):not(.btn-gold),
.hero button:not(.btn-primary) {
    display: none !important;
}

/* Ba??? butonlar? her zaman görünür */
.btn-donate,
.btn-gold,
.btn-primary {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Butonlar aras? saçma hizalanmalar? düzelt */
.btn {
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

/* Yersiz ikonlar? kapat */
i:empty,
.icon:empty,
.btn i:only-child {
    display: none !important;
}

/* Menü ikon karma?as? */
.navbar i,
.menu i {
    display: none !important;
}

/* Login sayfas?ndaki ikon kaymas? */
.auth-form .input-icon i {
    left: 12px !important;
    opacity: .7 !important;
}

/* Form input yükseklik e?itle */
input,
select,
textarea,
button {
    min-height: 48px !important;
}

/* Kart içi buton hizalama */
.card .btn,
.pricing-card .btn,
.project-card .btn {
    margin-top: auto !important;
}

/* Kartlar?n tek tarafa y???lmas?n? engelle */
.cards,
.card-grid,
.pricing-grid,
.projects-grid {
    justify-items: center !important;
}

/* GALER?: ortalama + düzgün grid */
.gallery-grid {
    justify-content: center !important;
    align-items: stretch !important;
}

/* Footer ikon karma?as? */
.footer i {
    display: none !important;
}

/* Responsive zorla hizalama */
@media(max-width:768px) {

    section,
    .hero,
    .banner {
        text-align: center !important;
    }

    .grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* SON ÇARE UI KORUMA */
* {
    max-width: 100%;
}

/* ===================================
   MODERN NAVBAR (STANDARD)
   Tüm sayfalarda kullan?lacak
   =================================== */

/* Header Container */
.modern-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.brand-logo .logo-img {
    height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo a:hover .logo-img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li>a,
.dropdown-trigger {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #1F2937;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
}

.nav-menu>li>a:hover,
.nav-menu>li>a:focus {
    background: #F3F4F6;
    color: #D4AF37;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    margin-left: 6px;
    transition: transform 0.3s ease;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 8px;
    margin: 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    transform: translateX(4px);
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.btn-donate {
    background: linear-gradient(135deg, #D4AF37 0%, #C19A2E 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-register {
    background: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
}

.btn-register:hover {
    background: #D4AF37;
    color: #fff;
}

.btn-login {
    background: #F3F4F6;
    color: #1F2937;
}

.btn-login:hover {
    background: #E5E7EB;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    /* 28px ? 24px küçültüldü */
    height: 18px;
    /* 22px ? 18px küçültüldü */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    /* 3px ? 2.5px daha ince */
    background: #1F2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: #fff;
    padding: 24px;
    min-height: 100%;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu>li {
    margin-bottom: 8px;
}

.mobile-menu>li>a {
    display: block;
    padding: 14px 16px;
    color: #1F2937;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu>li>a:hover {
    background: #F3F4F6;
    color: #D4AF37;
}

/* Mobile Dropdown */
.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #1F2937;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-dropdown-trigger:hover {
    background: #F3F4F6;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    padding-left: 16px;
    margin: 0;
}

.mobile-has-dropdown.active .mobile-dropdown-content {
    max-height: 1000px;
}

.mobile-has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-dropdown-content a:hover {
    background: #FEF3C7;
    color: #92400E;
}

/* Mobile Actions */
.mobile-actions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #E5E7EB;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }
}

/* Intermediate Screens (Tablet / Small Laptop) - RESPONSIVE FIX */
@media (min-width: 768px) and (max-width: 1200px) {

    /* Küçült logo */
    .brand-logo .logo-img {
        height: 48px;
    }

    /* Nav menü font ve spacing küçült */
    .nav-menu {
        gap: 4px;
        /* 8px ? 4px */
    }

    .nav-menu>li>a,
    .dropdown-trigger {
        padding: 8px 12px;
        /* 10px 16px ? 8px 12px */
        font-size: 14px;
        /* 15px ? 14px */
    }

    /* Dropdown daha küçük */
    .dropdown-content {
        min-width: 220px;
        /* 260px ? 220px */
    }

    .dropdown-content a {
        padding: 10px 12px;
        /* 12px 16px ? 10px 12px */
        font-size: 13px;
        /* 14px ? 13px */
    }

    /* Header butonlar? küçült */
    .header-actions {
        gap: 8px;
        /* 12px ? 8px */
    }

    .header-actions .btn {
        padding: 8px 16px;
        /* Daha compact */
        font-size: 14px;
    }

    /* Container padding azalt */
    .header-wrapper {
        gap: 16px;
        /* Daha s?k? layout */
    }
}

/* Large Tablets (900px - 1024px) - Ek iyile?tirme */
@media (min-width: 900px) and (max-width: 1024px) {
    .nav-menu {
        gap: 6px;
    }

    .nav-menu>li>a,
    .dropdown-trigger {
        padding: 9px 14px;
        font-size: 14.5px;
    }
}

@media (max-width: 767px) {
    .header-wrapper {
        padding: 12px 16px;
    }

    .brand-logo .logo-img {
        height: 44px;
    }
}

/* Scroll behavior */
.modern-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* ===================================
   MODERN FOOTER (STANDARD)
   Tüm sayfalarda kullan?lacak
   =================================== */

.modern-footer {
    background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
    color: #D1D5DB;
    width: 100%;
    /* Full-width */
    margin: 0;
    padding: 0;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

/* Footer Brand Column */
.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #9CA3AF;
    margin-bottom: 24px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.whatsapp:hover {
    background: #25D366;
}

.social-btn.email:hover {
    background: #D4AF37;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #F9FAFB;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #D4AF37;
}

.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #D4AF37;
}

.separator {
    color: #4B5563;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #C19A2E 100%);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =================================== 
   AUTH PAGES (Kay?t/Giri? Sayfalar?) 
   =================================== */

/* Auth Container - Responsive Grid Layout */
.auth-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .auth-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
}

/* Centered Auth (Sadece Giri? için) */
.auth-container-centered {
    grid-template-columns: 1fr;
    max-width: 500px !important;
    margin: 0 auto;
}

/* Auth Card */
.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--brand-gray);
    font-size: 15px;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-hint {
    font-size: 13px;
    color: var(--brand-gray);
    margin-top: 4px;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--brand-gray);
}

.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    background: #10b981;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength-text {
    font-size: 12px;
    color: var(--brand-gray);
    margin-top: 4px;
    display: block;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: #fff;
    padding: 0 16px;
    position: relative;
    color: var(--brand-gray);
    font-size: 13px;
}

/* Auth Social */
.auth-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-social:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-social:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.auth-footer p {
    font-size: 14px;
    color: var(--brand-gray);
    margin-bottom: 0;
}

.auth-link {
    color: var(--brand-gold);
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.forgot-password {
    font-size: 13px;
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Auth Features (Kay?t sayfas? sa? taraf) */
.auth-features {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.auth-features h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--brand-gray);
    margin: 0;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

/* =================================== 
   DASHBOARD PAGE 
   =================================== */

/* Dashboard Container */
.dashboard-container {
    padding: 48px 0;
    min-height: calc(100vh - 200px);
}

/* Dashboard Welcome */
.dashboard-welcome {
    margin-bottom: 32px;
}

.dashboard-welcome h1 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.dashboard-welcome p {
    color: var(--brand-gray);
    font-size: 14px;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--brand-gray);
    font-weight: 500;
}

/* Dashboard Content Grid */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

/* Dashboard Section */
.dashboard-section {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2,
.section-header h3 {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--brand-gray);
    margin: 0;
}

.section-actions {
    display: flex;
    gap: 12px;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

/* Donations Table */
.donations-table-container {
    overflow-x: auto;
}

.donations-table {
    width: 100%;
    border-collapse: collapse;
}

.donations-table thead {
    background: #f9fafb;
}

.donations-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    border-bottom: 2px solid #e5e7eb;
}

.donations-table td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.donations-table tr:hover {
    background: #f9fafb;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.impact-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

/* Profile Card */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.profile-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.profile-label {
    font-size: 13px;
    color: var(--brand-gray);
    font-weight: 500;
}

.profile-value {
    font-size: 14px;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #f9fafb;
    border-color: var(--brand-gold);
}

.action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
}

/* Notifications */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.notification-text {
    font-size: 13px;
    color: var(--brand-gray);
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: var(--brand-gray);
}

/* Documents List */
.documents-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.documents-list li {
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
}

/* Document Upload Form */
.document-upload-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-upload-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
}

.document-upload-form input[type="text"],
.document-upload-form textarea,
.document-upload-form input[type="file"],
.document-upload-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.document-upload-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: #f9fafb;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 24px;
}
/* =========================================
   FINAL STYLE FIXES (Responsive & Layout)
   ========================================= */

/* 1. Container Fix (Global) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* 2. Modern Footer Full-Width Fix */
.modern-footer {
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.modern-footer .footer-top {
    padding: 60px 0 40px;
    width: 100%;
}

/* 3. Navbar Responsive Overflow Fix */
/* Ekran darald???nda butonlar?n ta?mas?n? ?nle */
@media (min-width: 768px) and (max-width: 1150px) {
    .header-wrapper {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .nav-menu {
        gap: 2px;
    }
    
    .nav-menu > li > a, 
    .dropdown-trigger {
        padding: 8px 8px;
        font-size: 13px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .brand-logo .logo-img {
        height: 36px;
    }
}



/* =========================================
   MOBILE NAV LINK FIX (Split Button)
   ========================================= */
.mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link {
    flex: 1;
    display: block;
    padding: 14px 16px;
    color: #1F2937;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
}

.mobile-dropdown-toggle {
    background: transparent;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    border-left: 1px solid #f3f4f6;
    height: 100%;
}



/* =========================================
   USER REQUEST UPDATES (Mobile Icon & Layout)
   ========================================= */

/* 1. Mobile Dropdown Icon Improvement */
.mobile-dropdown-toggle {
    border: none !important;
    background: transparent;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.2s ease;
    border-radius: 50%;
    margin-right: 4px;
    border-left: none !important; /* Önceki border-left kural?n? ez */
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus {
    background: #F3F4F6;
    color: #D4AF37;
}

.mobile-nav-row {
    border-bottom: 1px solid #f9fafb;
    padding: 2px 8px 2px 0; /* Sa? kenara çok yap??mas?n */
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
}

/* 2. LOGO STACK BEHAVIOR (Compressed PC) */
/* 900px ile 1350px aras?nda Logo üste ç?kar (Mobil öncesi s?k???k alan) */
@media (min-width: 900px) and (max-width: 1350px) {
    .header-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 24px;
        padding-bottom: 16px;
        gap: 16px;
    }

    .brand-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
        margin-bottom: 8px;
    }

    .brand-logo .logo-img {
        height: 60px; /* Logo biraz daha büyük */
    }

    .desktop-nav {
        order: 2;
    }

    .header-actions {
        order: 3;
    }
    
    /* Önceki media query override edilsin */
    .nav-menu {
        gap: 16px;
    }
    
    .nav-menu > li > a, 
    .dropdown-trigger {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Garanti: Mobil (<768px) için eski davran?? dönsün */
@media (max-width: 899px) {
    .header-wrapper {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 12px 16px;
    }
    
    .brand-logo {
        width: auto;
        display: block;
        order: 0;
        margin-bottom: 0;
    }
    
    .brand-logo .logo-img {
        height: 44px;
    }
    
    /* Desktop elementleri gizle */
    .desktop-nav, .header-actions {
        /* display: none; zaten var ama layout s?ras?n? etkilemezler */
    }
}



/* =========================================
   REMASTERED HAMBURGER MENU (Clean & Modern)
   ========================================= */

/* 1. Buton Reset ve Temel Yap? */
.mobile-menu-btn {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important; /* Çizgiler aras? bo?luk */
    cursor: pointer !important;
    z-index: 2000 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 2. Çizgilerin Tasar?m? (Zarif) */
.hamburger-line {
    width: 26px !important;
    height: 2.5px !important; /* Biraz daha belirgin ama ince */
    background-color: #1F2937 !important; /* Koyu antrasit */
    border-radius: 99px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
    display: block !important;
    margin: 0 !important; /* marginleri s?f?rla */
}

/* 3. Menü Aç?kken Dönü?üm (X ??areti) */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg) !important;
    background-color: #D4AF37 !important; /* Gold renk */
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(10px) !important;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg) !important;
    background-color: #D4AF37 !important;
}

/* Hover Durumu */
.mobile-menu-btn:hover .hamburger-line {
    background-color: #D4AF37 !important;
}



/* =========================================
   ANTIGRAVITY FIXES - 2026-01-11
   ========================================= */

/* 1. MOB?L MENÜ ?KONU G?ZLEME (PC'de) */
@media (min-width: 900px) {
    .mobile-menu-btn {
        display: none !important;
    }
    .desktop-nav {
        display: block !important;
    }
}

/* 2. BUTON ORTALAMA VE RENK DÜZELTMES? */
.btn, button, input[type="submit"], input[type="button"], a.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Buton Renk Kontrast? */
.btn-donate, .btn-primary {
    color: #ffffff !important; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* 3. NAVBAR RESPONSIVE G?ZLEME */
/* 1250px alt?nda Galeri'yi gizleyerek yer aç */
@media (max-width: 1250px) and (min-width: 900px) {
    .nav-menu li:nth-child(5) { /* Galeri - index 5 (1-based) */
        display: none !important;
    }
}
/* 1100px alt?nda ?leti?im'i de gizle */
@media (max-width: 1100px) and (min-width: 900px) {
    .nav-menu li:nth-child(6) { /* ?leti?im */
        display: none !important;
    }
}

/* 4. L?STE ST?L? (Bölgeler ve Kartlar ?çin) */
.card ul, .reveal ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 16px;
    margin-bottom: 16px;
}

.card ul li, .reveal ul li {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 10px;
    line-height: 1.5;
}

.card ul li::before, .reveal ul li::before {
    content: "?"; 
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37; /* Gold */
    font-weight: 800;
    font-size: 16px;
}

/* =========================================
   BETTER HERO TYPOGRAPHY - 2026-01-11
   Single unified glassmorphism panel for professional readability
   ========================================= */

/* Hero Content Wrapper */
.hero-content, 
.slide-content,
.slider-caption {
    background: rgba(11, 18, 34, 0.75) !important; /* Dark Navy with transparency */
    backdrop-filter: blur(8px); /* Glass effect */
    -webkit-backdrop-filter: blur(8px);
    padding: 32px 40px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: inline-block !important; /* Fit content size */
    max-width: 90% !important; 
    width: auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
    margin: 0 auto !important; /* Center alignment usually handled by parent flex, but safe to add */
    
    /* Ensure text aligns nicely inside */
    text-align: center;
}

/* Typography Reset inside Hero */
.hero-content h1, .slide-content h1,
.hero-content h2, .slide-content h2,
.hero-content p, .slide-content p,
.hero-content span {
    background: none !important; /* No individual bg */
    color: #ffffff !important;   /* Pure white text */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    margin-bottom: 16px !important;
}

/* Button spacing */
.hero-content .btn, .slide-content .btn {
    margin: 8px;
}


/* =========================================
   VISIBILITY FIXES - 2026-01-11
   Fixes for invisible text, white buttons, and missing icons
   ========================================= */

/* 1. Statistics Numbers Visibility Fix */
.stats-section .stat-number,
.stat-number {
    color: #0f172a !important; /* Dark Navy for contrast against white bg */
    text-shadow: none !important;
    font-weight: 800 !important;
}

/* 2. White CTA Button Text Fix */
/* Attempt to target the specific white button in the gold section */
.section[style*="#D4AF37"] .btn[style*="white"],
.reveal[style*="#D4AF37"] .btn[style*="white"],
a.btn[style*="background: white"],
a.btn[style*="background:white"] {
    color: #bfa145 !important; /* Darker Gold for readability on white */
    font-weight: 700 !important;
}

/* 3. Password Eye Icon Fix */
.password-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}

.password-input-wrapper {
    position: relative;
    display: flex;
}

.password-toggle .eye-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #9ca3af; /* Default Grey visible against white input */
    
    /* SVG Mask for Eye Icon */
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>') no-repeat center;
}

.password-toggle:hover .eye-icon {
    background-color: #d4af37; /* Gold on hover */
}


/* =========================================
   FOOTER LOGO SIZE FIX - 2026-01-11
   Prevents logo from taking full width
   ========================================= */

.footer-logo {
    max-width: 180px !important; /* Limit width */
    height: auto !important;     /* Maintain aspect ratio */
    margin-bottom: 20px;
    display: block;
}


/* =========================================
   NAVBAR VISIBILITY FIX - 2026-01-11
   Hide hamburger menu on desktop
   ========================================= */

/* Default state: Hide mobile button, Show desktop nav */
.mobile-menu-btn {
    display: none !important;
}
.desktop-nav {
    display: block !important;
}

/* Tablet/Mobile Breakpoint (Usually 1024px or 992px) */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block !important;
    }
    .desktop-nav {
        display: none !important;
    }
    
    /* Adjust header layout for mobile */
    .header-wrapper {
        justify-content: space-between;
    }
}

/* =========================================
   DROPDOWN SENSITIVITY FIX - 2026-01-11
   Prevents dropdown from closing prematurely
   ========================================= */

/* Dropdown tetikleyicisi (link ve ikon) */
.has-dropdown {
    position: relative;
}

/* Tetikleyici ile menü aras?nda görünmez köprü */
.has-dropdown > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px; /* Tetikleyicinin 15px alt?na kadar uzan?r */
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: 50;
}

/* Dropdown menünün kendisi */
.dropdown-content {
    display: none; /* Varsay?lan gizli */
    position: absolute;
    top: 100%; 
    left: 0;
    margin-top: -5px !important; /* Hafif yukar? çekim (overlap) */
    padding-top: 10px; /* ?çerik bo?lu?u */
    z-index: 100 !important;
}

/* Hover durumunda göster */
.has-dropdown:hover .dropdown-content {
    display: block !important;
}

/* ==========================================
   NEW PREMIUM CAMPAIGN CARD THEME (REPAIRED)
   ========================================== */
.campaign-theme-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f3f4f6 !important;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.campaign-theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F3E5AB);
}
.campaign-theme-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}
.campaign-theme-card h3 {
    color: #D4AF37 !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}
.campaign-theme-card p {
    color: #d1d5db !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.campaign-theme-card .price-display {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff !important;
    margin: 20px 0;
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.campaign-theme-card .btn {
    width: 100%;
    margin-top: auto;
    background: #D4AF37;
    color: #111;
    font-weight: bold;
    border: none;
}
.campaign-theme-card .btn:hover {
    background: #fff;
    color: #D4AF37;
}

/* ==========================================
   FAIL-SAFE VISIBILITY FIX (AUTO)
   ========================================== */
.reveal, .reveal.active {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Temel Responsive Ayar? (Zarars?z) */
html, body {
    overflow-x: hidden; 
    width: 100%;
}


/* =========================================
   FIX: HIDE MOBILE ELEMENTS ON DESKTOP
   ========================================= */
@media (min-width: 1025px) {
    .mobile-menu-btn,
    .mobile-nav,
    #mobileMenuBtn,
    #mobileNav {
        display: none !important;
    }
}
