/* ==========================================================================
   AINKAL TATTOO STUDIO -- Premium CSS
   Dark, cinematic, editorial luxury tattoo studio design
   ========================================================================== */

/* ===== CUSTOM PROPERTIES ===== */

:root {
    --black: #050505;
    --dark: #0d0d0d;
    --card: #111;
    --cream: #f0ede6;
    --gold: #b8860b;
    --gold-light: #d4a843;
    --red: #8b0000;
    --gray: #555;
    --light-gray: #888;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--cream);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--cream);
    text-decoration: none;
    transition: color .4s ease;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
}

/* ===== CUSTOM CURSOR ===== */

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 134, 11, .5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: all .15s ease-out;
    mix-blend-mode: difference;
}

.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--gold);
    background: rgba(184, 134, 11, .05);
}

@media (max-width: 992px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ===== PRELOADER - Tattoo Machine ===== */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Tattoo machine needle */
.loader-tattoo-machine {
    position: relative;
    height: 80px;
    animation: tattooVibrate .08s linear infinite;
}

.tattoo-needle {
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, .3));
}

.needle-tip {
    animation: needlePulse 1s ease-in-out infinite;
}

.needle-ink {
    animation: inkDrip 1.5s ease-in-out infinite;
    stroke-dasharray: 13;
    stroke-dashoffset: 13;
}

/* Brand text */
.loader-brand {
    text-align: center;
}

.loader-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--cream);
    letter-spacing: 10px;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Ink reveal overlay - slides right to reveal text like tattooing */
.loader-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    animation: inkRevealSlide 2s .3s cubic-bezier(.4, 0, .2, 1) forwards;
}

/* Glow cursor at the reveal edge */
.loader-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 15px rgba(184, 134, 11, .8), 0 0 30px rgba(184, 134, 11, .4);
    z-index: 2;
    animation: inkCursorSlide 2s .3s cubic-bezier(.4, 0, .2, 1) forwards;
    opacity: 0;
}

/* Ink line */
.loader-ink-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, .06);
    margin: 18px auto 15px;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.loader-ink-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    border-radius: 1px;
    animation: inkLineFill 2s .5s cubic-bezier(.4, 0, .2, 1) forwards;
    box-shadow: 0 0 10px rgba(184, 134, 11, .5), 2px 0 4px rgba(184, 134, 11, .8);
}

.loader-sub {
    font-family: var(--font-body);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0);
    animation: fadeInSub 1s 1.8s ease forwards;
    display: block;
}

/* Animations */
@keyframes tattooVibrate {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-1px) translateX(0.5px); }
    50% { transform: translateY(0.5px) translateX(-0.5px); }
    75% { transform: translateY(-0.5px) translateX(0.3px); }
}

