/* ========== KAYA CITY DEKORASYON - PREMIUM DARK THEME ========== */
:root {
    --bg-primary: #0a0a14;
    --bg-secondary: #0f0f1e;
    --bg-card: #13132a;
    --bg-glass: rgba(255,255,255,0.03);
    --gold: #c9a44e;
    --gold-light: #d4b96a;
    --gold-dark: #a8873a;
    --gold-glow: rgba(201,164,78,0.15);
    --gold-gradient: linear-gradient(135deg, #c9a44e 0%, #d4b96a 50%, #c9a44e 100%);
    --white: #ffffff;
    --text: rgba(255,255,255,0.88);
    --text-muted: rgba(255,255,255,0.5);
    --border: rgba(255,255,255,0.06);
    --border-gold: rgba(201,164,78,0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-gold: 0 8px 32px rgba(201,164,78,0.12);
    --shadow-dark: 0 16px 48px rgba(0,0,0,0.4);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 36px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; cursor: pointer; transition: all var(--transition);
    border: 2px solid transparent; position: relative; overflow: hidden;
}
.btn-gold {
    background: var(--gold-gradient); color: #0a0a14;
    border-color: var(--gold); font-weight: 700;
}
.btn-gold::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,164,78,0.4);
}
.btn-outline {
    background: transparent; color: var(--gold);
    border-color: var(--border-gold);
}
.btn-outline:hover {
    background: rgba(201,164,78,0.1); border-color: var(--gold);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
#header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 18px 0; transition: all var(--transition);
}
#header.scrolled {
    background: rgba(10,10,20,0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3); padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; z-index: 10; }
.logo-img { height: 48px; width: auto; }
#header.scrolled .logo-img { height: 40px; }
.logo-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gold-gradient); color: #0a0a14;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700;
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700; color: var(--white);
    line-height: 1; display: flex; flex-direction: column;
    text-transform: uppercase; text-align: center; align-items: center;
}
.logo-top {
    font-size: 1.4rem; letter-spacing: 2px;
}
.logo-text .gold {
    background: linear-gradient(135deg, #c9a44e, #e8d5a3, #c9a44e);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text .deko {
    font-size: 0.6rem; color: rgba(255,255,255,0.5);
    letter-spacing: 4.5px; font-weight: 500;
    margin-top: 2px;
}

#nav { display: flex; gap: 36px; }
#nav a {
    color: rgba(255,255,255,0.7); font-weight: 500; font-size: 0.9rem;
    position: relative; padding: 4px 0; letter-spacing: 0.3px;
}
#nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold-gradient);
    transition: width var(--transition); border-radius: 2px;
}
#nav a:hover { color: var(--white); }
#nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gold-gradient); color: #0a0a14 !important;
    padding: 10px 22px; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; gap: 6px;
    transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.hamburger {
    display: none; background: none; cursor: pointer;
    width: 30px; height: 22px; position: relative; z-index: 10;
}
.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--gold);
    position: absolute; left: 0; transition: all var(--transition); border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ========== HERO ========== */
#hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-primary); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,164,78,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,164,78,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(100,80,40,0.05) 0%, transparent 50%);
}
/* Animated floating orbs */
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.12; pointer-events: none;
}
.hero-orb-1 {
    width: 500px; height: 500px; top: -100px; right: -100px;
    background: radial-gradient(circle, #c9a44e, transparent 70%);
    animation: orb-float 18s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px; bottom: -50px; left: -50px;
    background: radial-gradient(circle, #c9a44e, transparent 70%);
    animation: orb-float 22s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px; height: 300px; top: 40%; left: 50%;
    background: radial-gradient(circle, #d4b96a, transparent 70%);
    animation: orb-float 15s ease-in-out infinite 3s;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
/* Grid pattern */
.hero-grid {
    position: absolute; inset: 0; opacity: 0.03;
    background-image:
        linear-gradient(rgba(201,164,78,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,164,78,0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    text-align: center; color: var(--white); position: relative; z-index: 2;
    padding: 140px 24px 100px; max-width: 800px;
}
.hero-logo { max-height: 180px; margin: 0 auto 40px; }
.hero-sub {
    text-transform: uppercase; letter-spacing: 6px; font-size: 0.82rem;
    color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-content h1 {
    font-family: var(--font-heading); font-size: 3.8rem;
    font-weight: 700; line-height: 1.15; margin-bottom: 24px;
}
.hero-content h1 em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 580px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll a { color: var(--gold); font-size: 1.1rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* ========== SECTION COMMON ========== */
section { padding: 110px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-sub {
    text-transform: uppercase; letter-spacing: 4px; font-size: 0.78rem;
    color: var(--gold); font-weight: 600; margin-bottom: 12px;
    display: inline-block;
}
.section-head h2 {
    font-family: var(--font-heading); font-size: 2.8rem;
    font-weight: 700; color: var(--white); line-height: 1.2;
}
.section-line {
    width: 60px; height: 3px; background: var(--gold-gradient);
    margin: 18px auto 0; border-radius: 3px;
}

/* ========== SERVICES ========== */
#hizmetler { background: var(--bg-secondary); }
.services-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.service-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    padding: 36px 24px; transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transform-style: preserve-3d;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201,164,78,0.08), transparent 60%);
    opacity: 0; transition: opacity 0.5s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201,164,78,0.08);
    border-color: var(--border-gold);
}
.service-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(201,164,78,0.08); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 22px;
    border: 1px solid rgba(201,164,78,0.15);
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold-gradient); color: #0a0a14;
    border-color: transparent; box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}
.service-card h3 {
    font-family: var(--font-heading); font-size: 1.1rem;
    font-weight: 600; margin-bottom: 12px; color: var(--white);
}
.service-card p {
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags li {
    padding: 4px 12px; border-radius: 50px; font-size: 0.7rem;
    background: rgba(201,164,78,0.06); color: var(--gold-light);
    border: 1px solid rgba(201,164,78,0.1); font-weight: 500;
}

/* ========== ABOUT ========== */
#hakkimizda { background: var(--bg-primary); }
.about-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-visual { position: relative; }
.about-img-box {
    border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
    border: 1px solid var(--border);
}
.about-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1923 50%, #1a1a2e 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--gold); gap: 14px;
}
.about-img-placeholder i { font-size: 3.5rem; opacity: 0.5; }
.about-img-placeholder span { font-size: 0.9rem; font-weight: 600; opacity: 0.5; }
.about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold-gradient); color: #0a0a14;
    padding: 26px; border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 12px 40px rgba(201,164,78,0.3);
}
.badge-num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; display: block; }
.badge-text { font-size: 0.78rem; font-weight: 600; line-height: 1.3; }

.about-text h2 {
    font-family: var(--font-heading); font-size: 2.6rem;
    font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.about-desc { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-stats {
    display: flex; gap: 36px; margin-top: 36px;
    padding-top: 36px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: block;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ========== NEDEN BİZ ========== */
#neden-biz {
    background: var(--bg-secondary); position: relative; overflow: hidden;
}
#neden-biz::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,164,78,0.05), transparent 70%);
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature {
    text-align: center; padding: 32px 20px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.feature:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 30px rgba(201,164,78,0.05);
}
.feature-icon {
    width: 72px; height: 72px; border-radius: 50%;
    border: 2px solid var(--border-gold); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 22px;
    transition: all var(--transition);
    position: relative;
}
.feature-icon::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    border: 1px solid rgba(201,164,78,0.08);
}
.feature:hover .feature-icon {
    background: var(--gold-gradient); color: #0a0a14; border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,164,78,0.3);
}
.feature h4 {
    font-family: var(--font-heading); font-size: 1.05rem;
    margin-bottom: 10px; color: var(--white);
}
.feature p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ========== GALLERY ========== */
#galeri { background: var(--bg-primary); }
.gallery-filters {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.gf-btn {
    padding: 9px 24px; border-radius: 50px; cursor: pointer;
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); font-weight: 500; font-size: 0.85rem;
    transition: all var(--transition);
}
.gf-btn:hover, .gf-btn.active {
    background: var(--gold-gradient); color: #0a0a14;
    border-color: var(--gold); font-weight: 600;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); transition: all var(--transition);
}
.gallery-item:hover { border-color: var(--border-gold); transform: scale(1.03); }
.gallery-placeholder {
    aspect-ratio: 4/3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    color: var(--text-muted); transition: all var(--transition);
    background: var(--bg-card);
}
.gallery-placeholder i { font-size: 2.2rem; color: var(--gold); opacity: 0.4; }
.gallery-placeholder span { font-size: 0.85rem; font-weight: 600; }
.gallery-note {
    text-align: center; margin-top: 28px;
    color: var(--text-muted); font-size: 0.85rem;
}

