/* Ultra Premium Design for Site 1 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold: #C5A059;
    --gold-light: #E8D3A2;
    --dark: #1A1A1A;
    --dark-grey: #2C2C2C;
    --light-grey: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #777777;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Premium Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 9999;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}
.brand-logo span { color: var(--gold); font-style: italic; }

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-grey);
}
.nav-menu a:hover { color: var(--gold); }

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger-box {
    width: 30px; height: 20px;
    display: inline-block;
    position: relative;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px; height: 2px;
    background-color: var(--dark);
    position: absolute;
    transition: var(--transition);
}
.hamburger-inner { top: 50%; margin-top: -1px; }
.hamburger-inner::before { content: ""; top: -8px; }
.hamburger-inner::after { content: ""; bottom: -8px; }

.hamburger.is-active .hamburger-inner { background-color: transparent; }
.hamburger.is-active .hamburger-inner::before { top: 0; transform: rotate(45deg); }
.hamburger.is-active .hamburger-inner::after { bottom: 0; transform: rotate(-45deg); }

.nav-actions { display: flex; gap: 15px; align-items: center; }

.btn-premium {
    background: var(--dark);
    color: var(--gold-light);
    padding: 14px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--dark);
}
.btn-premium:hover { background: var(--white); color: var(--dark); }

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 14px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--gold-light); }

/* Hero Section */
.hero {
    padding: 180px 40px 100px;
    background: var(--light-grey);
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    top: -100px; right: -100px;
    opacity: 0.2;
}
.hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    bottom: -200px; left: -200px;
    opacity: 0.1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;}

/* Grid Sections */
.section { padding: 100px 40px; }
.container { max-width: 1400px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}
.feature-icon {
    width: 60px; height: 60px;
    margin: 0 auto 30px;
    color: var(--gold);
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-muted); }

/* CTA Banner */
.cta-banner {
    background: var(--dark);
    padding: 100px 40px;
    text-align: center;
    color: var(--white);
    margin: 50px 0;
}
.cta-banner h2 { color: var(--gold-light); font-size: 3rem; margin-bottom: 30px; }
.cta-banner p { font-size: 1.2rem; color: #ccc; max-width: 700px; margin: 0 auto 40px; }

/* FAQ Section */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}
.faq-item h3 { font-size: 1.3rem; margin-bottom: 15px; font-family: 'Lato', sans-serif; }
.faq-item p { color: var(--text-muted); }

/* Contact Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--light-grey);
    padding: 60px;
}
.contact-info h3 { font-size: 2rem; margin-bottom: 30px; }
.contact-info p { font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.contact-info p strong { color: var(--dark); font-weight: 700; width: 120px; }

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 40px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 20px; display: block;}
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-desc { color: #aaa; max-width: 400px; }

.footer-links h4 { color: var(--gold-light); font-family: 'Lato', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a { color: #aaa; }
.footer-links ul li a:hover { color: var(--white); padding-left: 5px; }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.wp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
}
.wp-float:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); }
.wp-float svg { width: 35px; height: 35px; fill: currentColor; }

/* Mobile Menu Animation */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--white);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav-overlay.is-active { transform: translateY(0); }
.mobile-nav-overlay .nav-menu {
    flex-direction: column;
    text-align: center;
    gap: 30px;
}
.mobile-nav-overlay .nav-menu a { font-size: 1.5rem; color: var(--dark); }
.mobile-nav-overlay .nav-menu a:hover { color: var(--gold); }
.mobile-nav-overlay .nav-actions { margin-top: 40px; flex-direction: column; }

/* Responsive */
@media (max-width: 992px) {
    .desktop-nav, .nav-container > .nav-actions { display: none; }
    .hamburger { display: block; z-index: 9999; position: relative; }
    
    .hero-title { font-size: 2.8rem; }
    .contact-grid { grid-template-columns: 1fr; padding: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
