/* ==========================================
   LOOPLY BOOTH — Hybrid Design
   Mix: photoboothturkiye.com clean + dark accents
   Color: Navy (#0f1629) + Turkuaz (#4ecdc4) + White
   Font: Inter
   ========================================== */

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

:root {
    --navy: #0d0d0d;
    --navy-light: #1c1c1c;
    --navy-dark: #070707;
    --gold: #309e91;
    --gold-light: #3fb0a3;
    --gold-dark: #248a7c;
    --white: #ffffff;
    --light: #f8f8fa;
    --gray-50: #fafafa;
    --gray-100: #f0f0f3;
    --gray-200: #e2e2e7;
    --gray-300: #c5c5cd;
    --gray-500: #7a7a85;
    --gray-700: #3d3d47;
    --text: #111111;
    --text-light: #333333;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 32px rgba(48,158,145,0.25);
    --shadow-glow-lg: 0 16px 48px rgba(48,158,145,0.35);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--white);
    background: #0e0c15;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 4s ease-in-out infinite;
}


/* --- Header (transparent → white on scroll) --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(13, 13, 13, 0);
    box-shadow: 0 1px 0 rgba(48,158,145,0);
    transition: background 0.6s ease, box-shadow 0.6s ease, padding 0.4s ease;
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 1px 0 rgba(48,158,145,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px 0 40px;
}

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

.logo-img {
    height: 66px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1)
           drop-shadow(0 2px 12px rgba(48,158,145,0.5))
           drop-shadow(0 0 24px rgba(48,158,145,0.25));
}

.logo:hover .logo-img {
    transform: scale(1.06);
    filter: brightness(1.15)
           drop-shadow(0 4px 20px rgba(48,158,145,0.7))
           drop-shadow(0 0 32px rgba(48,158,145,0.35));
}

.header.scrolled .logo-img {
    height: 50px;
    filter: drop-shadow(1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(-1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(0 1px 0 rgba(0,0,0,0.2))
           drop-shadow(0 -1px 0 rgba(0,0,0,0.2))
           drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

.header.scrolled .logo:hover .logo-img {
    transform: scale(1.06);
    filter: drop-shadow(1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(-1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(0 1px 0 rgba(0,0,0,0.2))
           drop-shadow(0 -1px 0 rgba(0,0,0,0.2))
           drop-shadow(0 4px 12px rgba(48,158,145,0.35));
}

.footer .logo-img { height: 45px; }

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

/* Nav links & btn — hepsi aynı turkuaz filled pill */
.nav-link,
.nav-btn {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(48, 158, 145, 0.25);
}

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

.nav-link:hover,
.nav-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 24px rgba(48,158,145,0.5);
}

.nav-link.active,
.nav-btn.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(48, 158, 145, 0.35);
}

/* Scrolled (beyaz arka plan) */
.header.scrolled .nav-link,
.header.scrolled .nav-btn {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(15, 22, 41, 0.2);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 24px rgba(48, 158, 145, 0.4);
}

