/* ============================================
   YUVI - Official Website Styles
   ============================================ */

/* CSS Variables */
:root {
    --accent: #5a7a5a;
    --accent-light: #7a9a7a;
    --accent-dark: #3a5a3a;
    --accent-glow: rgba(90, 122, 90, 0.4);
    --gold: #d6b45c;
    --gold-light: #e5c878;
    --gold-dark: #b89a3d;
    --gold-glow: rgba(214, 180, 92, 0.3);
    --dark: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #161616;
    --light: #ffffff;
    --gray: rgba(255,255,255,0.6);
    --gray-dark: rgba(255,255,255,0.3);
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, background 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2);
    background: var(--gold);
}

@media (max-width: 768px) {
    .cursor { display: none; }
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* ============================================
   Sound Toggle
   ============================================ */
.sound-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    border-color: var(--gold);
    background: rgba(214, 180, 92, 0.15);
}

.sound-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.sound-bar {
    width: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.sound-bar:nth-child(1) { height: 40%; }
.sound-bar:nth-child(2) { height: 70%; }
.sound-bar:nth-child(3) { height: 50%; }
.sound-bar:nth-child(4) { height: 90%; }

.sound-toggle.playing .sound-bar {
    animation: soundWave 0.5s ease-in-out infinite alternate;
    background: var(--gold);
}

.sound-bar:nth-child(1) { animation-delay: 0s; }
.sound-bar:nth-child(2) { animation-delay: 0.1s; }
.sound-bar:nth-child(3) { animation-delay: 0.2s; }
.sound-bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes soundWave {
    from { height: 20%; }
    to { height: 100%; }
}

.sound-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
}

/* ============================================
   Mobile Menu Toggle
   ============================================ */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(214, 180, 92, 0.2);
}

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

.nav-logo-img {
    height: 55px;
    width: auto;
    filter: invert(1) drop-shadow(0 0 10px rgba(214, 180, 92, 0.5));
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    filter: invert(1) drop-shadow(0 0 20px rgba(214, 180, 92, 0.8));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-logo-img {
        height: 45px;
        margin-left: 55px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-artist {
    object-position: center top;
    animation: heroZoom 25s ease-in-out infinite alternate;
    z-index: 2;
}

.hero-bg-secondary {
    object-position: center;
    opacity: 0.3;
    z-index: 1;
    filter: blur(2px);
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(10, 10, 10, 0.4) 70%,
        rgba(10, 10, 10, 0.2) 100%
    );
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.7) 40%,
            rgba(10, 10, 10, 0.9) 100%
        );
    }
    
    .hero-bg-artist {
        object-position: center 20%;
    }
}

.hero-corner-logo {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 10;
    animation: fadeInRight 1s ease 1.2s both;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    filter: invert(1) drop-shadow(0 0 30px rgba(214, 180, 92, 0.6));
    opacity: 0.9;
    transition: all 0.4s ease;
}