@keyframes needlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes inkDrip {
    0% { stroke-dashoffset: 13; opacity: 0; }
    30% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* The overlay slides from left to right, revealing text beneath */
@keyframes inkRevealSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* The gold cursor slides with the reveal */
@keyframes inkCursorSlide {
    0% { left: 0; opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes inkLineFill {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeInSub {
    0% { color: rgba(255, 255, 255, 0); transform: translateY(5px); }
    100% { color: rgba(255, 255, 255, .4); transform: translateY(0); }
}

/* ===== UTILITIES ===== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

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

.text-gold {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.1);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, .2);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--black);
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 80px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    max-width: 600px;
    line-height: 1;
    letter-spacing: 2px;
}

.section-title.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: -40px auto 60px;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    background: transparent;
    mix-blend-mode: difference;
}

.navbar.scrolled {
    mix-blend-mode: normal;
    background: rgba(13, 13, 13, .9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 8px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--light-gray);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 5px 0;
    transition: color .4s;
    font-weight: 400;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    text-transform: uppercase;
    font-weight: 400;
}

.nav-cta:hover {
    background: var(--cream);
    color: var(--black);
}

.nav-cta::after {
    display: none !important;
}

.nav-lang {
    display: flex;
    gap: 8px;
    margin-left: 10px;
    align-items: center;
    opacity: .5;
    transition: opacity .4s;
}

.nav-lang:hover {
    opacity: 1;
}

.nav-lang a {
    font-size: 0.7rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    transition: all .3s;
}

.nav-lang a:hover,
.nav-lang a.active {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    position: relative;
}

.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--cream);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    width: 100%;
}

.nav-toggle span:nth-child(2) {
    width: 60%;
}

.nav-toggle span:nth-child(3) {
    width: 100%;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--gold);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--gold);
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
    transition: all .3s ease;
    animation: wpPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, .6);
    color: #fff;
}

@keyframes wpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HERO ===== */

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, .08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 0, 0, .05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(30, 30, 50, .3) 0%, transparent 60%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, .8) 0%,
        rgba(5, 5, 5, .2) 40%,
        rgba(5, 5, 5, .1) 50%,
        rgba(5, 5, 5, .4) 70%,
        rgba(5, 5, 5, .95) 100%
    );
    z-index: 1;
}

/* Legacy hero support (background-image on .hero directly) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, .8) 0%,
        rgba(5, 5, 5, .2) 40%,
        rgba(5, 5, 5, .1) 50%,
        rgba(5, 5, 5, .4) 70%,
        rgba(5, 5, 5, .95) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    opacity: .03;
    animation: grain 8s steps(10) infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 5px;
    color: var(--cream);
    margin-bottom: 25px;
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-title .text-gold {
    color: var(--gold);
    display: inline;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-gray);
    line-height: 1.8;
    letter-spacing: 1px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    writing-mode: vertical-rl;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--light-gray);
    font-weight: 300;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--light-gray);
    animation: float 2s ease-in-out infinite;
}

/* ===== MARQUEE ===== */

.marquee-section {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 5px;
    color: transparent;
    -webkit-text-stroke: 1px var(--gray);
    padding: 0 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.marquee-item .filled {
    color: var(--cream);
    -webkit-text-stroke: 0;
}

.marquee-item .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin: 0 40px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ===== STATS ===== */

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.stats-bar .container {
    display: contents;
}

.stat-item {
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, .05);
    text-align: center;
    transition: all .4s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover .stat-number {
    color: var(--gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--cream);
    line-height: 1;
    transition: color .4s ease;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 10px;
    font-weight: 400;
}

/* ===== SERVICES ===== */

.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .05);
}

.service-card {
    background: var(--dark);
    padding: 50px 40px;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, .03);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform .4s;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.service-card:hover {
    background: #151515;
    transform: translateY(-5px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover::after {
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(184, 134, 11, .03), transparent);
    transition: height .6s ease;
}

.service-card:hover::before {
    height: 100%;
}

/* ===== GALLERY PREVIEW ===== */

.gallery-preview {
    background: var(--black);
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 5%;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 auto;
    width: 350px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .5s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s ease .1s;
}

.gallery-card:hover .gallery-card-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-cat {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
}

.gallery-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-top: 5px;
    letter-spacing: 1px;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

/* Legacy gallery grid (gallery-grid for homepage) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.span-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity .5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cream);
    letter-spacing: 1px;
}

.gallery-overlay p {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ===== WHY US ===== */

.why-us {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .05);
}

.why-card {
    background: var(--dark);
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
}

.why-card-number {
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(255, 255, 255, .02);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.why-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all .4s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(184, 134, 11, .1);
}

/* Legacy .icon class support */
.why-card .icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(184, 134, 11, .3);
    border-radius: 50%;
    transition: all .4s;
}

.why-card:hover .icon {
    border-color: var(--gold);
    background: rgba(184, 134, 11, .1);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 15px 0;
    color: var(--cream);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--cream);
}

.why-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.why-card:hover::before {
    width: 100%;
}

/* ===== CTA SECTION ===== */

.cta-section {
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 50%, var(--dark) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .3), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .3), transparent);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--cream);
    line-height: .95;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: .95;
}