/* ========== CONTACT ========== */
#iletisim { background: var(--bg-secondary); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 {
    font-family: var(--font-heading); font-size: 2.6rem;
    font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.contact-desc { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item > i {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(201,164,78,0.08); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    border: 1px solid rgba(201,164,78,0.12);
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--white); }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 36px; }
.contact-social a {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid var(--border); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: all var(--transition);
}
.contact-social a:hover {
    background: var(--gold-gradient); color: #0a0a14; border-color: transparent;
    box-shadow: var(--shadow-gold); transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card); border-radius: var(--radius-lg);
    padding: 44px; border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.contact-form-wrap h3 {
    font-family: var(--font-heading); font-size: 1.5rem;
    margin-bottom: 28px; color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 15px 20px; border-radius: 12px;
    border: 1px solid var(--border); background: rgba(255,255,255,0.03);
    color: var(--white); font-size: 0.9rem;
    transition: all var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,164,78,0.1);
    background: rgba(201,164,78,0.03);
}
.form-group select {
    cursor: pointer; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a44e'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center;
}
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== FOOTER ========== */
footer {
    background: #060610; color: var(--text-muted); padding-top: 70px;
    border-top: 1px solid var(--border);
}
.footer-wrap {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { max-height: 60px; margin-bottom: 14px; }
.footer-brand {
    font-family: var(--font-heading); font-size: 1.1rem;
    font-weight: 700; color: var(--white); letter-spacing: 2px;
    margin-bottom: 12px; text-transform: uppercase;
}
.footer-brand span {
    background: linear-gradient(135deg, #c9a44e, #e8d5a3, #c9a44e);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
    color: var(--white); font-size: 1rem; font-weight: 600;
    margin-bottom: 22px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li { font-size: 0.88rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li i { margin-right: 8px; color: var(--gold); font-size: 0.85rem; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0; text-align: center; font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
}

/* ========== LANGUAGE SWITCHER ========== */
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher { position: relative; }
.lang-btn {
    background: rgba(255,255,255,0.06); border: 1px solid var(--border);
    border-radius: 50%; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--border-gold); background: rgba(201,164,78,0.08); }
.lang-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: rgba(15,15,30,0.98); backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: var(--radius);
    min-width: 170px; padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.3s ease; z-index: 1001;
    box-shadow: var(--shadow-dark);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px; font-size: 0.88rem;
    color: var(--text-muted); transition: all 0.2s; cursor: pointer;
}
.lang-option:hover { background: rgba(201,164,78,0.08); color: var(--white); }
.lang-option.active { color: var(--gold); font-weight: 600; }
.lang-flag { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; }
.lang-btn img { border-radius: 3px; }

/* ========== RTL SUPPORT (Arabic) ========== */
html[dir="rtl"] { direction: rtl; }
html[dir="rtl"] .nav-wrap { flex-direction: row-reverse; }
html[dir="rtl"] #nav { flex-direction: row-reverse; }
html[dir="rtl"] .nav-right { flex-direction: row-reverse; }
html[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .contact-item > i { margin-left: 16px; margin-right: 0; }
html[dir="rtl"] .footer-wrap { direction: rtl; }
html[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }
html[dir="rtl"] .footer-col ul li i { margin-right: 0; margin-left: 8px; }
html[dir="rtl"] .about-badge { right: auto; left: -20px; }
html[dir="rtl"] .about-wrap { direction: rtl; }
html[dir="rtl"] .hero-content, html[dir="rtl"] .section-head { direction: rtl; }
html[dir="rtl"] .service-tags { direction: rtl; }
html[dir="rtl"] .form-group select {
    background-position: left 18px center;
    padding-left: 36px; padding-right: 14px;
}
html[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

@media (max-width: 768px) {
    html[dir="rtl"] #nav { right: auto; left: -100%; border-left: none; border-right: 1px solid var(--border); }
    html[dir="rtl"] #nav.open { left: 0; }
    html[dir="rtl"] .about-badge { left: 10px; }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 64px; height: 64px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all var(--transition);
    animation: wp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
@keyframes wp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ========== SCROLL ANIMATIONS ========== */
[data-anim] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
[data-anim].anim-visible { opacity: 1; transform: translateY(0); }
.service-card[data-anim] { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-logo { max-height: 120px; }
    section { padding: 80px 0; }
    .section-head h2, .about-text h2, .contact-info h2 { font-size: 2rem; }

    /* Mobile Nav */
    #nav {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: rgba(10,10,20,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 100px 40px 40px; gap: 28px;
        transition: right var(--transition);
        border-left: 1px solid var(--border);
    }
    #nav.open { right: 0; }
    #nav a { color: rgba(255,255,255,0.8) !important; font-size: 1.15rem; }
    .nav-cta { display: none; }
    .nav-right { gap: 8px; }
    .nav-right .lang-switcher { order: -1; }
    .hamburger { display: block; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { bottom: 10px; right: 10px; padding: 18px; }
    .about-stats { gap: 24px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-wrap { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-desc { font-size: 0.92rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 16px; }
    .footer-wrap { grid-template-columns: 1fr; }
}
