/* ============================================================
   BANDIRMA MASAJ - Dark Luxury Theme
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation-duration: 1s !important;
        transition-duration: 0.3s !important;
        animation-iteration-count: 1 !important;
    }
}

:root {
    --bg-primary: #090909;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;

    --gold: #c9a96e;
    --gold-light: #dfc298;
    --gold-dark: #a8864d;
    --gold-glow: rgba(201, 169, 110, 0.15);

    --white: #ffffff;
    --text-primary: #f0ede8;
    --text-secondary: #a09b93;
    --text-muted: #6b6660;

    --border-color: rgba(201, 169, 110, 0.12);
    --border-light: rgba(255, 255, 255, 0.06);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --navbar-height: 80px;
    --section-padding: 120px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--gold-light);
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}

/* ============================================================
   CUSTOM SELECTION
   ============================================================ */
::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-ring {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-logo {
    width: 200px;
    height: auto;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 70px;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    padding: 20px 0;
    transition: all var(--transition-base);
    z-index: 1000;
    background: transparent;
}

#mainNav.scrolled {
    padding: 12px 0;
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    padding: 0;
}

.brand-logo {
    width: 180px;
    height: auto;
    top: 50%;
    left: 0;
    transition: opacity var(--transition-base);
}

.brand-logo:hover {
    opacity: 0.85;
}

.brand-logo-mobile {
    width: 150px;
    height: auto;
}

.brand-logo-footer {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-accent {
    color: var(--gold);
    font-style: italic;
}

.brand-lg {
    font-size: 2rem;
}

#mainNav .nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 8px 18px !important;
    position: relative;
    transition: color var(--transition-base);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: right;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold);
}

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 8px 24px !important;
    margin-left: 10px !important;
    letter-spacing: 2px !important;
    transition: all var(--transition-base) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg-primary) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.navbar-toggler {
    border: none !important;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger span:nth-child(2) {
    width: 60%;
    margin-left: auto;
}

/* ============================================================
   OFFCANVAS MOBILE MENU
   ============================================================ */
.offcanvas {
    background: var(--bg-primary) !important;
    border-left: 1px solid var(--border-color) !important;
    width: 320px !important;
}

.offcanvas-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
}

.btn-close-custom {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color var(--transition-base);
    padding: 4px;
}

.btn-close-custom:hover {
    color: var(--gold);
}

.offcanvas-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid var(--border-light);
}

.offcanvas-nav li a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
    letter-spacing: 1px;
}

.offcanvas-nav li a:hover {
    color: var(--gold);
    padding-left: 12px;
}

.mobile-cta {
    color: var(--gold) !important;
    font-weight: 500;
}

.offcanvas-footer {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.offcanvas-social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.offcanvas-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.offcanvas-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.offcanvas-phone {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.offcanvas-phone i {
    color: var(--gold);
    margin-right: 8px;
}

.offcanvas-copyright {
    font-size: 0.75rem;
    color: var(--text-muted, rgba(255,255,255,0.35));
    margin-top: 12px;
}

.offcanvas-services {
    padding: 20px 0;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
}

.offcanvas-services-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.offcanvas-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.offcanvas-services-list li a {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: border-color 0.3s, color 0.3s;
}

.offcanvas-services-list li a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(9, 9, 9, 0.85) 0%,
        rgba(9, 9, 9, 0.65) 50%,
        rgba(9, 9, 9, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    background: rgba(201, 169, 110, 0.05);
}

.hero-badge i {
    font-size: 0.6rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* Side info on hero */
.hero-side-info {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-side-info a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
    writing-mode: vertical-rl;
    letter-spacing: 2px;
}

.hero-side-info a:hover {
    color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   MARQUEE / INFINITE SCROLL TEXT
   ============================================================ */
.marquee-section {
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    white-space: nowrap;
}

.marquee-item span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.marquee-item .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
    padding: var(--section-padding) 0;
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    position: relative;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform var(--transition-slow);
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    z-index: 2;
}

.about-image-accent .accent-inner {
    text-align: center;
}

.accent-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
}

.accent-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.about-feature:hover .about-feature-icon {
    background: var(--gold-glow);
    border-color: var(--gold);
}

.about-feature-text {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.service-card:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.service-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    z-index: 1;
}

.service-card-body {
    padding: 32px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 400;
}

.service-card-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap var(--transition-base);
}

.service-card-link:hover {
    gap: 14px;
    color: var(--gold-light);
}

/* ============================================================
   PARALLAX SECTION
   ============================================================ */
.parallax-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.75);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.parallax-content p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================================
   WORKSHOPS SECTION
   ============================================================ */
#workshops {
    padding: var(--section-padding) 0;
    position: relative;
}

.workshop-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
}

.workshop-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.workshop-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.workshop-card:hover .workshop-card-bg img {
    transform: scale(1.1);
}

.workshop-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.3) 100%);
    transition: background var(--transition-base);
}

.workshop-card:hover .workshop-card-overlay {
    background: linear-gradient(to top, rgba(9,9,9,0.98) 0%, rgba(9,9,9,0.5) 100%);
}

.workshop-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform var(--transition-base) !important;
}

.workshop-card:hover .workshop-card-content {
    transform: translateY(0);
}

.workshop-card-tag {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.workshop-card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.workshop-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.workshop-card:hover .workshop-card-desc {
    opacity: 1;
}

.workshop-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.workshop-card:hover .workshop-card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    right: 80px;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(201, 169, 110, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 40px;
    height: 100%;
    transition: border-color var(--transition-base), transform var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.testimonial-name {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Swiper overrides for testimonials */
.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    border-radius: 0;
    background: var(--text-muted);
    opacity: 0.4;
    transition: all var(--transition-base);
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 50px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing {
    padding: var(--section-padding) 0;
    position: relative;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 44px;
    text-align: center;
    transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201,169,110,0.06) 0%, var(--bg-card) 100%);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 1.3rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.7;
}

.pricing-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color var(--transition-base), transform var(--transition-base);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--white);
}

