/* ===== CSS Variables ===== */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-gold: #d4af37;
    --color-gold-light: #f4e4bc;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-primary);
    overflow-x: hidden;
}

/* ===== Background Pattern ===== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #0f0f23 100%);
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 69, 96, 0.08) 0%, transparent 50%);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: var(--color-gold);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-privacy {
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
}

.nav-privacy:hover {
    background: var(--color-gold);
    color: var(--color-primary) !important;
    border-color: var(--color-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 8px;
}

.title-star {
    font-size: clamp(40px, 8vw, 80px);
    color: var(--color-gold);
    animation: rotate 20s linear infinite;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Floating Stars */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-star {
    position: absolute;
    color: var(--color-gold);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    font-size: 40px;
    animation-delay: 0s;
}

.star-2 {
    top: 60%;
    right: 15%;
    font-size: 30px;
    animation-delay: 2s;
}

.star-3 {
    bottom: 20%;
    left: 20%;
    font-size: 25px;
    animation-delay: 4s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-white);
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text .lead {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.about-text strong {
    color: var(--color-gold);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.stat-icon {
    font-size: 24px;
}

.stat-label {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

/* ===== Services Section ===== */
.services {
    background: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:nth-child(1) { transition-delay: 0.1s; }
.contact-card:nth-child(2) { transition-delay: 0.2s; }
.contact-card:nth-child(3) { transition-delay: 0.3s; }

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-card h3 {
    color: var(--color-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--color-white);
    line-height: 1.8;
}

.contact-link {
    color: var(--color-white);
    font-size: 18px;
    display: block;
}

.contact-link:hover {
    color: var(--color-gold);
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-pin {
    font-size: 64px;
    animation: bounce 2s infinite;
}

.map-placeholder p {
    color: var(--color-gold);
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 4px;
}

/* ===== Footer ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand .logo-icon {
    font-size: 24px;
}

.footer-brand .logo-text {
    font-size: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 16px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ===== Privacy Page ===== */
.privacy-page {
    padding: 140px 0 80px;
    min-height: calc(100vh - 200px);
}

.privacy-header {
    text-align: center;
    margin-bottom: 64px;
}

.privacy-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-white);
    margin-bottom: 24px;
}

.privacy-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
}

.privacy-email a {
    color: var(--color-gold);
}

.privacy-email a:hover {
    text-decoration: underline;
}

.email-icon {
    font-size: 18px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.privacy-section:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.section-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.privacy-section h2 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 16px;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.privacy-section strong {
    color: var(--color-gold);
}

.contact-section .contact-box {
    margin-top: 24px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 500;
}

.contact-email:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.contact-email .email-icon {
    font-size: 24px;
}

.back-home {
    text-align: center;
    margin-top: 48px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 8px;
    }
    
    .title-star {
        animation: pulse 2s infinite;
    }
    
    .about-text {
        padding: 32px 24px;
    }
    
    .privacy-section {
        padding: 24px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

