/**
 * SemerlineKennel - Premium Köpek Oteli
 * Main Stylesheet
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --background: #F5F0EA;
    --foreground: #1A120B;
    --primary: #5C3D2E;
    --primary-foreground: #FAF6F1;
    --secondary: #EDE4D8;
    --secondary-foreground: #3D2817;
    --accent: #C8956C;
    --accent-foreground: #1A120B;
    --muted: #E8DFD4;
    --muted-foreground: #6B5B4F;
    --card: #FFFCF8;
    --card-foreground: #1A120B;
    --border: #D4C4B0;
    --input: #EDE4D8;
    --ring: #5C3D2E;
    --brown-dark: #2C1810;
    --brown-gold: #D4A574;
    --radius: 1rem;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   Base Styles
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatYSlow {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes pulseSoft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes homeIntroIconPop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    70% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-scale {
    animation: fadeInScale 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
    animation: floatY 5s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatYSlow 7s ease-in-out infinite;
}

.animate-spin-slow {
    animation: spinSlow 20s linear infinite;
}

.animate-gradient {
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

.animate-blob {
    animation: blobMorph 8s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulseSoft 3s ease-in-out infinite;
}

.animate-slide-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-in {
    animation: heroSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-progress {
    animation: heroProgress 5.5s linear forwards;
}

/* Animation Delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.delay-600 {
    animation-delay: 600ms;
}

.delay-700 {
    animation-delay: 700ms;
}

.delay-1000 {
    animation-delay: 1000ms;
}

.delay-1200 {
    animation-delay: 1200ms;
}

@media (prefers-reduced-motion: reduce) {

    .section-reveal,
    .stagger-child {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }

    .hero-headline .hero-line {
        opacity: 1 !important;
        animation: none !important;
        filter: none !important;
    }

    .hero-blob,
    .floating-stat,
    .scroll-dot,
    .home-intro-item-icon,
    .home-promise-icon {
        animation: none !important;
    }

    .home-promise-item {
        transition: none !important;
    }
}

/* =====================================================
   Layout
   ===================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* =====================================================
   Glass Effects
   ===================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
    background: rgba(92, 61, 46, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(92, 61, 46, 0.2);
}

/* =====================================================
   Text Gradients
   ===================================================== */
.text-gradient-gold {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #5C3D2E 0%, #C8956C 50%, #D4A574 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: linear-gradient(135deg, #FAF6F1 0%, #EDE0D0 30%, #E8D5C0 70%, #FAF6F1 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

/* =====================================================
   Buttons
   ===================================================== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: white;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

.purple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, #2C1810 100%);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.purple-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(92, 61, 46, 0.35);
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: white;
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.gold-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(217, 119, 6, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* =====================================================
   Cards
   ===================================================== */
.card-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(92, 61, 46, 0.12);
}

.bento-card {
    background: #FFFFFF;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(92, 61, 46, 0.14);
    border-color: rgba(92, 61, 46, 0.3);
}

/* =====================================================
   Pills & Tags
   ===================================================== */
.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.1), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(92, 61, 46, 0.2);
    color: #5C3D2E;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
}

/* =====================================================
   Navigation
   ===================================================== */
.nav-underline {
    position: relative;
}

.nav-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5C3D2E, #D97706);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-underline:hover::after {
    width: 100%;
}

/* =====================================================
   Section Reveal Animation
   ===================================================== */
.section-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-child.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Shimmer Effect
   ===================================================== */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    background-size: 200% 100%;
    transform: translateX(-100%);
    transition: none;
}

.shimmer-effect:hover::after {
    animation: shimmer 1.5s ease-in-out;
}

/* =====================================================
   Line Clamp
   ===================================================== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   Utilities
   ===================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.aspect-video {
    aspect-ratio: 16/9;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: black;
}

.border-primary {
    border-color: var(--primary);
}

.border-accent {
    border-color: var(--accent);
}

.border-border {
    border-color: var(--border);
}

.border-white {
    border-color: white;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-100 {
    opacity: 1;
}

.transition-all {
    transition: all 0.3s ease;
}

.transition-colors {
    transition: color, background-color, border-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.group {
    position: relative;
}

.group-hover\:scale-105 {
    transform: scale(1);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.translate-x-0 {
    transform: translateX(0);
}

.-translate-x-full {
    transform: translateX(-100%);
}

.rotate-45 {
    transform: rotate(45deg);
}

.-rotate-45 {
    transform: rotate(-45deg);
}

.cursor-pointer {
    cursor: pointer;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.inline-block {
    display: inline-block;
}

.self-auto {
    align-self: auto;
}

.self-start {
    align-self: flex-start;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.leading-snug {
    line-height: 1.375;
}

.duration-700 {
    transition-duration: 700ms;
}

/* =====================================================
   Grid System
   ===================================================== */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* sm: responsive */