.header.scrolled .nav-link.active,
.header.scrolled .nav-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header.scrolled .hamburger span { background: var(--gold); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(48,158,145,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(48,158,145,0.4), 0 4px 12px rgba(48,158,145,0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(48,158,145,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(15,22,41,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

.btn-lg { padding: 16px 40px; font-size: 0.9rem; }


/* --- Hero (centered text, decorative lines) --- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-bg.active {
    opacity: 1;
}
.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg .image-placeholder {
    width: 100%; height: 100%;
    border-radius: 0; border: none;
    background: var(--navy-light);
    color: rgba(255,255,255,0.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 12, 21, 0.3) 0%,
        rgba(14, 12, 21, 0.2) 40%,
        rgba(14, 12, 21, 0.5) 70%,
        #0e0c15 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 32px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(48,158,145,0.4);
    border: 1px solid rgba(48,158,145,0.2);
    border-radius: 30px;
    background: rgba(48,158,145,0.06);
    backdrop-filter: blur(4px);
}

.hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
}

.hero-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(48,158,145,0.5), transparent);
    animation: line-glow 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(48,158,145,0.3), 0 0 40px rgba(48,158,145,0.1);
}

.hero-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* --- Sections --- */
.section {
    padding: 64px 0;
    background: #0e0c15;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Neon glow ambient orbs */
.section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,40,100,0.22) 0%, rgba(255,50,120,0.08) 40%, transparent 70%);
    top: -30%;
    left: -15%;
    animation: float-orb 12s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}
.section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,60,220,0.18) 0%, rgba(180,40,200,0.06) 40%, transparent 70%);
    bottom: -25%;
    right: -12%;
    animation: float-orb 15s ease-in-out infinite reverse;
    pointer-events: none;
    filter: blur(40px);
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 15px) scale(0.95); }
    75% { transform: translate(15px, 25px) scale(1.05); }
}

.dark-section {
    background: var(--navy);
    color: var(--white);
}

.dark-section .section-text,
.dark-section .section-subtitle { color: rgba(255,255,255,0.6); }

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    color: var(--gold);
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-header:hover .section-title::after {
    width: 100px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
}

.section-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}


/* --- About --- */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.about-feature:hover {
    background: rgba(48,158,145,0.04);
    border-color: rgba(48,158,145,0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(48,158,145,0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(48,158,145,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-feature:hover .feature-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(48,158,145,0.3);
}

.about-feature strong { display: block; font-size: 0.88rem; margin-bottom: 2px; transition: color var(--transition); color: var(--white); }
.about-feature:hover strong { color: var(--gold); }
.about-feature p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

.about-image:hover img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 72px rgba(0,0,0,0.16) !important;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-300);
    border: 2px dashed var(--gray-200);
}

.dark-section .image-placeholder {
    background: var(--navy-light);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.2);
}

.image-placeholder span { font-size: 0.8rem; font-weight: 500; }


/* --- Services Preview (DARK background) --- */
.services-preview {
    background: #0e0c15;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 20px;
}
.services-preview::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(48,158,145,0.18) 0%, rgba(48,158,145,0.05) 40%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: float-orb 14s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}
.services-preview::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,60,220,0.12) 0%, transparent 60%);
    bottom: -10%;
    left: -8%;
    animation: float-orb 18s ease-in-out infinite reverse;
    pointer-events: none;
    filter: blur(40px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.4s ease;
    border: 1px solid rgba(48,158,145,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 20%, rgba(255,40,100,0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(180,50,200,0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(255,80,150,0.07) 0%, transparent 50%),
        radial-gradient(circle at 30% 60%, rgba(200,40,180,0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(255,60,120,0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(48,158,145,0.6), rgba(48,158,145,0.9), rgba(48,158,145,0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after { opacity: 1; }

.service-card:hover,
.service-card:hover:nth-child(even) {
    transform: translateY(-14px) scale(1.04);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 10px 28px rgba(48,158,145,0.2), 0 0 30px rgba(255,40,100,0.1);
    border-color: rgba(48,158,145,0.5);
}

.service-card-img {
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15,22,41,0.04) 100%);
    transition: background 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-card-img::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(48,158,145,0.08) 100%);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img .image-placeholder {
    border-radius: 0;
    aspect-ratio: 16/10;
    border: none;
    background: var(--gray-100);
}

.service-card-body { padding: 24px 28px; }

.service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
    transition: color var(--transition);
}

.service-card:hover .service-card-body h3 {
    color: var(--gold);
}

.service-card-body p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    gap: 8px;
}


/* --- Stats (DARK accent) --- */
.stats { background: var(--navy); }
.stats .section-title { color: var(--white); }
.stats .section-tag { color: var(--gold); }

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

.stat-item {
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.stat-item:hover {
    background: rgba(48,158,145,0.06);
    transform: translateY(-8px) scale(1.05);
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    display: inline;
    line-height: 1;
    transition: text-shadow 0.4s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(48,158,145,0.5), 0 0 40px rgba(48,158,145,0.2);
}

.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    display: inline;
    transition: text-shadow 0.4s ease;
}

.stat-item:hover .stat-suffix {
    text-shadow: 0 0 16px rgba(48,158,145,0.6);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255,255,255,0.8);
}


/* --- Referanslar (Light bg) --- */
.referanslar-section {
    background: #0e0c15;
    position: relative;
    overflow: hidden;
}
.referanslar-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,40,100,0.2) 0%, rgba(255,20,80,0.06) 50%, transparent 70%);
    top: 10%;
    right: -15%;
    animation: float-orb 18s ease-in-out infinite;
    pointer-events: none;
    filter: blur(40px);
}
.referanslar-section::after {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180,50,220,0.16) 0%, transparent 60%);
    bottom: 5%;
    left: -10%;
    animation: float-orb 14s ease-in-out infinite reverse;
    pointer-events: none;
    filter: blur(40px);
}

