:root {
    --gold: #d4af37;
    --gold-dark: #b08d2f;
    --gold-light: #f5e6a0;
    --dark: #111;
    --light: #ffffff;
    --glass-bg: rgba(255,255,255,0.25);
    --glass-border: rgba(255,255,255,0.35);
}

/* Global */
body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
}

/* GOLD TEXT */
.gold-text {
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SECTION TITLE */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 15px auto 50px;
}

/* HERO SLIDER */
.hero-slider .swiper {
    height: 90vh;
}
.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.glass::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: rotate(25deg);
    animation: shine 6s infinite linear;
}
@keyframes shine {
    from { transform: translateX(-100%) rotate(25deg); }
    to   { transform: translateX(100%) rotate(25deg); }
}

/* HERO TEXT */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    animation: fadeUp 1s ease forwards;
}
.hero-content p {
    font-size: 1.3rem;
    animation: fadeUp 1.5s ease forwards;
}
@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}

/* BUTTONS */
.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    color: #fff;
    font-weight: 600;
    transition: .4s;
}
.btn-gold:hover {
    box-shadow: 0 10px 30px rgba(212,175,55,.7);
    transform: translateY(-3px);
}

/* CARDS */
.premium-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.1);
    transition: .4s;
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(212,175,55,.4);
}
.premium-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    z-index: 9999;
}
.whatsapp-float img { width: 36px; }

/* RESPONSIVE */
@media(max-width:768px){
    .hero-slider .swiper {height: 60vh;}
    .hero-content h1 {font-size: 2rem;}
}
