:root {
    --gold: #d4af37; 
    --dark: #121212;
    --light: #ffffff;
    --gray: #f4f4f4;
}

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

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: var(--dark);
    overflow-x: hidden;
}

header {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo-box {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    padding: 5px;
    transition: transform 1s ease;
}

.logo-box:hover { transform: rotate(360deg); }
.logo-box img { width: 100%; height: 100%; object-fit: contain; }

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('image01.jpeg') center/cover no-repeat;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-text { animation: fadeInUp 1s ease-out forwards; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 7vw, 4rem); margin: 0; }
.hero-text p { font-size: 1rem; letter-spacing: 3px; color: var(--gold); font-weight: 600; }

.contact-info {
    max-width: 1000px;
    margin: -40px auto 40px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.info-item { text-align: center; padding: 10px; flex: 1; min-width: 220px; }
.info-item strong { display: block; color: var(--gold); font-size: 1.1rem; }
.info-item a { text-decoration: none; color: inherit; font-weight: 600; }

.features { padding: 40px 20px; max-width: 1100px; margin: 0 auto; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
    background: var(--gray);
    padding: 25px;
    border-radius: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-section { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.photo-card { aspect-ratio: 1; overflow: hidden; border-radius: 8px; transition: 0.4s; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.photo-card:hover { transform: scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

.cta-block { text-align: center; padding: 80px 20px; background: var(--gray); }
.main-phone { font-size: 2.2rem; font-weight: 700; color: var(--dark); text-decoration: none; display: block; margin: 15px 0; }
.btn-gold {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: var(--gold);
    color: #fff;
    display: inline-block;
    animation: pulseGold 2s infinite;
}

.social-nav { position: fixed; bottom: 25px; right: 25px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
.s-icon { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s; }
.wa-float { background: #25d366; font-size: 1.6rem; }
.fb-float { background: #1877f2; font-weight: bold; }
.ig-float { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%,#d6249f 60%,#285AEB 90%); font-weight: bold; }

footer { background: var(--dark); color: #888; text-align: center; padding: 60px 20px; }