.referanslar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.referans-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.referans-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 20px rgba(48,158,145,0.15), 0 0 0 1px rgba(48,158,145,0.3);
}

.referans-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.referans-item .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 0;
    border: none;
    background: var(--gray-200);
    transition: transform 0.5s ease;
}

.referans-item:hover img,
.referans-item:hover .image-placeholder { transform: scale(1.1); filter: brightness(0.85) saturate(1.1); }

.referans-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,22,41,0.85) 0%, rgba(15,22,41,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.referans-overlay h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.referans-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.referans-overlay .referans-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(48,158,145,0.3);
}


/* --- Logos Slider (LIGHT background) --- */
.logos-section {
    background: #0e0c15;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logos-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 48px;
    animation: slide 30s linear infinite;
    width: max-content;
}

.logo-item { flex-shrink: 0; }

.logo-placeholder {
    width: 140px; height: 60px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

.brand-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,0.5);
    opacity: 0.85;
    transition: all 0.5s ease;
    user-select: none;
}

.brand-logo svg {
    display: block;
}

.brand-logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logo-text {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-logo:hover {
    opacity: 1;
    color: var(--white);
    transform: scale(1.08);
}

.brand-logo:hover .brand-logo-text {
    color: #fff;
}

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


/* --- CTA Section (DARK) --- */
.cta-section {
    text-align: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(48,158,145,0.06) 0%, transparent 70%);
}

.cta-content { position: relative; }

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}

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


/* --- Footer NEW (photoboothturkiye style) --- */
.footer-new {
    background: #0a0818;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 44px;
    color: var(--white);
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 36px;
}

/* Sol kolon: Bize Ulaşın */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-heading-line {
    width: 40px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 14px 0 20px;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-contact-col:hover .footer-heading-line {
    width: 70px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(-1px 0 0 rgba(0,0,0,0.2))
           drop-shadow(0 1px 0 rgba(0,0,0,0.2))
           drop-shadow(0 -1px 0 rgba(0,0,0,0.2));
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-info-item:hover {
    background: rgba(48,158,145,0.08);
    transform: translateX(4px);
}

.footer-info-item svg {
    flex-shrink: 0;
    color: var(--gold);
}

.footer-info-item a {
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.footer-info-item a:hover {
    color: var(--gold);
}

.footer-social-row {
    display: flex;
    gap: 8px;
}

.footer-social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 8px 20px rgba(48,158,145,0.35);
}

/* Sağ kolon: Instagram Feed */
.footer-ig-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-ig-header span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.footer-ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-ig-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.footer-ig-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48,158,145,0.3), rgba(15,22,41,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.footer-ig-item:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.footer-ig-item:hover::after { opacity: 1; }

.footer-ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.footer-ig-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.9);
}