.cta-section p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-section .hero-buttons {
    justify-content: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MAP SECTION ===== */

.map-section {
    width: 100%;
    position: relative;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(1) brightness(.3) contrast(1.2);
    transition: filter .5s ease;
}

.map-section iframe:hover {
    filter: grayscale(.5) brightness(.5);
}

/* ===== SEO TEXT ===== */

.seo-text {
    padding: 80px 0;
    background: var(--black);
}

.seo-text .container {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 15px;
    text-align: center;
}

.seo-text p::first-letter {
    font-family: var(--font-display);
    font-size: 3rem;
    float: left;
    color: var(--gold);
    margin-right: 10px;
    line-height: 1;
    margin-top: 5px;
}

.seo-text h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.seo-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-align: center;
}

/* ===== ABOUT PAGE ===== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #111 0%, #1a1a2e 50%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder i {
    font-size: 3rem;
    color: rgba(184, 134, 11, .3);
}

.about-image-placeholder .about-badge {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.about-image-placeholder .about-badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--light-gray);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--cream);
    margin: 25px 0 15px;
}

.about-text p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

/* ===== CONTACT PAGE — PREMIUM ===== */

/* Big contact cards row */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .04);
    margin-bottom: 0;
}

.contact-big-card {
    background: var(--dark);
    padding: 50px 40px;
    text-align: center;
    text-decoration: none;
    color: var(--cream);
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    display: block;
}

.contact-big-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.contact-big-card:hover::after {
    width: 100%;
}

.contact-big-card:hover {
    background: #151515;
    transform: translateY(-4px);
    color: var(--cream);
}

.contact-big-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(184, 134, 11, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all .4s;
}

.contact-big-card:hover .contact-big-icon {
    background: rgba(184, 134, 11, .12);
    border-color: var(--gold);
    transform: scale(1.08);
}

.contact-big-card--whatsapp .contact-big-icon {
    border-color: rgba(37, 211, 102, .3);
    color: #25d366;
}

.contact-big-card--whatsapp:hover .contact-big-icon {
    background: rgba(37, 211, 102, .1);
    border-color: #25d366;
}

.contact-big-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.contact-big-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.contact-big-action {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
}

.contact-big-action i {
    margin-left: 5px;
    transition: transform .3s;
}

.contact-big-card:hover .contact-big-action i {
    transform: translateX(5px);
}

/* Contact Layout: Form + Sidebar */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, .04);
}

/* Contact Form Wrap */
.contact-form-wrap {
    background: var(--dark);
    padding: 60px;
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 10px;
}

.contact-form-header p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 15px 0 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color .4s;
}

.contact-form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    pointer-events: none;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.contact-form-group input:focus + label,
.contact-form-group input:not(:placeholder-shown) + label,
.contact-form-group textarea:focus + label,
.contact-form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 4px;
    padding: 18px;
    border: none;
    cursor: pointer;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, .2);
}

.contact-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.submit-icon {
    font-size: 0.9rem;
    transition: transform .3s;
}

.contact-submit-btn:hover .submit-icon {
    transform: translateX(3px) translateY(-2px);
}

/* Sidebar */
.contact-sidebar {
    background: var(--dark);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.contact-info-block:first-child {
    padding-top: 0;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.contact-info-block-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 1px solid rgba(184, 134, 11, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: all .4s;
}

.contact-info-block:hover .contact-info-block-icon {
    background: rgba(184, 134, 11, .1);
    border-color: var(--gold);
}

.contact-info-block h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-info-block p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-info-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 400;
    margin-top: 5px;
    display: inline-block;
    transition: all .3s;
}

.contact-info-link:hover {
    color: var(--gold-light);
}

.contact-info-link i {
    font-size: 0.55rem;
    margin-left: 3px;
}

.contact-cta-box {
    background: rgba(184, 134, 11, .05);
    border: 1px solid rgba(184, 134, 11, .15);
    padding: 30px;
    margin-top: 25px;
    text-align: center;
}

.contact-cta-box h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 8px;
}