@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:hidden {
        display: none;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:flex-col {
        flex-direction: column;
    }

    .sm\:self-auto {
        align-self: auto;
    }

    .sm\:items-end {
        align-items: flex-end;
    }

    .sm\:items-center {
        align-items: center;
    }

    .sm\:justify-between {
        justify-content: space-between;
    }

    .sm\:justify-center {
        justify-content: center;
    }

    .sm\:gap-4 {
        gap: 1rem;
    }
}

/* md: responsive */
@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-end {
        align-items: flex-end;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:justify-between {
        justify-content: space-between;
    }

    .md\:justify-center {
        justify-content: center;
    }

    .md\:gap-4 {
        gap: 1rem;
    }

    .md\:gap-6 {
        gap: 1.5rem;
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* lg: responsive */
@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:flex-col {
        flex-direction: column;
    }

    .lg\:items-center {
        align-items: center;
    }

    .lg\:items-end {
        align-items: flex-end;
    }

    .lg\:justify-between {
        justify-content: space-between;
    }

    .lg\:gap-4 {
        gap: 1rem;
    }

    .lg\:gap-6 {
        gap: 1.5rem;
    }

    .lg\:h-auto {
        height: auto;
    }

    .lg\:self-auto {
        align-self: auto;
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }
}

/* =====================================================
   Spacing
   ===================================================== */
.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-7 {
    padding: 1.75rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-14 {
    margin-bottom: 3.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-auto {
    margin-top: auto;
}

.ml-auto {
    margin-left: auto;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.-mb-1 {
    margin-bottom: -0.25rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-5>*+* {
    margin-top: 1.25rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

/* =====================================================
   Width & Height
   ===================================================== */
.w-1 {
    width: 0.25rem;
}

.w-1\.5 {
    width: 0.375rem;
}

.w-2 {
    width: 0.5rem;
}

.w-2\.5 {
    width: 0.625rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-9 {
    width: 2.25rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-32 {
    width: 8rem;
}

.w-48 {
    width: 12rem;
}

.w-64 {
    width: 16rem;
}

.w-\[300px\] {
    width: 300px;
}

.w-\[500px\] {
    width: 500px;
}

.w-\[450px\] {
    width: 450px;
}

.w-\[300px\] {
    width: 300px;
}

.h-1 {
    height: 0.25rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.h-2 {
    height: 0.5rem;
}

.h-2\.5 {
    height: 0.625rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-9 {
    height: 2.25rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-32 {
    height: 8rem;
}

.h-36 {
    height: 9rem;
}

.h-40 {
    height: 10rem;
}

.h-44 {
    height: 11rem;
}

.h-48 {
    height: 12rem;
}

.h-56 {
    height: 14rem;
}

.h-64 {
    height: 16rem;
}

.h-72 {
    height: 18rem;
}

.h-80 {
    height: 20rem;
}

.h-\[500px\] {
    height: 500px;
}

.h-\[450px\] {
    height: 450px;
}

.h-\[300px\] {
    height: 300px;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.min-h-\[280px\] {
    min-height: 280px;
}

.min-h-\[340px\] {
    min-height: 340px;
}

.min-h-\[380px\] {
    min-height: 380px;
}

.min-h-\[200px\] {
    min-height: 200px;
}

/* =====================================================
   Position
   ===================================================== */
.top-4 {
    top: 1rem;
}

.top-8 {
    top: 2rem;
}

.top-12 {
    top: 3rem;
}

.top-\[40\%\] {
    top: 40%;
}

.top-\[-10\%\] {
    top: -10%;
}

.bottom-2 {
    bottom: 0.5rem;
}

.bottom-4 {
    bottom: 1rem;
}

.bottom-5 {
    bottom: 1.25rem;
}

.bottom-6 {
    bottom: 1.5rem;
}

.bottom-\[22\%\] {
    bottom: 22%;
}

.bottom-\[24px\] {
    bottom: 24px;
}

.bottom-0 {
    bottom: 0;
}

.bottom-8 {
    bottom: 2rem;
}

.left-4 {
    left: 1rem;
}

.left-5 {
    left: 1.25rem;
}

.left-6 {
    left: 1.5rem;
}

.left-\[-15\%\] {
    left: -15%;
}

.left-\[-12\%\] {
    left: -12%;
}

.right-4 {
    right: 1rem;
}

.right-5 {
    right: 1.25rem;
}

.right-6 {
    right: 1.5rem;
}

.right-\[-5\%\] {
    right: -5%;
}

.right-\[-14\%\] {
    right: -14%;
}

.right-\[20\%\] {
    right: 20%;
}

/* =====================================================
   Borders
   ===================================================== */
.border {
    border: 1px solid var(--border);
}

.border-2 {
    border: 2px solid var(--border);
}

.border-4 {
    border: 4px solid var(--border);
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* =====================================================
   Gradient Backgrounds
   ===================================================== */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-purple-500 {
    --tw-gradient-from: #A855F7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-violet-700 {
    --tw-gradient-to: #5B21B6;
}

.from-amber-500 {
    --tw-gradient-from: #F59E0B;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.to-orange-600 {
    --tw-gradient-to: #EA580C;
}

.from-emerald-500 {
    --tw-gradient-from: #10B981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.to-teal-700 {
    --tw-gradient-to: #0F766E;
}

.from-rose-500 {
    --tw-gradient-from: #F43F5E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 63, 94, 0));
}

.to-pink-700 {
    --tw-gradient-to: #BE185D;
}

.from-blue-500 {
    --tw-gradient-from: #3B82F6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.to-indigo-700 {
    --tw-gradient-to: #4338CA;
}

.from-fuchsia-500 {
    --tw-gradient-from: #D946EF;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 70, 239, 0));
}

.to-purple-700 {
    --tw-gradient-to: #7A5240;
}

.from-amber-400 {
    --tw-gradient-from: #FBBF24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.to-amber-700 {
    --tw-gradient-to: #B45309;
}

.from-purple-700 {
    --tw-gradient-to: #7A5240;
}

.from-teal-600 {
    --tw-gradient-to: #0D9488;
}

.from-pink-600 {
    --tw-gradient-to: #DB2777;
}

.from-purple-600 {
    --tw-gradient-to: #9333EA;
}

.from-indigo-600 {
    --tw-gradient-to: #4F46E5;
}

.from-green-500 {
    --tw-gradient-from: #22C55E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0));
}

.to-green-600 {
    --tw-gradient-to: #16A34A;
}

.from-yellow-500 {
    --tw-gradient-from: #EAB308;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 179, 8, 0));
}

.to-yellow-600 {
    --tw-gradient-to: #CA8A04;
}

/* Color Backgrounds */
.bg-purple-50 {
    background-color: #EDE4D8;
}

.bg-purple-100 {
    background-color: #E8DFD4;
}

.bg-purple-200 {
    background-color: #D4C4B0;
}

.bg-amber-50 {
    background-color: #FFFBEB;
}

.bg-amber-100 {
    background-color: #FEF3C7;
}

.bg-amber-200 {
    background-color: #FDE68A;
}

.bg-emerald-50 {
    background-color: #ECFDF5;
}

.bg-rose-50 {
    background-color: #FFF1F2;
}

.bg-blue-50 {
    background-color: #EFF6FF;
}

.bg-fuchsia-50 {
    background-color: #FDF4FF;
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-card {
    background-color: var(--card);
}

.bg-muted {
    background-color: var(--muted);
}

/* =====================================================
   Text Colors
   ===================================================== */
.text-amber-600 {
    color: #D97706;
}

.text-amber-700 {
    color: #B45309;
}

.text-purple-600 {
    color: #7A5240;
}

.text-purple-700 {
    color: #5C3D2E;
}

.text-emerald-600 {
    color: #059669;
}

.text-emerald-700 {
    color: #047857;
}

.text-rose-600 {
    color: #E11D48;
}

.text-rose-700 {
    color: #BE123C;
}

.text-blue-600 {
    color: #2563EB;
}

.text-fuchsia-600 {
    color: #C026D3;
}

.text-green-600 {
    color: #16A34A;
}

.text-red-500 {
    color: #EF4444;
}

.text-red-600 {
    color: #DC2626;
}

.text-red-700 {
    color: #B91C1C;
}

/* Border Colors */
.border-purple-200 {
    border-color: #D4C4B0;
}

.border-amber-200 {
    border-color: #FDE68A;
}

.border-emerald-200 {
    border-color: #A7F3D0;
}

.border-rose-200 {
    border-color: #FECDD3;
}

.border-blue-200 {
    border-color: #BFDBFE;
}

.border-fuchsia-200 {
    border-color: #F5D0FE;
}

/* =====================================================
   Media Queries - Responsive Design
   ===================================================== */
@media (max-width: 640px) {
    .hero-massive-text {
        font-size: clamp(3rem, 15vw, 6rem);
    }
}

@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:hidden {
        display: none;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:w-auto {
        width: auto;
    }

    .sm\:w-2\/5 {
        width: 40%;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:h-auto {
        height: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:w-auto {
        width: auto;
    }

    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:w-2\/5 {
        width: 40%;
    }

    .lg\:h-auto {
        height: auto;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* =====================================================
   Header Styles
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 2px rgba(92, 61, 46, 0.05);
    border-bottom: 1px solid var(--border);
}

.header--transparent {
    background: transparent;
}

/* =====================================================
   Footer Styles
   ===================================================== */
.footer {
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, #FAF8F5 0%, #EDE0D0 50%, #FAF8F5 100%);
}

/* =====================================================
   Anasayfa — güven / özet şeridi (Poodle otel)
   ===================================================== */
.home-promise-strip {
    padding: 1.75rem 0;
    background: linear-gradient(105deg, #1A0F0A 0%, #2C1810 35%, #3D2817 70%, #5C3D2E 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.home-promise-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(200, 149, 108, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 100%, rgba(212, 165, 116, 0.12), transparent 50%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, auto, 32px 32px, 32px 32px;
    pointer-events: none;
}

.home-promise-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

@media (min-width: 768px) {
    .home-promise-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.home-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-promise-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.home-promise-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBBF24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(92, 61, 46, 0.35));
    animation: homeIntroIconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.home-promise-inner .stagger-child:nth-child(1) .home-promise-icon {
    animation-delay: 0.1s;
}

.home-promise-inner .stagger-child:nth-child(2) .home-promise-icon {
    animation-delay: 0.18s;
}

.home-promise-inner .stagger-child:nth-child(3) .home-promise-icon {
    animation-delay: 0.26s;
}

.home-promise-inner .stagger-child:nth-child(4) .home-promise-icon {
    animation-delay: 0.34s;
}

.home-promise-icon svg {
    display: block;
}

.home-promise-text strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.home-promise-text span {
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 480px) {
    .home-promise-text strong {
        font-size: 0.875rem;
    }

    .home-promise-text span {
        font-size: 0.8125rem;
    }
}

.home-intro-strip {
    padding: 2rem 0 2.25rem;
    background: linear-gradient(90deg, rgba(92, 61, 46, 0.06), rgba(217, 119, 6, 0.06));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-intro-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-intro-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.home-intro-head {
    margin-bottom: 1.25rem;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.home-intro-lead {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.home-intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.home-intro-title {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
    line-height: 1.2;
}

.home-intro-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(92, 61, 46, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.home-intro-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(92, 61, 46, 0.1);
    border-color: rgba(92, 61, 46, 0.2);
}

.home-intro-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.home-intro-item-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.12), rgba(217, 119, 6, 0.12));
    color: var(--primary);
    animation: homeIntroIconPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.home-intro-grid .stagger-child:nth-child(1) .home-intro-item-icon {
    animation-delay: 0.08s;
}

.home-intro-grid .stagger-child:nth-child(2) .home-intro-item-icon {
    animation-delay: 0.16s;
}

.home-intro-grid .stagger-child:nth-child(3) .home-intro-item-icon {
    animation-delay: 0.24s;
}

.home-intro-item-icon svg {
    display: block;
}

.home-intro-item strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.home-intro-item span {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.45;
}

.videos-feed-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    line-height: 1.55;
}

.videos-feed-meta {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.9;
}

/* =====================================================
   Service Cards
   ===================================================== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card img {
    transition: transform 0.7s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* =====================================================
   Blog Styles
   ===================================================== */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

/* =====================================================
   Testimonial Styles
   ===================================================== */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =====================================================
   Form Styles
   ===================================================== */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: var(--input);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.1);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

/* =====================================================
   Scrollbar
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-foreground);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--foreground);
}

/* =====================================================
   Accessibility
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(92, 61, 46, 0.2);
    color: var(--foreground);
}

/* =====================================================
   Site Header
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    min-height: 7rem;
    height: auto;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    display: block;
    height: 5.25rem;
    width: auto;
    max-width: min(360px, 54vw);
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 480px) {
    .site-logo-img {
        height: 5.75rem;
        max-width: min(520px, 50vw);
    }
}

@media (min-width: 1024px) {
    .site-logo-img {
        height: 6.25rem;
        max-width: min(640px, 38vw);
    }

    .site-nav {
        min-height: 7.5rem;
    }
}

.site-logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(92, 61, 46, 0.08);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 639px) {
    .nav-cta .outline-btn {
        display: none;
    }
}

/* Mobil / tablet (<lg): üst bar = logo + hamburger; CTA sadece çekmece üstünde */
@media (max-width: 1023px) {
    .site-nav-actions .nav-cta {
        display: none;
    }

    .site-nav {
        gap: 0.75rem;
    }

    .site-logo {
        flex: 1;
        min-width: 0;
    }

    .site-logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-logo-img {
        max-width: min(340px, 56vw);
    }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    background: rgba(92, 61, 46, 0.08);
    padding: 0.5rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .hamburger {
        width: 2.75rem;
        height: 2.75rem;
        background: rgba(92, 61, 46, 0.1);
    }
}

@media (max-width: 1023px) {
    .hamburger {
        width: 2.875rem;
        height: 2.875rem;
    }
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(165deg, #2C1810 0%, #3D2817 40%, #1A0F0A 100%);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.mobile-menu-header-text {
    min-width: 0;
    flex: 1;
}

.mobile-menu-logo-img {
    display: block;
    flex-shrink: 0;
    height: 5rem;
    width: auto;
    max-width: min(300px, 72vw);
    object-fit: contain;
    object-position: left center;
}

.mobile-logo svg {
    flex-shrink: 0;
}

.mobile-logo-title {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.mobile-logo-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.mobile-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: white;
    background: rgba(200, 149, 108, 0.12);
    border-left-color: var(--accent);
}

.mobile-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.mobile-nav-badge {
    margin-left: auto;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: rgba(200, 149, 108, 0.25);
    color: var(--brown-gold, #D4A574);
}

.mobile-menu-footer {
    padding: 1rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(8.5rem, 18vw, 10.5rem) 0 3rem;
    background: linear-gradient(145deg, #2C1810 0%, #3D2817 45%, #1A0F0A 100%);
    margin-top: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(217, 119, 6, 0.15);
    animation: blobMorph 12s ease-in-out infinite;
}

.hero-blob-2 {
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(92, 61, 46, 0.12);
    animation: blobMorph 15s ease-in-out infinite reverse;
}

.hero-blob-3 {
    top: 30%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.1);
    animation: blobMorph 18s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
    opacity: 0;
    animation: heroLineIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .hero-line:nth-child(1) {
    animation-delay: 0.06s;
}

.hero-headline .hero-line:nth-child(2) {
    animation-delay: 0.14s;
}

.hero-headline .hero-line:nth-child(3) {
    animation-delay: 0.22s;
}

.hero-headline .hero-line:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.hero-dots-counter {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
    margin-left: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(92, 61, 46, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-overlay-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-overlay-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.hero-overlay-sub {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.hero-overlay-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #D97706);
    width: 0%;
    animation: heroProgress 5.5s linear forwards;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    animation: floatY 6s ease-in-out infinite;
}

.floating-stat-0 {
    top: 10%;
    right: -1rem;
    animation-delay: 0s;
}

.floating-stat-1 {
    bottom: 15%;
    left: -2rem;
    animation-delay: 2s;
}

.floating-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-stat-label {
    font-size: 0.8125rem;
    font-weight: 700;
}

.floating-stat-sub {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-link:hover {
    color: var(--primary);
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.25rem;
    border: 2px solid currentColor;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.375rem;
}

.scroll-dot {
    width: 4px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    animation: floatYSlow 2s ease-in-out infinite;
}

/* =====================================================
   Section Layouts
   ===================================================== */
.section {
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 5rem 0;
    }
}

.section-alt {
    background: rgba(245, 240, 255, 0.15);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-desc {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
}

/* =====================================================
   Services Grid
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

@media (min-width: 1024px) {
    .service-card-wide {
        grid-column: span 2;
        flex-direction: row;
    }
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .service-card-wide .service-card-image {
        height: auto;
        width: 45%;
    }
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-card-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.service-card-icon svg {
    display: block;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .service-card-wide .service-card-icon {
        width: 3.25rem;
        height: 3.25rem;
    }
}

.service-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.625rem;
}

.service-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    flex: 1;
}

@media (min-width: 1024px) {
    .service-card-wide .service-card-desc {
        flex: 0 0 auto;
    }

    .service-card-wide .service-card-body {
        justify-content: flex-start;
    }
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.service-card-health {
    box-shadow: 0 12px 48px rgba(225, 29, 72, 0.1), 0 0 0 1px rgba(225, 29, 72, 0.12);
}

.service-card-health .service-card-overlay {
    background: linear-gradient(to top, rgba(190, 18, 60, 0.35), transparent 55%);
}

.service-card-health:hover {
    box-shadow: 0 16px 52px rgba(225, 29, 72, 0.14), 0 0 0 1px rgba(225, 29, 72, 0.16);
}

/* =====================================================
   Team Grid
   ===================================================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .team-card-image {
        height: 380px;
    }
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.team-card-name {
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
}

.team-card-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    margin-top: 0.125rem;
}

.team-card-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    color: white;
    white-space: nowrap;
}

.team-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-credential {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    border: 1px solid;
}

.team-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid;
}

.team-contact-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.team-contact-phone {
    font-size: 0.8125rem;
    font-weight: 700;
}

/* =====================================================
   Videos Grid
   ===================================================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .videos-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

@media (max-width: 639px) {
    .video-card:active {
        transform: scale(0.98);
    }
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(92, 61, 46, 0.12);
}

.video-thumbnail {
    position: relative;
    height: 118px;
    overflow: hidden;
}

@media (min-width: 400px) {
    .video-thumbnail {
        height: 132px;
    }
}

@media (min-width: 640px) {
    .video-thumbnail {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .video-thumbnail {
        height: 220px;
    }
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

@media (min-width: 640px) {
    .video-play-btn {
        width: 3rem;
        height: 3rem;
    }
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.video-info {
    padding: 0.5rem 0.6rem 0.65rem;
    flex: 1;
}

@media (min-width: 640px) {
    .video-info {
        padding: 0.875rem;
    }
}

.video-title {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .video-title {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 0.375rem;
    }
}

.video-desc {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .video-desc {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.625rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.video-watch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    color: var(--primary);
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.youtube-link:hover {
    gap: 0.75rem;
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.stars-row {
    display: flex;
    gap: 2px;
}

.testimonials-rating {
    font-weight: 800;
    font-size: 1.125rem;
}

.testimonials-count {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--foreground);
    font-style: italic;
    flex: 1;
}

.testimonial-service {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    color: white;
    align-self: flex-start;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* =====================================================
   Blog Section
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: auto auto;
    }

    .blog-featured {
        grid-row: span 2;
    }

    .blog-bottom {
        grid-column: 2;
    }
}

.blog-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    min-height: 450px;
}

.blog-featured-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .blog-featured-image {
        height: 100%;
        min-height: 400px;
    }
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.blog-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

.blog-featured-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.blog-category {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.blog-category-sm {
    font-size: 0.625rem;
}

.blog-featured-title {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--foreground);
}

.blog-featured-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.blog-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--muted);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.blog-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.blog-meta-sm {
    font-size: 0.6875rem;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

/* Blog Side */
.blog-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .blog-side {
        grid-column: 2;
        grid-row: 1;
    }
}

.blog-side-card {
    display: flex;
    flex-direction: row;
    text-decoration: none;
}

.blog-side-image {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-side-card:hover .blog-side-image img {
    transform: scale(1.05);
}

.blog-side-body {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.375rem;
}

.blog-side-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Bottom */
.blog-bottom {
    display: flex;
    text-decoration: none;
}

.blog-bottom-image {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-bottom:hover .blog-bottom-image img {
    transform: scale(1.05);
}

.blog-bottom-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.blog-bottom-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--foreground);
}

.blog-bottom-excerpt {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    flex: 1;
}

.blog-bottom-right {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.5rem;
}

.blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-all-link:hover {
    gap: 0.75rem;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-banner {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #2C1810 0%, #5C3D2E 45%, #3D2817 75%, #1A0F0A 100%);
    margin-bottom: 2.5rem;
    padding: 3rem 2.5rem;
}

@media (min-width: 768px) {
    .contact-banner {
        padding: 4rem 3rem;
    }
}

.contact-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.contact-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-banner-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
        gap: 2.5rem;
        align-items: stretch;
    }
}

.contact-banner-map {
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 240px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    align-self: stretch;
}

.contact-banner-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

@media (min-width: 992px) {
    .contact-banner-map iframe {
        min-height: 100%;
    }
}

.contact-banner-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.contact-form-block {
    margin-bottom: 2.5rem;
    padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .contact-form-block {
        padding: 2rem 2.25rem;
    }
}

.contact-form-block-header {
    margin-bottom: 1.25rem;
}

.contact-form-block-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.contact-form-block-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
}

.contact-form-notice {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form-notice--ok {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.contact-form-notice--err {
    background: rgba(225, 29, 72, 0.08);
    color: #BE123C;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.contact-form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form {
    position: relative;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 1.25rem;
}

@media (min-width: 640px) {
    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-field--full {
    grid-column: 1 / -1;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-form-field span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-form-field input,
.contact-form-field textarea {
    font: inherit;
    padding: 0.65rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    width: 100%;
    box-sizing: border-box;
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, var(--brown-dark, #2C1810) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(92, 61, 46, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(92, 61, 46, 0.45);
}

.contact-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 119, 6, 0.2);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #FBBF24;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.contact-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-banner-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quick-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.quick-feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-feature-label {
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.quick-feature-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-role {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.125rem;
}

.contact-card-name {
    font-size: 1rem;
    font-weight: 800;
}

.contact-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-card-phone {
    padding: 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid;
}

.contact-card-phone-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-card-phone-num {
    font-size: 1rem;
    font-weight: 800;
}

.contact-card-ctas {
    display: flex;
    gap: 0.75rem;
}

/* =====================================================
   Site Footer
   ===================================================== */
.site-footer {
    border-top: none;
    background: linear-gradient(180deg, #1A0F0A 0%, #0F0A07 100%);
    padding: 0 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 800;
    font-size: 1.125rem;
}

.footer-logo-img {
    display: block;
    height: 5.25rem;
    width: auto;
    max-width: min(420px, 85vw);
    object-fit: contain;
    object-position: left center;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-col-title {
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-card {
    padding: 0.875rem;
    border-radius: 0.875rem;
    border: 1px solid;
    background: var(--card);
}

.footer-contact-role {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.footer-contact-name {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-contact-phone {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--brown-dark, #2C1810));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(92, 61, 46, 0.35);
    z-index: 999;
    cursor: pointer;
    border: none;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(92, 61, 46, 0.45);
}

/* =====================================================
   Rezervasyon Page
   ===================================================== */
.rezervasyon-page {
    min-height: 100vh;
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #FAF8F5 0%, #EDE0D0 40%, #FEF3C7 100%);
}

.rezervasyon-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rezervasyon-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rezervasyon-desc {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.7;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--muted);
    color: var(--muted-foreground);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.step-circle.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(92, 61, 46, 0.3);
}

.step-circle.done {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.step-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.step-line {
    width: 4rem;
    height: 2px;
    background: var(--border);
    margin: 0 0.5rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.step-line.done {
    background: #10B981;
}

/* Step Content */
.step-content {
    max-width: 960px;
    margin: 0 auto;
}

.step-title {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.step-actions.full-width {
    grid-column: 1 / -1;
    justify-content: flex-end;
}

/* Service Select Grid */
.service-select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .service-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .service-select-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-select-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-select-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(92, 61, 46, 0.12);
}

.service-select-card.selected {
    border-color: var(--primary);
    background: rgba(92, 61, 46, 0.04);
    box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.15);
}

.service-select-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.service-select-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.service-select-icon svg {
    display: block;
    flex-shrink: 0;
}

.service-select-title {
    font-size: 0.9375rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.service-select-desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.service-select-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-select-card.selected .service-select-check {
    background: var(--primary);
    border-color: var(--primary);
}

.service-select-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 1rem;
}

.service-select-features li {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    position: relative;
}

.service-select-features li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    left: -0.875rem;
}

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .calendar-grid {
        grid-template-columns: auto 1fr;
    }
}

.calendar-card {
    padding: 1.25rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-nav {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(92, 61, 46, 0.15);
    color: var(--primary);
}

.calendar-month {
    font-size: 1rem;
    font-weight: 700;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-days-header span {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    padding: 0.25rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.cal-empty {
    width: 100%;
    aspect-ratio: 1;
}

.cal-day {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

.cal-day:hover:not(.past):not(.selected) {
    background: rgba(92, 61, 46, 0.1);
    color: var(--primary);
}

.cal-day.past {
    color: var(--muted-foreground);
    opacity: 0.4;
    cursor: not-allowed;
}

.cal-day.selected {
    background: var(--primary);
    color: white;
}

.calendar-selected {
    margin-top: 1rem;
    padding: 0.875rem;
    background: rgba(92, 61, 46, 0.06);
    border-radius: 0.875rem;
    font-size: 0.875rem;
}

.sel-label {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sel-hint {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Time Slots */
.time-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.625rem;
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--muted);
    color: var(--foreground);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-align: center;
}

.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Hotel Info */
.hotel-info-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.hotel-info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-info-title {
    font-size: 1rem;
    font-weight: 800;
}

.hotel-info-desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.hotel-info-dates {
    margin-top: 0.5rem;
}

.hotel-date-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.375rem 0;
    font-size: 0.8125rem;
}

/* Summary */
.summary-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-info {
    flex: 1;
}

.summary-title {
    font-weight: 800;
    font-size: 1rem;
}

.summary-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.summary-change {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Details Form */
.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.details-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    background: var(--input);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* Success */
.success-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    animation: fadeInScale 0.6s ease;
}

.success-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
}

.success-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* =====================================================
   Pulse Dot
   ===================================================== */
.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulseSoft 2s ease-in-out infinite;
}

/* =====================================================
   Text Gradient Utility
   ===================================================== */
.text-gradient {
    background: linear-gradient(135deg, #5C3D2E 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-purple {
    background: linear-gradient(135deg, #5C3D2E 0%, #C8956C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-gold {
    background: linear-gradient(135deg, #D97706 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =====================================================
   Pill Tag
   ===================================================== */
.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(92, 61, 46, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(92, 61, 46, 0.15);
}

/* =====================================================
   Outline Button
   ===================================================== */
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--foreground);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.outline-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 61, 46, 0.15);
}

/* =====================================================
   Card Hover Effect
   ===================================================== */
.card-hover {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   Line Clamp Utilities
   ===================================================== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   Hero Gradient
   ===================================================== */
.hero-gradient {
    background: linear-gradient(135deg, #FAF8F5 0%, #EDE0D0 30%, #FEFCE8 60%, #FAF8F5 100%);
}

/* =====================================================
   Shimmer Effect
   ===================================================== */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--brown-dark, #2C1810));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(92, 61, 46, 0.4);
    z-index: 40;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 61, 46, 0.5);
}

/* =====================================================
   Footer Bottom Bar
   ===================================================== */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* =====================================================
   Blog Content Styles (blog-detail.php)
   ===================================================== */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--foreground);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: var(--foreground);
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--muted-foreground);
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-content a:hover {
    color: #7A5240;
}

.blog-content code {
    background: var(--muted);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.blog-content pre {
    background: var(--muted);
    padding: 1rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

/* =====================================================
   Additional utility classes
   ===================================================== */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.w-9 {
    width: 2.25rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.bg-black\/30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black\/40 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/80 {
    background-color: rgba(0, 0, 0, 0.8);
}

.bg-white\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   Hover Utility Classes
   ===================================================== */
.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:bg-black\/20:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.hover\:bg-black\/40:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   Group Hover Classes
   ===================================================== */
.group {
    position: relative;
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:text-primary {
    color: var(--primary);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

/* =====================================================
   Additional Missing Utility Classes
   ===================================================== */
.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.line-through {
    text-decoration: line-through;
}

.underline {
    text-decoration: underline;
}

.no-underline {
    text-decoration: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.border-0 {
    border-width: 0;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-t-0 {
    border-top-width: 0;
}

.border-b-0 {
    border-bottom-width: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.select-none {
    user-select: none;
}

.resize-none {
    resize: none;
}

.appearance-none {
    appearance: none;
    -webkit-appearance: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}

.break-words {
    overflow-wrap: break-word;
}

.break-all {
    word-break: break-all;
}

.list-none {
    list-style: none;
}

.list-disc {
    list-style-type: disc;
}

.list-decimal {
    list-style-type: decimal;
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.ring-2 {
    box-shadow: 0 0 0 2px var(--ring-color, rgba(92, 61, 46, 0.5));
}

.ring-offset-2 {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--ring-color, rgba(92, 61, 46, 0.5));
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-none {
    box-shadow: none;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* =====================================================
   lg: responsive (min-width: 1024px)
   ===================================================== */
@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }

    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:flex-col {
        flex-direction: column;
    }

    .lg\:items-center {
        align-items: center;
    }

    .lg\:items-end {
        align-items: flex-end;
    }

    .lg\:justify-between {
        justify-content: space-between;
    }

    .lg\:gap-4 {
        gap: 1rem;
    }

    .lg\:gap-6 {
        gap: 1.5rem;
    }
}