.contact-info-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.contact-info-text a {
    color: var(--text-secondary);
}

.contact-info-text a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 48px;
}

.form-floating {
    margin-bottom: 24px;
}

.form-floating .form-control,
.form-floating .form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 16px 0;
    height: auto;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--gold);
    box-shadow: none;
    outline: none;
    background: transparent;
}

.form-floating label {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 0;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--gold);
    transform: scale(0.8) translateY(-0.8rem);
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    border-right: none;
    padding: 16px 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition-base);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-desc {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 300;
    transition: all var(--transition-base);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================================
   RETURN TO TOP
   ============================================================ */
#returnTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

#returnTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#returnTop:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    background: #22c55e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   GALLERY / IMAGE GRID
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
}

.section-divider .line {
    width: 80px;
    height: 1px;
    background: var(--border-color);
}

.section-divider .diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

/* Scope card transitions to specific properties so they don't
   interfere with Animate.css transform/opacity animations */

/* ============================================================
   BREADCRUMB HERO (Alt Sayfalar)
   ============================================================ */
.breadcrumb-hero {
    position: relative;
    padding: 180px 0 80px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
}

.breadcrumb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.breadcrumb-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(9, 9, 9, 0.5) 0%,
        rgba(9, 9, 9, 0.85) 100%
    );
}

.breadcrumb-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.breadcrumb-hero .breadcrumb-desc {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-nav li a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.breadcrumb-nav li a:hover {
    color: var(--gold);
}

.breadcrumb-nav li .separator {
    color: var(--gold);
    font-size: 0.6rem;
}

.breadcrumb-nav li.active {
    color: var(--gold);
    font-weight: 500;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.detail-content-section {
    padding: var(--section-padding) 0;
}

.detail-main-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.detail-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.detail-main-image:hover img {
    transform: scale(1.03);
}

.detail-text {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 2;
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.detail-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 36px;
    margin-bottom: 32px;
}

.detail-info-box h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.6;
}

.detail-list li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.detail-duration {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--gold-glow);
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}

.detail-duration i {
    color: var(--gold);
    font-size: 1.2rem;
}

.detail-duration span {
    font-size: 0.92rem;
    color: var(--text-primary);
}

.detail-duration strong {
    color: var(--gold);
}

.detail-sidebar-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px;
    text-align: center;
}

.detail-sidebar-cta h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.detail-sidebar-cta p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.7;
}

.other-services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* ============================================================
   SERVICES LIST PAGE
   ============================================================ */
.services-grid-section {
    padding: var(--section-padding) 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-section {
    padding: var(--section-padding) 0;
}

.about-page-section.alt-bg {
    background: var(--bg-secondary);
}

/* Therapist Profile Card */
.therapist-profile {
    position: relative;
}

.therapist-image {
    position: relative;
    overflow: hidden;
}

.therapist-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.9);
    transition: transform var(--transition-slow);
}

.therapist-image:hover img {
    transform: scale(1.03);
}

.therapist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.therapist-name-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    z-index: 2;
    border-left: 3px solid var(--gold);
}

.therapist-name-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 4px;
}

.therapist-name-card span {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

/* Credentials */
.therapist-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    transition: border-color var(--transition-base);
}

.credential-item:hover {
    border-color: var(--border-color);
}

.credential-item i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.credential-item span {
    font-size: 0.82rem;
    color: var(--text-primary);
    font-weight: 400;
}

.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 36px;
    text-align: center;
    height: 100%;
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.about-value-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.2rem;
}

.about-value-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.about-value-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section {
    padding: var(--section-padding) 0;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--border-light);
    filter: grayscale(0.8) brightness(0.6) contrast(1.2);
    transition: filter var(--transition-base);
}

.contact-map:hover {
    filter: grayscale(0.4) brightness(0.7) contrast(1.1);
}

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding) 0;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.error-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.error-desc {
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }

    .brand-logo {
        width: 140px;
    }

    .brand-logo-footer {
        width: 200px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero-side-info {
        display: none;
    }

    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .about-image-accent {
        bottom: -20px;
        right: -20px;
        width: 160px;
        height: 160px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:first-child {
        grid-row: span 2;
        grid-column: span 1;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 64px;
    }

    .breadcrumb-hero {
        padding: 140px 0 60px;
        min-height: 280px;
    }

    .breadcrumb-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .therapist-image img {
        height: 400px;
    }

    .therapist-credentials {
        grid-template-columns: 1fr;
    }

    .detail-main-image img {
        height: 260px;
    }

    .contact-map {
        height: 280px;
    }

    .hero-content {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: auto;
        padding: 30px;
        margin-top: -20px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .parallax-section {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .contact-form {
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid var(--border-color);
    }

    .pricing-card {
        padding: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 8px;
    }

    #returnTop {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

    .whatsapp-float {
        left: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .workshop-card {
        height: 380px;
    }

    .service-card-image {
        height: 220px;
    }

    .marquee-item span {
        font-size: 1.2rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold {
    color: var(--gold) !important;
}

.bg-dark-secondary {
    background: var(--bg-secondary);
}

.overflow-hidden {
    overflow: hidden;
}

.z-1 {
    z-index: 1;
    position: relative;
}

/* Grain overlay for extra texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
