/* ==========================================================================
   Tekno Müzik Organizasyon - MODERN ROMANTIC ROSE GOLD DESIGN SYSTEM
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Color Palette */
    --primary: #281e20;        /* Elegant Dark Rose Charcoal */
    --primary-light: #3e3033;
    --accent-gold: #dcae96;    /* Luxurious Metallic Rose Gold */
    --accent-gold-hover: #c4967f;
    --accent-gold-light: #faf0eb; /* Soft Blush Pink background */
    --accent-champagne: #ecd8c5;  /* Soft Champagne Gold */
    --text-dark: #3a3032;      /* Deep Slate with rose undertone */
    --text-muted: #857476;
    --bg-cream: #fdfbf9;       /* Ultra-clean warm porcelain white */
    --bg-white: #ffffff;
    
    /* Dynamic Shadows */
    --card-shadow: 0 15px 40px rgba(220, 174, 150, 0.08);
    --gold-shadow: 0 10px 25px rgba(220, 174, 150, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(220, 174, 150, 0.12);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 85px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    letter-spacing: -0.1px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

li {
    list-style: none;
}

/* Button & UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px; /* Fully rounded elegant buttons */
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    box-shadow: var(--gold-shadow);
}

.btn-gold:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 30, 32, 0.2);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #e5a99e; /* Soft pastel pink-gold shade instead of aggressive green */
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.8rem;
    box-shadow: 0 8px 20px rgba(229, 169, 158, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.btn-whatsapp:hover {
    background-color: #25d366; /* Turns green on hover to indicate WhatsApp functionality */
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

/* SECTION STRUCTURES */
section {
    padding: 7.5rem 1.5rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header .subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-header .divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 0 auto;
    position: relative;
}

.section-header .divider::after {
    content: '⚘'; /* Organic floral decorative divider instead of stars */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-cream);
    padding: 0 12px;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

/* HEADER / NAVIGATION - DYNAMIC TRANSPARENT ON HOME, DARK ON SCROLL */
header {
    height: var(--header-height);
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

header .logo-img-link {
    display: flex;
    align-items: center;
}

header .logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
    border-radius: 6px;
}

header.scrolled .logo-img,
header.subpage-header .logo-img {
    filter: invert(1) brightness(0.95) contrast(1.05); /* Inverts dark logo background to blend seamlessly on white scrolled header! */
}

header nav ul {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

header nav ul a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--bg-white);
    opacity: 0.9;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

header nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

header nav ul a:hover::after,
header nav ul a.active::after {
    width: 100%;
}

header nav ul a:hover {
    opacity: 1;
}

header .mobile-menu-btn span {
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

header .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Scrolled State */
header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 75px;
    box-shadow: 0 10px 30px rgba(220, 174, 150, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

header.scrolled .logo-text {
    color: var(--primary);
}
header.scrolled nav ul a {
    color: var(--primary);
    opacity: 0.8;
}
header.scrolled .mobile-menu-btn span {
    background-color: var(--primary);
}

/* SUBPAGE HEADER - Always Scrolled layout style */
header.subpage-header {
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    height: 75px !important;
    box-shadow: 0 10px 30px rgba(220, 174, 150, 0.05) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    position: fixed !important;
}
header.subpage-header .logo-text {
    color: var(--primary) !important;
}
header.subpage-header nav ul a {
    color: var(--primary) !important;
    opacity: 0.8 !important;
}
header.subpage-header .mobile-menu-btn span {
    background-color: var(--primary) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 1.5px;
}

/* HERO SECTION (WITH CINEMATIC KEN BURNS) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

/* Ken Burns dynamic sliding zoom animation */
@keyframes kenBurns {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

.hero-slide.active {
    opacity: 0.45; /* Overlay opacity */
    animation: kenBurns 6s ease-out forwards;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(40,30,32,0.7) 0%, rgba(40,30,32,0.2) 60%, rgba(253,251,249,1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
    color: var(--bg-white);
}

.hero-content .subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: block;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    line-height: 1.15;
    animation: fadeInUp 1.2s ease forwards;
    color: var(--bg-white);
    text-shadow: 0 4px 15px rgba(40, 30, 32, 0.2);
}

.hero-content h1 span {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--accent-champagne);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    opacity: 0.95;
    letter-spacing: 0.3px;
    animation: fadeInUp 1.4s ease forwards;
    color: var(--bg-white);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.6s ease forwards;
}

/* Floating Petals Canvas container */
.floating-petals-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    background: linear-gradient(135deg, rgba(220, 174, 150, 0.4), rgba(229, 169, 158, 0.15));
    border-radius: 150% 0 150% 150%;
    transform: rotate(45deg);
    pointer-events: none;
    animation: floatPetal 12s linear infinite;
}

@keyframes floatPetal {
    0% {
        transform: translateY(-10%) rotate(45deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    90% {
        opacity: 0.75;
    }
    100% {
        transform: translateY(110%) rotate(280deg) translateX(120px);
        opacity: 0;
    }
}

/* ABOUT SECTION */
.about {
    background-color: var(--bg-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, transparent 100%);
    pointer-events: none;
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 540px;
}

.about-img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 2;
    border-radius: 20px 20px 0 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-img-2 {
    grid-column: 5 / 13;
    grid-row: 4 / 13;
    z-index: 1;
    border: 12px solid var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(220, 174, 150, 0.15);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-images img:hover {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    left: 30px;
    background-color: var(--accent-gold);
    color: var(--bg-white);
    padding: 1.6rem 2.2rem;
    z-index: 3;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--gold-shadow);
}

.about-badge .years {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
}

.about-badge .text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-content .gold-sub {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.about-content h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.about-content p {
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.about-feature-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   HOMEPAGE HORIZONTAL SERVICE CATEGORY SLIDER
   ========================================================================== */
.services {
    background-color: var(--bg-cream);
    position: relative;
}

.category-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4.5rem; /* spaces for arrows */
}

.category-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.category-slider-track {
    display: flex;
    gap: 1.5rem; /* Clean grid gap replaces problematic item margins */
    transition: var(--transition-smooth);
}

.category-card-slide {
    flex: 0 0 calc(33.333% - 1rem); /* calculated precisely with gap */
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(220, 174, 150, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 480px;
}

.category-card-slide:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 45px rgba(220, 174, 150, 0.15);
}

.cat-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-slide:hover .cat-img-box img {
    transform: scale(1.05);
}

.cat-content-box {
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cat-content-box h3 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.cat-content-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.cat-content-box .btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
}

/* Common Slider Nav Arrows */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid rgba(220, 174, 150, 0.18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(40, 30, 32, 0.05);
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--gold-shadow);
}

.slider-nav-btn.prev-btn {
    left: 0;
}

.slider-nav-btn.next-btn {
    right: 0;
}

/* ==========================================================================
   DYNAMIC STATISTICS COUNTER SECTION
   ========================================================================== */
.stats-section {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 7rem 1.5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(220, 174, 150, 0.12) 0%, transparent 60%);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(220, 174, 150, 0.12);
    padding: 3.5rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--gold-shadow);
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(220, 174, 150, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon-wrapper {
    background: var(--accent-gold);
    color: var(--primary);
    transform: scale(1.1);
}

.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    vertical-align: super;
}

.stat-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-white);
    opacity: 0.8;
}

/* ==========================================================================
   SERVICES DETAILED SUBPAGE CARDS
   ========================================================================== */
.detailed-services-section {
    background-color: var(--bg-cream);
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.detailed-service-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem; /* Margins optimized for photo structure */
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(220, 174, 150, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detailed-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 45px rgba(220, 174, 150, 0.15);
}

/* Service Preview Photo wrapper in place of icons */
.d-service-img-wrapper {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(220, 174, 150, 0.1);
}

.d-service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(40,30,32,0.2) 100%);
}

.d-service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detailed-service-card:hover .d-service-img-wrapper img {
    transform: scale(1.06);
}

.detailed-service-card h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.8rem;
    padding: 0 5px;
}