.contact-cta-box p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-cta-box .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 40px 25px;
    }
    .contact-sidebar {
        padding: 40px 25px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-big-card {
        padding: 35px 25px;
    }
}

/* Legacy fallback */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid rgba(184, 134, 11, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all .4s;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(184, 134, 11, .1);
    border-color: var(--gold);
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--dark);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color .4s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button[type="submit"] {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: all .4s;
    text-transform: uppercase;
    margin-top: 10px;
}

.contact-form button[type="submit"]:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        height: 350px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* ===== FOOTER ===== */

.footer {
    padding: 80px 0 30px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 8px;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-size: 0.6rem;
    color: var(--light-gray);
    letter-spacing: 12px;
    text-transform: uppercase;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--cream);
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a,
.footer-col li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    transition: all .4s ease;
    display: inline-block;
    padding-left: 0;
}

.footer-col ul li a:hover,
.footer-col li a:hover {
    color: var(--cream);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 18px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 300;
}

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

/* ===== PAGE HEADER ===== */

.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    background: var(--dark);
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, .6), rgba(5, 5, 5, .9));
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: .03;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 3px;
    color: var(--cream);
    line-height: 1;
}

.page-header p {
    position: relative;
    z-index: 2;
    color: var(--light-gray);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--gold);
    transition: color .3s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    color: var(--gray);
}

.breadcrumb .current {
    color: var(--light-gray);
}

/* ===== GALLERY PAGE ===== */

.gallery-page {
    padding: 80px 0;
}

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

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    font-weight: 400;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--cream);
    background: rgba(184, 134, 11, .1);
}

.filter-btn.active {
    border-color: var(--gold);
    color: var(--cream);
    background: rgba(184, 134, 11, .1);
}

.gallery-masonry {
    columns: 3;
    column-gap: 15px;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    display: block;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.gallery-card .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card .gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 1px;
}

.gallery-card .gallery-overlay p {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-card.hidden {
    display: none;
}

/* ===== GALLERY EMPTY STATE ===== */

.gallery-empty {
    padding: 80px 20px;
    text-align: center;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: rgba(184, 134, 11, .3);
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
}

/* ===== LIGHTBOX ===== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.lightbox-image-wrapper {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img,
.lightbox img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: none;
    color: var(--cream);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-prev,
.lightbox-nav.prev {
    left: 30px;
}

.lightbox-next,
.lightbox-nav.next {
    right: 30px;
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    color: var(--light-gray);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== ABOUT PAGE ===== */

.about-page {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content img {
    width: 100%;
    object-fit: cover;
}

.about-content .about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content .about-text p {
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 300;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .05);
    margin-top: 60px;
}

.value-card {
    background: var(--dark);
    padding: 50px 35px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    background: #151515;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .5s ease;
}

.value-card:hover::after {
    width: 100%;
}

.value-card .icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== BOOKING PAGE ===== */

.booking-page {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    align-items: start;
}

.booking-form {
    background: var(--dark);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.booking-form h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color .4s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .2);
    font-weight: 300;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8860b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"],
.booking-form .btn-primary {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
    text-transform: uppercase;
}

button[type="submit"]:hover,
.booking-form .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, .2);
}

.booking-info {
    padding-left: 40px;
}

.booking-info-item {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.booking-info-item:last-child {
    border-bottom: none;
}

.booking-info-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.booking-info-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

.booking-info-item i {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: block;
}

/* Legacy booking info cards */
.booking-info-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 30px 25px;
    text-align: center;
    transition: all .4s ease;
}

.booking-info-card:hover {
    border-color: rgba(184, 134, 11, .2);
}

.booking-info-card i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.booking-info-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.booking-info-card p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== FORM MESSAGES ===== */

.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 3px solid;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    display: block;
    border-color: #2ecc71;
    background: rgba(46, 204, 113, .05);
    color: #2ecc71;
}

