/* ================================================================
   VELORA Premium Beauty – index.css   Light Theme / Rose-Pink Brand
   ================================================================ */

:root {
    --gold:         #d4638a;
    --gold-light:   #f5b8cc;
    --gold-dark:    #b34870;
    --gold-glow:    rgba(212, 100, 138, 0.10);
    --bg:           #ffffff;
    --bg-surface:   #fdf5f8;
    --bg-card:      #ffffff;
    --text:         #1c1215;
    --text-muted:   #705a64;
    --text-dim:     #a08090;
    --border:       rgba(0,0,0,0.09);
    --border-gold:  rgba(212, 100, 138, 0.25);
    --radius-sm:    10px;
    --radius-md:    18px;
    --radius-lg:    28px;
    --font-head:    'Playfair Display', serif;
    --font-body:    'Outfit', sans-serif;
    --nav-h:        95px;
    --nav-h-scrolled: 80px;
    --transition:   0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    height: var(--nav-h-scrolled);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 var(--border-gold), 0 4px 24px rgba(0,0,0,0.07);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    gap: 1.5rem;
}
/* Logo – Vertical Stacked Layout */
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 5px 0;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* White background for visibility */
    border-radius: 50%;
    width: 72px;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
    transition: all var(--transition);
}
.navbar.scrolled .logo-wrapper {
    width: 60px;
    height: 60px;
}
.logo-wrapper:hover { 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); 
    transform: scale(1.05);
}
.logo-img { 
    height: 100%; 
    width: 200%; /* Scale to focus on the 'V' symbol */
    object-fit: cover;
    object-position: 15% center; /* Focus on the symbol on the left */
}
.nav-logo:hover .logo-img { transform: scale(1.08); }

/* Nav links */
.nav-links { display: flex; gap: 0.5rem; align-items: center; }
.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    letter-spacing: 0.3px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Nav dropdown */
.nav-item-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block; padding: 0.8rem 1.2rem;
    font-size: 0.95rem; font-weight: 400; color: var(--text-muted);
    transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--gold); background: var(--pink-light); }
@media (min-width: 861px) {
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
}

/* Language switcher */
.lang-switcher {
    display: flex; align-items: center; gap: 2px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
    background: var(--gold-glow);
}
.lang-btn {
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
    color: var(--text-muted);
    padding: 3px 7px; border-radius: 6px;
    border: none; cursor: pointer; background: none;
    transition: all var(--transition);
}
.lang-btn.active { color: #fff; background: var(--gold); }
.lang-btn:hover:not(.active) { color: var(--gold); }
.lang-divider { color: var(--border-gold); font-size: 0.75rem; user-select: none; }

/* CTA button in nav */
.nav-cta {
    display: flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-weight: 600; font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition); white-space: nowrap;
    box-shadow: 0 4px 16px rgba(212, 100, 138, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 100, 138, 0.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   SHARED UTILITIES
   ================================================================ */
.section-container { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem; padding: 5px 14px;
    border: 1px solid var(--border-gold); border-radius: 20px;
    background: var(--gold-glow);
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
    color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: 15px 30px; border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(212, 100, 138, 0.3);
    cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 100, 138, 0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #f8f3f5;
    font-family: var(--font-body); font-weight: 500; font-size: 1rem;
    padding: 14px 28px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 100, 138, 0.12); gap: 14px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }

@keyframes fadeUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.4s ease;
    animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-bg-img.active { opacity: 1; }
@keyframes kenBurns {
    from { transform: scale(1.06) translate(0, 0); }
    to   { transform: scale(1.12) translate(-1%, -0.5%); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(9, 9, 12, 0.93) 0%,
        rgba(9, 9, 12, 0.75) 45%,
        rgba(9, 9, 12, 0.50) 75%,
        rgba(9, 9, 12, 0.70) 100%
    );
}
.hero-content {
    position: relative; z-index: 3;
    max-width: 1300px; margin: 0 auto;
    padding: 0 2.5rem;
    padding-top: var(--nav-h);
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 16px 6px 10px; border-radius: 20px;
    background: var(--gold-glow);
    margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.8s forwards 0.4s;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 100, 138, 0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(212, 100, 138, 0); }
}
.hero-title {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700; line-height: 1.08;
    margin-bottom: 1.5rem; max-width: 900px;
}
/* Hero title text is ALWAYS white — it sits over dark overlay */
.title-light {
    display: block;
    color: #f8f3f5;
    opacity: 0; animation: fadeUp 0.9s forwards 0.6s;
}
.title-gold {
    display: block;
    color: var(--gold); font-style: italic;
    opacity: 0; animation: fadeUp 0.9s forwards 0.8s;
}
.hero-description {
    max-width: 580px;
    font-size: 1.15rem; color: rgba(248, 243, 245, 0.82);
    font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.9s forwards 1s;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0; animation: fadeUp 0.9s forwards 1.2s;
}
.hero-stats {
    display: flex; align-items: center; gap: 2rem;
    opacity: 0; animation: fadeUp 0.9s forwards 1.4s;
}
.stat-item { text-align: left; }
.stat-number {
    display: block;
    font-family: var(--font-head); font-size: 2.2rem; font-weight: 600;
    color: var(--gold); line-height: 1; letter-spacing: -0.5px;
}
.stat-label { font-size: 0.82rem; color: rgba(248, 243, 245, 0.72); letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-gold); }