.hero-corner-logo:hover .hero-logo-img {
    filter: invert(1) drop-shadow(0 0 40px rgba(214, 180, 92, 1));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-corner-logo {
        top: 80px;
        right: 20px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
    position: relative;
    z-index: 5;
}

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 180, 92, 0.15);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    box-shadow: 0 0 20px rgba(214, 180, 92, 0.2);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.85;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    background: linear-gradient(135deg, var(--light) 0%, var(--gold-light) 50%, var(--light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(214, 180, 92, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 10rem 1.5rem 4rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(4rem, 20vw, 8rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 1s both;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--light);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-spotify {
    background: #1DB954;
    color: white;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.btn-apple {
    background: #fc3c44;
    color: white;
}

.btn-apple:hover {
    background: #ff5c64;
    transform: scale(1.05);
}

.btn-youtube {
    background: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background: #ff3333;
    transform: scale(1.05);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-number {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gold-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px var(--gold-glow);
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 10rem 2rem;
    background: var(--dark-surface);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-album {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(214, 180, 92, 0.1);
    transition: transform 0.4s ease;
}

.about-album:hover {
    transform: scale(1.02) rotate(-1deg);
}

.about-bio {
    margin: 2.5rem 0;
}

.bio-text {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--light);
}

.about-cta {
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .about {
        padding: 6rem 1.5rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-album {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-bio {
        text-align: right;
    }
}

/* ============================================
   Marquee Section
   ============================================ */
.marquee-section {
    padding: 3.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    background: var(--dark);
}

.marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-size: clamp(2.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}

.marquee-item.filled {
    color: var(--gold);
    -webkit-text-stroke: none;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Featured/Music Section
   ============================================ */
.featured {
    padding: 10rem 2rem;
    background: var(--dark);
}

.featured-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.featured-album {
    position: sticky;
    top: 100px;
}

.featured-album-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(214, 180, 92, 0.15);
    transition: transform 0.4s ease;
}

.featured-album:hover .featured-album-img {
    transform: scale(1.02);
}

.featured-album-info {
    margin-top: 1.5rem;
    text-align: center;
}

.featured-album-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.featured-album-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.featured-player {
    background: var(--dark-card);
    border: 1px solid rgba(214, 180, 92, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.featured-embed {
    aspect-ratio: 16/9;
    min-height: 352px;
}

.featured-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.featured-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(214, 180, 92, 0.2);
}

@media (max-width: 900px) {
    .featured {
        padding: 6rem 1.5rem;
    }
    
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-album {
        position: relative;
        top: 0;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ============================================
   Links Section
   ============================================ */
.links {
    padding: 10rem 2rem;
    background: var(--dark-surface);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: rgba(214, 180, 92, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.link-item {
    background: var(--dark);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.link-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.link-item:hover::before {
    opacity: 1;
}

.link-item:hover {
    transform: scale(1.02);
    z-index: 1;
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.link-item:hover .link-icon {
    transform: scale(1.1) rotate(-5deg);
}

.link-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.link-icon.youtube { background: #FF0000; }
.link-icon.tiktok { background: #000; border: 1px solid rgba(255,255,255,0.2); }
.link-icon.spotify { background: #1DB954; }
.link-icon.apple { background: linear-gradient(135deg, #fc3c44, #f94c57); }

.link-icon svg {
    color: white;
}

.link-content {
    position: relative;
    z-index: 1;
}

.link-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--gray);
    transition: color 0.4s ease;
}

.link-item:hover .link-desc {
    color: rgba(255,255,255,0.8);
}

.link-arrow {
    margin-left: auto;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.link-item:hover .link-arrow {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .links {
        padding: 6rem 1.5rem;
    }
}

/* ============================================
   Management Section
   ============================================ */
.management {
    padding: 8rem 2rem;
    background: var(--dark);
}

.management-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.management-card {
    background: var(--dark-card);
    border: 1px solid rgba(214, 180, 92, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.management-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 180, 92, 0.1);
}

.management-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Agency logo white filter for dark backgrounds */
.agency-logo-white {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.agency-logo-white:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.management-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.management-info h3 {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.management-info p {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .management {
        padding: 5rem 1.5rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 10rem 2rem;
    background: var(--dark-surface);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2rem;
}

.contact-headline .accent {
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.contact-label-badge {
    margin-top: auto;
}

.contact-label-logo {
    width: 80px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.contact-label-logo:hover {
    opacity: 1;
}

.contact-right {
    background: var(--dark-card);
    border: 1px solid rgba(214, 180, 92, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.contact-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(214, 180, 92, 0.1);
}

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

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent);
    color: var(--light);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

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

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.form-success p {
    color: var(--gray);
}

#contactForm.hidden {
    display: none;
}

@media (max-width: 900px) {
    .contact {
        padding: 6rem 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-left {
        text-align: center;
    }
    
    .contact-email {
        justify-content: center;
    }
    
    .contact-label-badge {
        display: none;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(214, 180, 92, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: invert(1) drop-shadow(0 0 10px rgba(214, 180, 92, 0.4));
    opacity: 0.9;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0.25rem 0;
}

.footer-email {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--gold-light);
}

.footer-agency-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(214, 180, 92, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        justify-content: center;
    }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.back-top svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

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

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

/* ============================================
   Utility Classes
   ============================================ */
[dir="rtl"] {
    text-align: right;
}