.detailed-service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
    flex-grow: 1;
    padding: 0 5px;
}

.d-service-btn-box {
    margin-top: auto;
    padding: 0 5px;
}

.d-service-link {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.detailed-service-card:hover .d-service-link {
    color: var(--primary);
    padding-left: 5px;
}

/* PORTFOLIO / GALLERY SECTION */
.gallery {
    background-color: var(--bg-cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 4.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px 18px;
    transition: var(--transition-smooth);
    opacity: 0.6;
    border-bottom: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    opacity: 1;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

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

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 30, 32, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
    text-align: center;
}

.gallery-overlay-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay h4 {
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 6px;
    font-weight: 400;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-overlay p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-champagne);
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.15s;
}

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

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

.gallery-item:hover .gallery-overlay-icon,
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* REVIEWS SECTION WITH ARROWS */
.reviews {
    background-color: var(--bg-white);
    position: relative;
}

.reviews::before {
    content: '“';
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 14rem;
    color: var(--accent-gold);
    opacity: 0.15;
    line-height: 1;
}

.reviews-slider {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 4.5rem 3.5rem 4.5rem; /* leaves spaces for side buttons */
}

.reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 1.5rem;
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 2.2rem;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.review-author span {
    font-weight: 400;
    color: var(--accent-gold);
    margin-left: 8px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(220, 174, 150, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-dot.active {
    background-color: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* Navigation button styles */
.review-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid rgba(220, 174, 150, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(40, 30, 32, 0.06);
    transition: var(--transition-smooth);
    z-index: 10;
}

.review-nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-white);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--gold-shadow);
}

.review-nav-btn.prev-btn {
    left: 0;
}

.review-nav-btn.next-btn {
    right: 0;
}

/* CONTACT SECTION */
.contact {
    background-color: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.contact-text p,
.contact-text a {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.9;
}

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

/* Form controls */
.contact-form {
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    background-color: var(--accent-gold-light);
    border: 1px solid transparent;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background-color: var(--bg-white);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(220, 174, 150, 0.15);
}

textarea.form-control {
    resize: none;
    min-height: 130px;
}

.contact-form .btn-primary {
    border-radius: 50px;
}

/* MAP SECTION */
.map-section {
    padding: 0;
    height: 480px;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(0.9); /* Styled map integration */
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6rem 1.5rem 3rem 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(220, 174, 150, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand .logo-text {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--bg-white);
    opacity: 0.75;
    margin-bottom: 2.2rem;
    max-width: 320px;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent-gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--bg-white);
    opacity: 0.75;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--bg-white);
    opacity: 0.75;
    font-size: 0.85rem;
}

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

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-white);
    opacity: 0.6;
    font-size: 0.75rem;
}