.hero-scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 0.78rem; color: rgba(248, 243, 245, 0.6);
    letter-spacing: 2px; text-transform: uppercase;
    opacity: 0; animation: fadeIn 1s forwards 2s;
}
.scroll-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    animation: bounceDot 2s ease-in-out infinite;
}
@keyframes bounceDot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.hero-dots {
    position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
    z-index: 3; display: flex; flex-direction: column; gap: 10px;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all var(--transition); border: none; padding: 0;
}
.dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 100, 138, 0.6);
    transform: scale(1.3);
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-wrapper {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden; padding: 18px 0;
}
.marquee-track {
    display: flex; align-items: center; gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 0.9rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-muted);
    transition: color var(--transition);
}
.marquee-track span:hover { color: var(--gold); }
.marquee-dot { color: var(--gold) !important; font-size: 0.65rem !important; opacity: 0.7; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services { padding: 8rem 0; background: var(--bg); }

.card-image {
    width: calc(100% + 5rem); margin: -2.5rem -2.5rem 2rem;
    height: 200px; overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex-shrink: 0;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.service-card:hover .card-image img { transform: scale(1.07); }

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

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    cursor: pointer; overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
    opacity: 0; transition: opacity var(--transition); border-radius: inherit;
}
.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(212, 100, 138, 0.15), 0 0 0 1px var(--border-gold);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, rgba(253, 245, 248, 1) 0%, rgba(255,255,255,1) 100%);
}
.service-card.featured::before { opacity: 0.5; }

.featured-badge {
    position: absolute; top: 20px; right: 20px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; background: var(--gold);
    padding: 4px 12px; border-radius: 20px;
}
.card-icon {
    width: 58px; height: 58px; border-radius: 14px;
    background: var(--gold-glow); border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; line-height: 1;
    margin-bottom: 1.5rem; transition: all var(--transition);
}

/* ──── Genosys Badge ──── */
.service-card[id="serviceCard0"] .card-image {
    position: relative;
    overflow: hidden;
}