.footer-ig-hashtag {
    margin-top: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.footer-ig-hashtag a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition);
}

.footer-ig-hashtag a:hover {
    color: var(--gold-dark);
}

/* Alt bar */
.footer-bar {
    background: #08060f;
    padding: 12px 0;
}

.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
}

.footer-bar-links {
    display: flex;
    gap: 24px;
}

.footer-bar-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.footer-bar-links a:hover {
    color: var(--gold);
}

/* Eski footer (compat, artık kullanılmıyor) */
.footer .logo-img { height: 45px; }


/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

.phone-float {
    position: fixed;
    bottom: 100px; right: 28px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(48,158,145,0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse-phone 2s infinite;
}

.phone-float:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 32px rgba(48,158,145,0.6);
    animation: none;
}

.phone-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 4px 16px rgba(48,158,145,0.4); }
    50% { box-shadow: 0 4px 24px rgba(48,158,145,0.6), 0 0 0 8px rgba(48,158,145,0.1); }
}


/* --- Page Header (Subpages - DARK) --- */
.page-header {
    position: relative;
    background: var(--navy);
    padding: 140px 0 60px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-header-bg .image-placeholder {
    width: 100%; height: 100%;
    border-radius: 0; border: none;
    background: var(--navy-light);
    color: rgba(255,255,255,0.1);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 22, 41, 0.85);
}

.page-header-content { position: relative; }

.page-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto;
}


/* --- Services Detail --- */
.services-detail .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.services-detail .service-row:last-child { border-bottom: none; }
.services-detail .service-row.reverse { direction: rtl; }
.services-detail .service-row.reverse > * { direction: ltr; }

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(48,158,145,0.15);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.service-row-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.service-row-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features { list-style: none; margin-bottom: 28px; }

.service-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.service-row-img .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
}


/* --- Booth Cards Grid --- */
.booth-cards-section {
    background: #100a18;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.booth-cards-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,50,180,0.25) 0%, rgba(180,40,160,0.08) 40%, transparent 70%);
    top: -15%;
    left: -20%;
    animation: float-orb 16s ease-in-out infinite;
    pointer-events: none;
    filter: blur(50px);
}
.booth-cards-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,40,80,0.18) 0%, rgba(255,50,100,0.05) 40%, transparent 60%);
    bottom: -10%;
    right: -10%;
    animation: float-orb 20s ease-in-out infinite reverse;
    pointer-events: none;
    filter: blur(50px);
}

/* Section Header */
.booth-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.booth-header-line {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 28px;
    border-radius: 2px;
}

.booth-section-header h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.booth-section-header h1 span {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.booth-section-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.booth-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.booth-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 20px 20px 28px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 15px rgba(48,158,145,0.05);
    will-change: transform;
    border: 2px solid rgba(48,158,145,0.15);
    position: relative;
}

.booth-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background:
        radial-gradient(circle at 10% 15%, rgba(255,40,100,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 25%, rgba(180,50,200,0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255,80,150,0.07) 0%, transparent 50%),
        radial-gradient(circle at 25% 55%, rgba(200,40,180,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 75%, rgba(255,60,120,0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.booth-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(48,158,145,0.6), rgba(48,158,145,0.9), rgba(48,158,145,0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.booth-card:hover::after { opacity: 1; }

.booth-card:hover,
.booth-card:hover:nth-child(even) {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 10px 28px rgba(48,158,145,0.3), 0 0 0 2px rgba(48,158,145,0.5);
    border-color: var(--gold);
}

.booth-card-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.booth-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booth-card:hover .booth-card-img img {
    transform: scale(1.08);
}

.booth-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    font-style: italic;
    letter-spacing: -0.3px;
}

.booth-card-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 16px;
    border-radius: 2px;
    transition: width var(--transition);
}

.booth-card:hover .booth-card-divider {
    width: 80px;
}

.booth-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition), letter-spacing var(--transition);
}

.booth-card-link:hover {
    color: var(--gold);
    letter-spacing: 3px;
}

/* --- Lavender background for subpages --- */
.lavender-bg {
    background: #0e0c15;
}

.lavender-bg .contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.lavender-bg .contact-card {
    background: var(--white);
}

.lavender-bg .contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}