/* ==========================================================================
   SUBPAGES SPECIFIC LAYOUTS (DÜŞÜN, KINA, ETC.)
   ========================================================================== */
.subpage-hero {
    background-color: var(--primary);
    padding: 11rem 1.5rem 6.5rem 1.5rem; /* Increased top padding for header space */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(40,30,32,0.65) 0%, var(--primary) 100%);
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
}

.subpage-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.subpage-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Photo Gallery Grid & Upload area */
.gallery-upload-section {
    background-color: var(--bg-white);
    position: relative;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.upload-card-interactive {
    border: 2px dashed rgba(220, 174, 150, 0.4);
    background-color: var(--bg-cream);
    border-radius: 20px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 2rem;
    text-align: center;
}

.upload-card-interactive:hover {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
    transform: translateY(-5px);
}

.upload-card-interactive i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.upload-card-interactive h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.upload-card-interactive p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hidden-file-input {
    display: none;
}

.gallery-photo-card {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

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

.gallery-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 174, 150, 0.18);
}

.delete-photo-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(40, 30, 32, 0.85);
    color: var(--bg-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-smooth);
    font-size: 0.8rem;
    z-index: 5;
}

.gallery-photo-card:hover .delete-photo-btn {
    opacity: 1;
}

.delete-photo-btn:hover {
    background-color: #ff3333;
    color: var(--bg-white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .about-images {
        max-width: 550px;
        margin: 0 auto;
    }
    .services-grid,
    .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-slider-container {
        padding: 0 3.5rem;
    }
    .category-card-slide {
        flex: 0 0 calc(50% - 0.75rem); /* Corrected gap calculation */
    }
    .category-slider-track {
        gap: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .upload-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 1rem;
    }
    .section-header h2 {
        font-size: 2.4rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Navigation responsive */
    .mobile-menu-btn {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3rem;
        transition: var(--transition-smooth);
        box-shadow: -15px 0 35px rgba(40, 30, 32, 0.15);
    }
    nav.open {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    nav ul a {
        color: var(--bg-white);
        font-size: 1.15rem;
    }
    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: var(--bg-white);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background-color: var(--bg-white);
    }
    header.scrolled .mobile-menu-btn.open span {
        background-color: var(--bg-white);
    }
    
    .services-grid,
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
    .category-card-slide {
        flex: 0 0 100%;
    }
    .category-slider-container {
        padding: 0; /* Clear slider side paddings on mobile */
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .upload-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FLOATING CONTACT BUTTONS (STICKY BOTTOM RIGHT)
   ========================================================================== */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(40, 30, 32, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.float-phone {
    background-color: var(--primary);
    border: 1px solid rgba(220, 174, 150, 0.2);
}

.float-phone:hover {
    background-color: var(--accent-gold);
    box-shadow: var(--gold-shadow);
}

.float-wa {
    background-color: #25d366;
    position: relative;
}

.float-wa::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s infinite;
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 30, 32, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-modal.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    animation: zoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    display: block;
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 2rem;
    color: var(--bg-white);
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
}
.lightbox-close:hover {
    color: var(--accent-gold);
    transform: scale(1.15) rotate(90deg);
}