.service-card:hover .card-icon {
    background: var(--gold);
    box-shadow: 0 8px 20px rgba(212, 100, 138, 0.35);
}
.card-content h3 {
    font-family: var(--font-head); font-size: 1.35rem; font-weight: 600;
    color: var(--text); margin-bottom: 0.75rem; line-height: 1.3;
}
.card-content p { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.25rem; }
.card-list { display: flex; flex-direction: column; gap: 6px; }
.card-list li { font-size: 0.88rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.card-list li::before { content: '✦'; position: absolute; left: 0; font-size: 0.6rem; color: var(--gold); line-height: 1.8; }
.card-arrow { position: absolute; bottom: 2rem; right: 2.5rem; font-size: 1.2rem; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all var(--transition); }
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about { padding: 8rem 0; background: var(--bg-surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img { border-radius: var(--radius-lg); object-fit: cover; transition: transform var(--transition); }
.about-img-main { width: 100%; height: 520px; box-shadow: 0 30px 60px rgba(0,0,0,0.12); }
.about-img-secondary {
    position: absolute; bottom: -3rem; right: -3rem;
    width: 52%; height: 230px;
    border: 4px solid var(--bg-surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-img:hover { transform: scale(1.02); }
.about-card-floating {
    position: absolute; top: 2.5rem; left: -2rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md); padding: 1.2rem 1.6rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 20px 40px rgba(212, 100, 138, 0.10), 0 4px 20px rgba(0,0,0,0.06);
}
.float-icon { font-size: 1.5rem; color: var(--gold); line-height: 1; }
.float-number { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.float-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-desc { font-size: 1.05rem; color: var(--text-muted); font-weight: 300; line-height: 1.8; }
.about-details {
    display: flex; flex-direction: column; gap: 1.2rem;
    padding: 1.8rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.detail-row { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon {
    width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
    background: var(--gold-glow); border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-top: 2px;
}
.detail-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.detail-value { font-size: 0.98rem; color: var(--text); line-height: 1.55; }
a.detail-value:hover { color: var(--gold); }
.detail-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 3px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
    position: relative; padding: 7rem 2.5rem;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; min-height: 400px;
}
.cta-banner-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
.cta-banner-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(9, 9, 12, 0.88) 0%, rgba(30, 10, 20, 0.82) 100%);
}
.cta-banner-content {
    position: relative; z-index: 3; max-width: 700px;
}
.cta-banner-content h2 {
    font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-style: italic; font-weight: 400;
    color: #f8f3f5; margin-bottom: 1.2rem; line-height: 1.3;
}
.cta-banner-content p { font-size: 1.1rem; color: rgba(248,243,245,0.82); }
.cta-banner-content strong { color: var(--gold); }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact { padding: 8rem 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.contact-card {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: all var(--transition); cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.contact-card:hover { border-color: var(--border-gold); transform: translateX(6px); box-shadow: 0 8px 24px rgba(212,100,138,0.10); }
.contact-card-icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
    background: var(--gold-glow); border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-card-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 3px; }
.contact-card-value { font-size: 0.98rem; color: var(--text); font-weight: 400; }

.contact-map-wrapper {
    position: relative; height: 480px;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}
.contact-map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.map-badge {
    position: absolute; top: 1.2rem; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95); border: 1px solid var(--border-gold);
    backdrop-filter: blur(14px); padding: 8px 20px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 500; color: var(--gold);
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 0;
}
.footer-container {
    max-width: 1300px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
    padding-bottom: 4rem;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-tagline { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
.footer-links h4, .footer-services h4, .footer-contact h4 {
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
    color: var(--text); margin-bottom: 1.4rem;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.92rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-services li { font-size: 0.92rem; color: var(--text-muted); }
.footer-contact p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.6rem; line-height: 1.55; }
.footer-contact a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: var(--text-dim); margin-top: 0.8rem;
}
.hours-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.8rem 2.5rem;
    text-align: center;
    font-size: 0.85rem; color: var(--text-dim);
    max-width: 1300px; margin: 0 auto; width: 100%;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-visual { max-width: 600px; margin: 0 auto; }
    .about-card-floating { left: 1rem; }
}
@media (max-width: 860px) {
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map-wrapper { height: 320px; }
    .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        padding: 1rem 1.5rem 2rem;
        border-bottom: 1px solid var(--border-gold);
        box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 14px 8px; border-bottom: 1px solid var(--border); }
    .nav-item-dropdown .nav-link { border-bottom: none; }
    .dropdown-menu {
        position: static; box-shadow: none; border: none; background: transparent;
        border-left: 2px solid var(--gold); padding: 0; margin-top: 5px; margin-left: 10px;
        opacity: 0; max-height: 0; overflow: hidden; transform: none; visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }
    .dropdown-menu.open { opacity: 1; max-height: 200px; visibility: visible; margin-bottom: 10px; }
    .dropdown-menu a { padding: 10px 15px; font-size: 0.9rem; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .lang-switcher { margin-left: auto; }
    .hero-dots { right: 1.2rem; }
    .about-img-secondary { display: none; }
    .about-card-floating { top: 1rem; left: 1rem; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .section-container { padding: 0 1.2rem; }
    .nav-container { padding: 0 1.2rem; }
    .footer-bottom { padding: 1.5rem 1.2rem; }
    .cta-banner { padding: 5rem 1.2rem; }
    .stat-divider { display: none; }
}

/* ================================================================
   HERO ANIMATED LOGO
   ================================================================ */
.hero-animated-logo {
    position: absolute;
    right: 6rem;
    top: 50%;
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--gold);
    text-align: right;
    letter-spacing: 4px;
    line-height: 1.1;
    z-index: 5;
    opacity: 0; 
    animation: fadeUp 0.9s forwards 0.3s, pulseHeroLogo 2.5s infinite ease-in-out 1.2s;
}
.hero-animated-logo span {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 12px;
    font-weight: 300;
    color: rgba(248, 243, 245, 0.95);
    margin-top: 8px;
}
@keyframes pulseHeroLogo {
    0%, 100% { opacity: 0.85; transform: translateY(-50%) scale(0.98); transform-origin: right center; }
    50%      { opacity: 1;    transform: translateY(-50%) scale(1.02); transform-origin: right center; }
}

@media (max-width: 860px) {
    .hero-animated-logo {
        position: relative;
        right: auto;
        top: auto;
        text-align: left;
        margin-top: 1rem;
        margin-bottom: 2rem;
        animation: fadeUp 0.9s forwards 0.3s, pulseHeroLogoMobile 2.5s infinite ease-in-out 1.2s;
    }
    @keyframes pulseHeroLogoMobile {
        0%, 100% { opacity: 0.85; transform: scale(0.98); transform-origin: left center; }
        50%      { opacity: 1;    transform: scale(1.02); transform-origin: left center; }
    }
}

/* ================================================================
   FLOATING INSTAGRAM BUTTON
   ================================================================ */
/* ================================================================
   FLOATING SOCIAL MEDIA BUTTONS
   ================================================================ */
.social-float-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-float-text {
    background: #fff;
    color: var(--gold-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    animation: fadePulseText 1.5s infinite alternate;
    pointer-events: none;
}
@keyframes fadePulseText {
    0% { transform: translateX(0) scale(1); opacity: 0.85; }
    100% { transform: translateX(-4px) scale(1.02); opacity: 1; }
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-btn svg { width: 26px; height: 26px; }
.social-btn:hover { 
    transform: scale(1.1) translateY(-5px); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3); 
}

.social-btn.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.pin { background: #E60023; }
.social-btn.yt { background: #FF0000; }

@media (max-width: 600px) {
    .social-float-wrapper { bottom: 20px; left: 15px; gap: 8px; }
    .social-btn { width: 45px; height: 45px; }
    .social-btn svg { width: 22px; height: 22px; }
    .social-float-text { display: none; }
}

/* Language Toggle Logic */
html[lang="en"] .lang-tr { display: none !important; }
html[lang="tr"] .lang-en { display: none !important; }