.form-message.error {
    display: block;
    border-color: var(--red);
    background: rgba(139, 0, 0, .05);
    color: #e74c3c;
}

/* ===== CONTACT PAGE ===== */

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 60px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: 0;
    transition: all .4s ease;
}

.contact-info-item:hover .contact-info-icon {
    border-color: var(--gold);
    background: rgba(184, 134, 11, .05);
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-info-item p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--gray);
}

.contact-info-item a:hover {
    color: var(--cream);
}

/* Legacy contact info cards */
.contact-info-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all .4s ease;
}

.contact-info-card:hover {
    border-color: rgba(184, 134, 11, .2);
}

.contact-info-card i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 3px;
    min-width: 24px;
}

.contact-info-card .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

.contact-info-card a {
    color: var(--gray);
    transition: color .3s;
}

.contact-info-card a:hover {
    color: var(--cream);
}

.contact-form {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 50px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color .4s;
    outline: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-bottom-color: var(--gold);
}

/* ===== ADMIN PANEL ===== */

/* Admin Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    padding: 20px;
}

.admin-login-card {
    width: 400px;
    max-width: 100%;
    background: var(--dark);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.admin-login-card h1,
.admin-login-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    letter-spacing: 5px;
    color: var(--cream);
    margin-bottom: 30px;
}

.admin-login-card p {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.admin-login-card .form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color .4s;
    outline: none;
    margin-bottom: 20px;
}

.admin-login-card .form-group input:focus {
    border-bottom-color: var(--gold);
}

/* Admin Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    border-right: 1px solid rgba(255, 255, 255, .05);
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform .3s ease;
}

.admin-sidebar .logo {
    padding: 0 30px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 20px;
}

.admin-sidebar .logo h3 {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 1.3rem;
    letter-spacing: 5px;
}

.admin-sidebar .logo .logo-sub {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray);
    transition: all .3s ease;
    border-left: 2px solid transparent;
    font-weight: 300;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    color: var(--cream);
    background: rgba(255, 255, 255, .02);
    border-left-color: var(--gold);
}

.admin-sidebar nav a i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.admin-main {
    margin-left: 260px;
    padding: 30px;
    flex: 1;
    min-height: 100vh;
    background: var(--black);
}

.admin-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1,
.admin-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--cream);
}

.admin-header .logout-btn {
    font-size: 0.75rem;
    color: var(--gray);
    cursor: pointer;
    transition: color .3s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-header .logout-btn:hover {
    color: #e74c3c;
}

/* Admin Dashboard Cards */
.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-card {
    background: var(--dark);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.admin-card:hover {
    border-color: rgba(184, 134, 11, .2);
}

.admin-card h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 400;
}

.admin-card .number,
.admin-card .card-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    margin-top: 10px;
    line-height: 1;
}

.admin-card p {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.admin-card .icon {
    float: right;
    font-size: 2rem;
    color: rgba(255, 255, 255, .05);
    margin-top: -5px;
}

.admin-card .card-info {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 5px;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
}

.admin-table th {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-weight: 400;
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream);
}

.admin-table tbody tr {
    transition: background .3s;
}

.admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Admin Form */
.admin-form {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 30px;
}

.admin-form .form-group input,
.admin-form .form-group select,
.admin-form .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--cream);
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color .4s;
}

.admin-form .form-group input:focus,
.admin-form .form-group select:focus,
.admin-form .form-group textarea:focus {
    border-bottom-color: var(--gold);
}

/* Admin Gallery Grid */
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.admin-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.admin-gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: opacity .3s ease;
}

.admin-gallery-item:hover .overlay {
    opacity: 1;
}

/* Legacy admin gallery card */
.admin-gallery-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    overflow: hidden;
    transition: all .3s;
}

.admin-gallery-card:hover {
    border-color: rgba(184, 134, 11, .2);
}

.admin-gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.admin-gallery-card .card-body {
    padding: 15px;
}

.admin-gallery-card .card-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.admin-gallery-card .card-body p {
    font-size: 0.75rem;
    color: var(--gray);
}

