/* ===== GLOBAL & VARIABLES ===== */
:root {
    --black: #09090B;
    --premium-black: #18181B;
    --gray: #3F3F46;
    --gold: #D4AF37;
    --white: #F4F4F5;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { color: #a1a1aa; margin-bottom: 1rem; }
.text-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    cursor: pointer;
}
.btn:hover { background-color: transparent; color: var(--gold); transform: translateY(-3px); }
.btn-outline { background-color: transparent; color: var(--white); border-color: var(--gray); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--premium-black);
    transition: var(--transition);
}
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo i { color: var(--gold); font-size: 1.8rem; }
.nav-menu { display: flex; gap: 30px; }
.nav-menu a { position: relative; font-weight: 400; color: var(--white); transition: var(--transition); }
.nav-menu a:hover { color: var(--gold); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-menu a:hover::after { width: 100%; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, var(--premium-black) 0%, var(--black) 100%);
    overflow: hidden;
    padding-top: 80px;
}
.hero-content { max-width: 800px; z-index: 2; text-align: center; margin: 0 auto; }
.hero-sub { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; display: block; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

/* Animated background blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}
.blob-1 { width: 400px; height: 400px; background: var(--gold); top: -100px; left: -100px; animation: float 8s infinite ease-in-out; }
.blob-2 { width: 300px; height: 300px; background: var(--gray); bottom: -50px; right: -50px; animation: float 10s infinite ease-in-out reverse; }
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(50px, 50px); } }

/* ===== SECTIONS GENERAL ===== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 span { color: var(--gold); }

/* ===== ABOUT US ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: 10px; overflow: hidden; }
.about-img::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 2px solid var(--gold); transform: translate(20px, 20px); z-index: -1; border-radius: 10px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-card { background: var(--premium-black); padding: 20px; border-radius: 8px; border-left: 3px solid var(--gold); }
.about-card h4 { color: var(--gold); margin-bottom: 5px; }

/* ===== STATS ===== */
.stats { background: var(--premium-black); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--gold); font-weight: 700; }

/* ===== FEATURES & SERVICES ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
    background: var(--premium-black);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.card:hover { transform: translateY(-10px); border-color: var(--gold); }
.card-icon { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); font-size: 1.5rem; }
.card-number { position: absolute; top: 20px; right: 20px; font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.03); }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-item { text-align: center; position: relative; }
.process-icon { width: 80px; height: 80px; background: var(--premium-black); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--gold); position: relative; z-index: 2; }
.process-line { position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: var(--gray); z-index: 1; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 15px;
    background: var(--premium-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.booking-form { background: var(--premium-black); padding: 40px; border-radius: 12px; }

/* ===== FAQ ===== */
.faq-item { background: var(--premium-black); margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.faq-question i { color: var(--gold); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* ===== REVIEWS ===== */
.review-card { text-align: center; }
.review-stars { color: var(--gold); margin-bottom: 15px; }

/* ===== CONTACT & FOOTER ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.contact-info-item i { font-size: 1.5rem; color: var(--gold); }

footer { background: #050505; padding: 60px 0 20px; border-top: 1px solid var(--premium-black); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #a1a1aa; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.subscribe-form { display: flex; margin-top: 15px; }
.subscribe-form input { flex: 1; padding: 10px; background: var(--premium-black); border: 1px solid var(--gray); color: var(--white); border-radius: 5px 0 0 5px; }
.subscribe-form button { padding: 10px 20px; background: var(--gold); color: var(--black); border: none; border-radius: 0 5px 5px 0; cursor: pointer; font-weight: 600; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--premium-black); display: flex; justify-content: space-between; }
.footer-bottom a { color: #a1a1aa; margin: 0 10px; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-menu { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--black); flex-direction: column; padding: 20px; gap: 15px; border-bottom: 1px solid var(--gray); }
    .nav-menu.active { display: flex; }
    .menu-toggle { display: block; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid, .process-grid { grid-template-columns: 1fr 1fr; }
    .process-line { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .grid-3, .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}