/* =============================================
   YARIMADA HIRDAVAT - Design System & Styles
   Light/Dark Theme with Toggle
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── LIGHT THEME (Default) ── */
:root {
    --clr-bg-dark: #f5f2ed;
    --clr-bg-section: #ffffff;
    --clr-bg-card: #ffffff;
    --clr-surface: #f0ebe4;
    --clr-accent: #d97b1a;
    --clr-accent-hover: #c06a10;
    --clr-accent-dark: #b35f0f;
    --clr-text: #3d3629;
    --clr-text-muted: #7a7265;
    --clr-text-heading: #1a1408;
    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-glass: rgba(255, 255, 255, 0.8);
    --clr-glass-border: rgba(0, 0, 0, 0.06);
    --clr-overlay: rgba(255, 255, 255, 0.55);
    --clr-success: #16a34a;
    --clr-error: #dc2626;
    --clr-shadow: rgba(0, 0, 0, 0.08);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(217, 123, 26, 0.1);
    --shadow-btn: 0 4px 16px rgba(217, 123, 26, 0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --hero-gradient: linear-gradient(135deg, #f5f2ed 0%, #ede6da 100%);
    --nav-scrolled-bg: rgba(255, 255, 255, 0.92);
    --input-bg: #f5f2ed;
    --map-filter: grayscale(0.1) contrast(1.05);
}

/* ── DARK THEME ── */
[data-theme="dark"] {
    --clr-bg-dark: #1a1a1a;
    --clr-bg-section: #111111;
    --clr-bg-card: #1e1e1e;
    --clr-surface: #252525;
    --clr-accent: #e8922f;
    --clr-accent-hover: #f5a74a;
    --clr-accent-dark: #c47520;
    --clr-text: #f0ebe4;
    --clr-text-muted: #9a958d;
    --clr-text-heading: #ffffff;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-glass: rgba(30, 30, 30, 0.7);
    --clr-glass-border: rgba(255, 255, 255, 0.1);
    --clr-overlay: rgba(0, 0, 0, 0.55);
    --clr-success: #4ade80;
    --clr-error: #f87171;
    --clr-shadow: rgba(0, 0, 0, 0.35);

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(232, 146, 47, 0.15);
    --shadow-btn: 0 4px 16px rgba(232, 146, 47, 0.3);

    --hero-gradient: linear-gradient(135deg, #0d0d0d 0%, #1a1510 100%);
    --nav-scrolled-bg: rgba(17, 17, 17, 0.92);
    --input-bg: #252525;
    --map-filter: grayscale(0.3) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ── Section Headings ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 123, 26, 0.1);
    color: var(--clr-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-badge i {
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--clr-accent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* =============================================
   THEME TOGGLE
   ============================================= */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 3px;
    transition: all var(--transition);
}

.theme-toggle:hover {
    border-color: var(--clr-accent);
}

.theme-toggle-ball {
    width: 22px;
    height: 22px;
    background: var(--clr-accent);
    border-radius: 50%;
    transition: transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
}

[data-theme="dark"] .theme-toggle-ball {
    transform: translateX(24px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 12px 0;
    box-shadow: 0 4px 30px var(--clr-shadow);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.navbar-logo-text .brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--clr-text-heading);
    letter-spacing: 0.5px;
}

.navbar-logo-text .brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--clr-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-text-heading);
    background: rgba(217, 123, 26, 0.06);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--clr-accent) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    margin-left: 8px;
    box-shadow: var(--shadow-btn);
}

.nav-cta:hover {
    background: var(--clr-accent-hover) !important;
    transform: translateY(-1px);
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero-gradient);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 123, 26, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 123, 26, 0.08);
    border: 1px solid rgba(217, 123, 26, 0.15);
    color: var(--clr-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--clr-text-heading);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-title .accent {
    color: var(--clr-accent);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-accent);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 123, 26, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1.5px solid var(--clr-border);
}

.btn-outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: rgba(217, 123, 26, 0.04);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, var(--clr-accent), transparent 60%);
    z-index: -1;
    opacity: 0.4;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--clr-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(217, 123, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.2rem;
}

.hero-floating-card .card-text {
    font-size: 0.82rem;
}

.hero-floating-card .card-text strong {
    display: block;
    color: var(--clr-text-heading);
    font-weight: 700;
}

.hero-floating-card .card-text span {
    color: var(--clr-text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--clr-bg-section);
    position: relative;
}

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

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-image-grid img {
    border-radius: var(--radius-md);
    object-fit: cover;
    width: 100%;
    height: 200px;
    transition: transform var(--transition);
}

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

.about-image-grid img:first-child {
    grid-row: span 2;
    height: 100%;
}

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

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(217, 123, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.2rem;
}

.about-feature .feature-text h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 4px;
    font-size: 1rem;
}

.about-feature .feature-text p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--clr-bg-dark);
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 123, 26, 0.15);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(217, 123, 26, 0.12), rgba(217, 123, 26, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--clr-text-heading);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* =============================================
   PROMOTIONS / KAMPANYALAR
   ============================================= */