/* --- Contact Page (Premium) --- */
.contact-section {
    background: #0e0c15 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(48,158,145,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 15px rgba(48,158,145,0.05);
}

.contact-form-wrapper h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-desc { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.required { color: #e74c3c; }
.optional { color: var(--gray-500); font-weight: 400; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--gray-300);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 0 0 4px rgba(48,158,145,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

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

.btn-submit {
    align-self: flex-start;
    min-width: 180px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(48,158,145,0.3);
}

.btn-submit:hover {
    box-shadow: 0 6px 24px rgba(48,158,145,0.4);
}

.contact-info { display: flex; flex-direction: column; gap: 10px; }

.contact-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid rgba(48,158,145,0.15);
    border-radius: 12px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-card:hover {
    border-color: rgba(48,158,145,0.4);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 20px rgba(48,158,145,0.15);
    transform: translateY(-6px) scale(1.02);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-bg { background: #25d366; }
.instagram-bg { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.email-bg { background: var(--navy); }
.phone-bg { background: var(--gold); }

.contact-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.contact-card p { font-size: 0.75rem; color: var(--text-light); margin-bottom: 3px; }

.contact-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    transition: color var(--transition);
}

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


/* --- Notification --- */
.notification {
    position: fixed;
    top: 20px; right: 20px;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show { transform: translateX(0); }
.notification-success { background: #25d366; color: white; }
.notification-error { background: #e74c3c; color: white; }


/* --- Keyframe Animations --- */
@keyframes shimmer-text {
    0% { background-position: 0% center; }
    50% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

@keyframes line-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

@keyframes border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* --- Why Us Section --- */
.why-us-section {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(48,158,145,0.12);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card:hover {
    background: rgba(48,158,145,0.06);
    border-color: rgba(48,158,145,0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(48,158,145,0.15);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(48,158,145,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-us-card:hover .why-us-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(48,158,145,0.35);
}

.why-us-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.why-us-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}


/* --- Fade-up Animations --- */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Hover transform'un fade-up.visible tarafından ezilmesini engelle */
.service-card.fade-up.visible:hover,
.booth-card.fade-up.visible:hover {
    transform: translateY(-14px) scale(1.04);
}



/* --- Mobile Menu Overlay --- */
.nav-overlay {
    display: none !important;
}

/* --- Logo slider pause on hover --- */
.logos-slider:hover .logos-track {
    animation-play-state: paused;
}


/* --- Service Detail Page (Compact) --- */
.sd-top {
    padding: 110px 0 0;
    background: #0e0c15;
}

.sd-breadcrumb {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.sd-breadcrumb a { color: rgba(255,255,255,0.5); }
.sd-breadcrumb a:hover { color: var(--gold); }
.sd-breadcrumb span { color: var(--gold); font-weight: 600; }

.sd-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 56px;
}

.sd-intro-text .sd-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.sd-intro-text h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.sd-intro-text .sd-tagline {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
}

.sd-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.sd-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.sd-specs li .sd-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-specs li .sd-check svg { color: var(--navy); }

.sd-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sd-intro-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

.sd-intro-img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(48,158,145,0.1);
}

.sd-intro-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-intro-img:hover img {
    transform: scale(1.04);
}

/* Galeri */
.sd-gallery {
    padding: 56px 0;
    background: #0e0c15;
}

.sd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sd-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.sd-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.sd-gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.sd-gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.88) saturate(1.1);
}

/* CTA */
.sd-cta {
    background: var(--navy);
    padding: 48px 0;
}

.sd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sd-cta-inner h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.sd-cta-inner h2 span { color: var(--gold); }

.sd-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Diğer hizmetler */
.sd-others {
    padding: 56px 0;
    background: #0e0c15;
}

.sd-others-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.sd-other-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(48,158,145,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sd-other-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(48,158,145,0.15);
    border-color: rgba(48,158,145,0.4);
    background: var(--white);
}

.sd-other-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sd-other-card h4 {
    padding: 12px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}

/* --- DEPRECATED (eski detay sayfası stilleri, uyumluluk) --- */
.service-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}

.service-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,22,41,0.95) 0%, rgba(15,22,41,0.4) 50%, rgba(15,22,41,0.2) 100%);
}

.service-detail-hero-content {
    position: relative;
    padding: 0 0 60px;
    width: 100%;
}

.service-detail-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.service-detail-breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

.service-detail-breadcrumb span { color: var(--gold); }

.service-detail-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-detail-hero .hero-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    line-height: 1.7;
}

.service-features-section {
    padding: 80px 0;
    background: #0e0c15;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(48,158,145,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-feature-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(48,158,145,0.15);
    border-color: rgba(48,158,145,0.4);
    transform: translateY(-4px);
}

.service-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.service-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.service-feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-highlight {
    background: var(--navy);
    padding: 80px 0;
}

.service-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-highlight-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.service-highlight-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.service-highlight-list li svg { flex-shrink: 0; color: var(--gold); }

.service-highlight-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-highlight-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-cta-banner {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
}

.service-cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-cta-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

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

.other-services-section {
    padding: 80px 0;
    background: #0e0c15;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.other-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(48,158,145,0.15);
}

.other-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(48,158,145,0.15);
    border-color: rgba(48,158,145,0.4);
}

.other-service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.other-service-card-body { padding: 16px; }

.other-service-card-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.other-service-card-body a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.other-service-card-body a:hover { color: var(--gold-dark); }


/* --- Responsive --- */
@media (max-width: 1024px) {
    .section-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .booth-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .referanslar-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }

    /* Service detail compact - tablet */
    .sd-intro { grid-template-columns: 1fr; gap: 32px; }
    .sd-others-grid { grid-template-columns: repeat(2, 1fr); }
    .sd-cta-inner { flex-direction: column; text-align: center; }

    /* New footer - tablet */
    .footer-new-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Logo slider - tablet */
    .logos-track { gap: 36px; }
    .brand-logo { height: 75px; gap: 10px; }
    .brand-logo svg { transform: scale(1.25); }
}

@media (max-width: 768px) {
    .logo-img { height: 45px; }
    .header.scrolled .logo-img { height: 40px; }
    .nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: auto;
        width: auto;
        background: transparent;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        padding: 12px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, transform 0.3s ease;
        z-index: 1001;
    }

    .nav.open {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav .nav-link,
    .nav .nav-btn {
        min-width: 160px;
        text-align: center;
        justify-content: center;
        font-size: 0.82rem !important;
        padding: 14px 22px !important;
        box-shadow: 0 4px 16px rgba(48,158,145,0.3) !important;
    }

    .hamburger { display: flex; }
    .hamburger.active span { background: var(--gold) !important; }

    /* Tüm kartlar 2'li grid */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card:hover,
    .service-card:hover:nth-child(even),
    .booth-card:hover,
    .booth-card:hover:nth-child(even) {
        transform: translateY(-6px) scale(1.02);
    }
    .booth-cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .booth-cards-section { padding: 80px 0 60px; }
    .other-services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-highlight-grid { grid-template-columns: 1fr; gap: 32px; }

    .hero { height: 90vh; min-height: 380px; }
    .hero-title { font-size: 1.5rem; letter-spacing: 1px; }
    .hero-line { display: none; }
    .hero-title-wrap { gap: 0; justify-content: center; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 1.5px; }
    .hero-content { padding: 0 20px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .header-inner { padding: 0 16px; }

    .section { padding: 20px 0; }
    .section-header { margin-bottom: 14px; }
    .section-tag { font-size: 0.75rem; margin-bottom: 4px; }
    .section-title { margin-bottom: 4px; }
    .section-subtitle { font-size: 0.8rem; margin-top: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none !important; }
    .referanslar-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-us-card { padding: 24px 20px; }
    .why-us-section { padding: 40px 0; }
    .referans-overlay {
        opacity: 1;
        inset: auto 0 0 0;
        background: linear-gradient(to top, rgba(15,22,41,0.9) 0%, rgba(15,22,41,0.4) 80%, transparent 100%);
        padding: 12px 14px;
    }
    .referans-overlay h3 { font-size: 0.85rem; margin-bottom: 2px; }
    .referans-overlay p { font-size: 0.7rem; }
    .referans-overlay .referans-tag { font-size: 0.6rem; padding: 3px 8px; margin-bottom: 4px; }

    .services-detail .service-row,
    .services-detail .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

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

    /* Service detail compact - mobile */
    .sd-top { padding: 90px 0 0; }
    .sd-gallery { padding: 40px 0; }
    .sd-gallery-grid { grid-template-columns: 1fr; gap: 8px; }
    .sd-cta { padding: 36px 0; }
    .sd-cta-btns { flex-direction: column; width: 100%; }
    .sd-cta-btns .btn { width: 100%; }
    .sd-others { padding: 40px 0; }
    .sd-others-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sd-other-card img { height: 110px; }
    .sd-cta-row { flex-direction: column; }
    .sd-cta-row .btn { width: 100%; text-align: center; padding: 12px 20px; }

    /* New footer - mobile */
    .footer-new { padding-top: 40px; }
    .footer-new-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bar-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bar-links { gap: 16px; }

    /* Logo slider - mobile */
    .logos-section { padding: 40px 0; }
    .logos-track { gap: 28px; animation-duration: 20s; }
    .brand-logo { height: 68px; gap: 8px; }
    .brand-logo img { max-height: 42px; }
    .brand-logo-text { font-size: 0.9rem; letter-spacing: 1px; }
    .brand-logo svg { transform: scale(1.05); }

    /* Form button full width */
    .btn-submit { width: 100%; align-self: stretch; }

    /* Notification mobile */
    .notification {
        left: 16px; right: 16px;
        max-width: none;
        text-align: center;
    }

    /* Contact section mobile padding */
    .contact-section { padding-top: 100px !important; }
    .lavender-bg .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: none; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .referanslar-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Logo slider - small mobile */
    .logos-track { gap: 20px; animation-duration: 15s; }
    .brand-logo { height: 60px; gap: 6px; }
    .brand-logo img { max-height: 36px; }
    .brand-logo-text { font-size: 0.78rem; letter-spacing: 0.5px; }
    .brand-logo svg { transform: scale(0.9); }

    /* Hero fine-tuning */
    .hero { height: 70vh; min-height: 320px; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; margin-bottom: 20px; }
    .hero-title { font-size: 1.3rem; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 1px; line-height: 1.6; }

    /* Section headers & padding smaller */
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: 1.4rem; }

    /* New footer - small mobile */
    .footer-ig-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-heading { font-size: 1.2rem; }
    .footer-logo img { height: 55px; }

    /* Service detail compact - small mobile */
    .sd-gallery-grid { grid-template-columns: 1fr; }
    .sd-others-grid { grid-template-columns: 1fr; }

    /* WhatsApp button smaller on mobile */
    .whatsapp-float { width: 48px; height: 48px; bottom: 24px; right: 14px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .phone-float { width: 48px; height: 48px; bottom: 82px; right: 14px; }
    .phone-float svg { width: 22px; height: 22px; }

    /* Booth cards compact */
    .booth-card { padding: 16px 16px 24px; }
    .booth-card-img img { height: 220px; }
    .booth-card h3 { font-size: 1.2rem; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