.admin-gallery-card .card-actions {
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    gap: 8px;
}

/* Admin Alerts */
.admin-alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 3px solid;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
}

.admin-alert.success {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, .05);
    color: #2ecc71;
}

.admin-alert.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, .05);
    color: #e74c3c;
}

/* Small Buttons */
.btn-sm {
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.btn-danger {
    background: var(--red);
    color: #fff;
    border: none;
}

.btn-danger:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.btn-success {
    background: #2ecc71;
    color: #fff;
    border: none;
}

.btn-success:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Badges */
.badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    display: inline-block;
}

.badge.pending,
.badge-pending {
    background: rgba(255, 193, 7, .1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, .2);
}

.badge.confirmed,
.badge-confirmed {
    background: rgba(46, 204, 113, .1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, .2);
}

.badge.cancelled,
.badge-cancelled {
    background: rgba(139, 0, 0, .1);
    color: #e74c3c;
    border: 1px solid rgba(139, 0, 0, .2);
}

.badge.completed,
.badge-completed {
    background: rgba(52, 152, 219, .1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, .2);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--dark);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close,
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
}

.modal-close:hover,
.modal-close-btn:hover {
    color: var(--gold);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .05);
    color: var(--gray);
    font-size: 0.85rem;
    transition: all .3s;
    font-weight: 300;
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ===== ANIMATIONS ===== */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes revealLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: .6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes grain {
    0%, 100% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-5%, -10%);
    }
    20% {
        transform: translate(-15%, 5%);
    }
    30% {
        transform: translate(7%, -25%);
    }
    40% {
        transform: translate(-5%, 25%);
    }
    50% {
        transform: translate(-15%, 10%);
    }
    60% {
        transform: translate(15%, 0%);
    }
    70% {
        transform: translate(0%, 15%);
    }
    80% {
        transform: translate(3%, 35%);
    }
    90% {
        transform: translate(-10%, 10%);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(184, 134, 11, .3);
    }
    50% {
        text-shadow: 0 0 30px rgba(184, 134, 11, .8), 0 0 60px rgba(184, 134, 11, .3);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS-style scroll animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-left"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(.95);
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos][data-aos-delay="400"] { transition-delay: .4s; }
[data-aos][data-aos-delay="500"] { transition-delay: .5s; }
[data-aos][data-aos-delay="600"] { transition-delay: .6s; }
[data-aos][data-aos-delay="700"] { transition-delay: .7s; }
[data-aos][data-aos-delay="800"] { transition-delay: .8s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu link stagger animation */
@media (max-width: 992px) {
    .nav-menu.active .nav-link:nth-child(1) {
        animation: fadeInUp .5s .1s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-link:nth-child(2) {
        animation: fadeInUp .5s .15s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-link:nth-child(3) {
        animation: fadeInUp .5s .2s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-link:nth-child(4) {
        animation: fadeInUp .5s .25s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-link:nth-child(5) {
        animation: fadeInUp .5s .3s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-link:nth-child(6) {
        animation: fadeInUp .5s .35s forwards;
        opacity: 0;
    }
    .nav-menu.active .nav-cta {
        animation: fadeInUp .5s .4s forwards;
        opacity: 0;
    }
}

/* ===== RESPONSIVE - 1200px ===== */

@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }

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

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

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

    .footer-top,
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

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

    .hero-title {
        font-size: clamp(3.5rem, 10vw, 9rem);
    }

    .marquee-item {
        font-size: 3.5rem;
    }

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

    .stat-item {
        padding: 50px 30px;
    }

    .cta-section {
        padding: 120px 0;
    }

    .why-card {
        padding: 50px;
    }
}

/* ===== RESPONSIVE - 992px ===== */

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .navbar {
        mix-blend-mode: normal;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transition: all .4s cubic-bezier(.16, 1, .3, 1);
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-family: var(--font-display);
        font-size: 3rem;
        letter-spacing: 5px;
        color: var(--cream);
    }

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

    .nav-cta {
        margin-top: 20px;
        font-size: 0.85rem;
        padding: 12px 30px;
    }

    .nav-lang {
        margin-left: 0;
        margin-top: 15px;
    }

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

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

    .stats-section,
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding-left: 0;
        margin-top: 40px;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item.span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-card {
        width: 300px;
    }

    .hero-content {
        text-align: center;
        padding: 0 5%;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 7rem);
    }

    .marquee-item {
        font-size: 3rem;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

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

/* ===== RESPONSIVE - 768px ===== */

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-content {
        text-align: center;
        padding: 0 5%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-scroll {
        display: none;
    }

    .marquee-item {
        font-size: 2.5rem;
        padding: 0 25px;
    }

    .marquee-item .dot {
        margin: 0 25px;
    }

    .stats-section,
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .why-card {
        padding: 40px 30px;
    }

    .gallery-scroll .gallery-card {
        width: 80vw;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 35px 25px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .page-header {
        height: 40vh;
        min-height: 300px;
        padding-bottom: 40px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }

    .admin-table {
        display: block;
        overflow-x: auto;
    }

    .admin-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-section iframe {
        height: 300px;
    }

    .gallery-filters {
        justify-content: flex-start;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .lightbox-nav.prev,
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-nav.next,
    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .nav-menu .nav-link {
        font-size: 2.2rem;
    }
}

/* ===== RESPONSIVE - 480px ===== */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

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

    .hero {
        height: 100svh;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    .stats-section,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .marquee-item {
        font-size: 2rem;
        padding: 0 15px;
    }

    .marquee-item .dot {
        margin: 0 15px;
        width: 6px;
        height: 6px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-masonry {
        columns: 1;
    }

    .gallery-scroll .gallery-card {
        width: 85vw;
    }

    .why-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .lightbox-content img,
    .lightbox img {
        max-width: 95vw;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px 20px;
        margin: 10px;
    }

    .page-header {
        height: 35vh;
        min-height: 280px;
        padding-bottom: 30px;
    }

    .page-header h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 2px;
    }

    .footer-bottom p {
        font-size: 0.65rem;
    }

    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .logo-sub {
        letter-spacing: 8px;
        font-size: 0.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .admin-card .number,
    .admin-card .card-value {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 20px;
    }

    .breadcrumb {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .nav-menu .nav-link {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* ===== PRINT STYLES ===== */

@media print {
    .navbar,
    .whatsapp-float,
    .cursor-dot,
    .cursor-outline,
    #preloader,
    .hero-scroll {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero {
        height: auto;
        min-height: 0;
    }
}

/* ==========================================================================
   BUGFIX OVERRIDES - Görsel sorunlar ve UX düzeltmeleri
   ========================================================================== */

/* --- STATS: 4 sütun yan yana grid düzeltmesi --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
}

.stats-section {
    padding: 0;
    border: none;
    display: block;
}

.stats-section .container {
    max-width: 100%;
    padding: 0;
}

.stat-item {
    padding: 70px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    vertical-align: super;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--light-gray);
    margin-top: 15px;
    font-weight: 400;
    display: block;
}

/* --- SERVICES: kartlar daha belirgin --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .04);
}

.service-card {
    background: var(--dark);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.service-card-inner {
    display: block;
    color: var(--cream);
    text-decoration: none;
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255, 255, 255, .06);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}

.service-icon-wrap {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(184, 134, 11, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    transition: all .4s;
}

.service-card:hover .service-icon-wrap {
    background: rgba(184, 134, 11, .15);
    border-color: var(--gold);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--cream);
}

.service-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
    transition: all .3s;
}

.service-link i {
    margin-left: 5px;
    transition: transform .3s;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-card:hover {
    background: #151515;
    transform: translateY(-3px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover::after {
    width: 100%;
}

/* --- GALERI PLACEHOLDER: görünür ve güzel --- */
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 5% 20px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.gallery-scroll:active {
    cursor: grabbing;
}

.gallery-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-card.placeholder-card {
    flex: 0 0 300px;
    min-height: 400px;
}

.gallery-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 4px;
    transition: all .5s;
}

.gallery-card-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, .15);
    transition: color .4s;
}

.gallery-card-placeholder span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .2);
    font-weight: 400;
}

.gallery-card.placeholder-card:hover .gallery-card-placeholder {
    border-color: rgba(184, 134, 11, .2);
}

.gallery-card.placeholder-card:hover .gallery-card-placeholder i {
    color: var(--gold);
}

/* --- WHY US: daha büyük ikonlar, daha fazla padding --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .04);
}

.why-card {
    background: var(--dark);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    transition: all .4s;
}

.why-card:hover .why-card-icon {
    background: rgba(184, 134, 11, .15);
    border-color: var(--gold);
}

.why-card-title,
.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--cream);
}

.why-card-desc,
.why-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.8;
}

/* --- CTA: daha büyük butonlar, daha fazla presence --- */
.cta-section {
    padding: 160px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184, 134, 11, .05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title,
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    color: var(--cream);
    line-height: .95;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.cta-subtitle,
.cta-section p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--light-gray);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-section .hero-buttons,
.cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* --- MAP: daha koyu, siteyle uyumlu --- */
.map-section {
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(1) brightness(.2) contrast(1.3);
    transition: filter .6s;
}

.map-section:hover iframe {
    filter: grayscale(.7) brightness(.4) contrast(1.1);
}

.map-container {
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- SEO TEXT: daha okunabilir, drop-cap düzeltmesi --- */
.seo-text {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-text .container {
    max-width: 850px;
}

.seo-text p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2.2;
    color: var(--light-gray);
    margin-bottom: 25px;
    text-align: justify;
}

.seo-text p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    color: var(--gold);
    margin-right: 12px;
    margin-top: 8px;
    line-height: .8;
}

.seo-text p::first-letter {
    font-family: inherit;
    font-size: inherit;
    float: none;
    color: inherit;
    margin: 0;
}

.seo-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
}

/* --- MARQUEE: daha görünür --- */
.marquee-section {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .15);
    white-space: nowrap;
    padding: 0 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.marquee-item.filled,
.marquee-item .filled {
    color: var(--cream);
    -webkit-text-stroke: none;
}

.marquee-item.outline {
    color: transparent;
}

.dot,
.marquee-item .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 25px;
    vertical-align: middle;
}

/* --- SECTION HEADER: daha tutarlı --- */
.section-header {
    margin-bottom: 70px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 45px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

/* --- HERO BUTTONS: daha büyük, daha belirgin --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, .25);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(240, 237, 230, .3);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}

/* --- FOOTER: düzeltmeler --- */
.footer {
    padding: 100px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
}

.footer-col h4 {
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.footer-col ul li a,
.footer-col li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .65);
}

.footer-col ul li a:hover,
.footer-col li a:hover {
    color: #fff;
}

.footer-contact li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 14px;
}

.footer-contact li a,
.footer-contact li span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .65);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
}

.footer-powered {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .5);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .4);
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding: 50px 25px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card.placeholder-card {
        flex: 0 0 260px;
        min-height: 350px;
    }
    .gallery-card-placeholder {
        min-height: 350px;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding: 40px 20px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 40px 30px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        padding: 40px 30px;
    }
    .gallery-card.placeholder-card {
        flex: 0 0 80vw;
        min-height: 300px;
    }
    .gallery-card-placeholder {
        min-height: 300px;
    }
    .gallery-card {
        flex: 0 0 80vw;
    }
    .cta-title,
    .cta-section h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col ul {
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer-bottom p {
        font-size: 0.85rem;
    }
    /* Hero mobilde ortalı */
    .hero-content {
        text-align: center;
        padding: 0 5%;
    }
    .hero-eyebrow {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .seo-text {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding: 30px 15px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .cta-section {
        padding: 80px 0;
    }
    .cta-section .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}