.promotions {
    background: var(--clr-bg-section);
}

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

.promo-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.promo-card .promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--clr-accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    z-index: 2;
}

.promo-card .promo-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(217, 123, 26, 0.08), rgba(217, 123, 26, 0.02));
    font-size: 3.5rem;
    color: var(--clr-accent);
}

.promo-card .promo-content {
    padding: 24px;
}

.promo-card .promo-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-text-heading);
    margin-bottom: 8px;
}

.promo-card .promo-content p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.promo-card .promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
}

.promo-card .promo-footer .price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-accent);
}

.promo-card .promo-footer .old-price {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.promo-card .promo-footer .promo-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.promo-card:hover .promo-footer .promo-cta {
    gap: 8px;
}

/* =============================================
   BRANDS
   ============================================= */
.brands {
    background: var(--clr-bg-dark);
    padding: 70px 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    animation: scroll-brands 35s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 72px;
    margin: 0 14px;
    padding: 14px 28px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.brand-item:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.brand-item span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--transition);
}

.brand-item:hover span {
    color: var(--clr-text-heading);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: var(--clr-bg-section);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.gallery-item:first-child img {
    height: 360px;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(4) img {
    height: 280px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    background: var(--clr-bg-dark);
}

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

.testimonial-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(217, 123, 26, 0.15);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--clr-accent);
    opacity: 0.3;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--clr-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: var(--clr-accent);
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author .author-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    font-size: 0.9rem;
}

.testimonial-author .author-role {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

/* =============================================
   REFERENCES
   ============================================= */
.references {
    background: var(--clr-bg-section);
}

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

.reference-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.reference-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.reference-card .reference-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.reference-card .reference-overlay h3 {
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.reference-card .reference-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.reference-card .reference-overlay .ref-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--clr-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 10px;
    width: fit-content;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background: var(--clr-bg-dark);
}

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

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

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(217, 123, 26, 0.2);
    box-shadow: var(--shadow-glow);
}

.contact-card .card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(217, 123, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--clr-accent);
}

.contact-card a:hover {
    color: var(--clr-accent-hover);
}

.hours-table {
    width: 100%;
    margin-top: 6px;
}

.hours-table tr td {
    padding: 3px 0;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.hours-table tr td:last-child {
    text-align: right;
    color: var(--clr-text);
    font-weight: 500;
}

/* Contact & Quote Form */
.contact-form-wrapper,
.quote-form-wrapper {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form-wrapper h3,
.quote-form-wrapper h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--clr-text-heading);
    margin-bottom: 8px;
}

.contact-form-wrapper>p,
.quote-form-wrapper>p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(217, 123, 26, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-muted);
    opacity: 0.6;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    margin-top: 4px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

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

.form-success i {
    font-size: 2rem;
    color: var(--clr-success);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--clr-success);
    font-weight: 600;
}

/* Quote form section */
.quote-section {
    background: var(--clr-bg-section);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

.quote-benefit .benefit-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(217, 123, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.quote-benefit h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.quote-benefit p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* =============================================
   MAP
   ============================================= */
.map-section {
    background: var(--clr-bg-dark);
    padding: 0;
    position: relative;
}

.map-container {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 24px;
    border: 1px solid var(--clr-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info-card {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--clr-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 320px;
    box-shadow: var(--shadow-card);
    z-index: 2;
}

.map-info-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.map-info-card p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.map-info-card .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 20px;
    background: var(--clr-accent);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.map-info-card .directions-btn:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--clr-bg-section);
    border-top: 1px solid var(--clr-border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
}

.footer-brand .navbar-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-accent);
    padding-left: 6px;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--clr-accent);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--clr-accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.newsletter-form button:hover {
    background: var(--clr-accent-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

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

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

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

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* =============================================
   KVKK / COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    box-shadow: 0 -4px 30px var(--clr-shadow);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    max-width: 700px;
    line-height: 1.6;
}

.cookie-banner p a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie-accept {
    padding: 10px 24px;
    background: var(--clr-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-banner .btn-cookie-accept:hover {
    background: var(--clr-accent-hover);
}

.cookie-banner .btn-cookie-reject {
    padding: 10px 24px;
    background: transparent;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-banner .btn-cookie-reject:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

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

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

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--nav-scrolled-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        border-left: 1px solid var(--clr-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-floating-card {
        display: none;
    }

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

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

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

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

    .gallery-item:first-child,
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item:first-child img,
    .gallery-item:nth-child(4) img {
        height: 240px;
    }

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

    .map-container {
        height: 350px;
        margin: 0 16px;
    }

    .map-info-card {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        margin: 0 16px 16px;
    }

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

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

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

    .about-image-grid img:first-child {
        grid-row: span 1;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

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

    .whatsapp-tooltip {
        display: none;
    }
}

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

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 64px;
    }

    .contact-form-wrapper,
    .quote-form-wrapper {
        padding: 24px;
    }
}