/* style.css - Premium Glossy Gold Luxury */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-deep: #080808;
    --bg-secondary: #111111;
    --bg-card: #151515;
    --gold-primary: #C8A855;
    --gold-light: #E2C875;
    --gold-dark: #9F843B;
    --text-main: #FFFFFF;
    --text-secondary: #BDBDBD;
    --gold-border: rgba(200, 168, 85, 0.35);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: var(--gold-light);
    transition: all 0.3s ease;
}
a:hover {
    color: var(--gold-primary);
}

.text-muted, .text-secondary {
    color: var(--text-secondary) !important;
}

/* Glassmorphism / Glossy Panels */
.glass-panel {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gold-border);
    border-radius: 8px; /* Elegant smaller radius */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(200, 168, 85, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Typography & Colors */
.text-gold { color: var(--gold-primary) !important; }
.brand-glow {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Premium Gold Buttons */
.btn-primary-gold {
    background: var(--gold-primary);
    color: #000;
    border: 1px solid var(--gold-light);
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(200, 168, 85, 0.2);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg); transition: all 0.6s ease;
}
.btn-primary-gold:hover::after {
    left: 150%;
}
.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 85, 0.4);
    color: #000;
    background: var(--gold-light);
}

.btn-outline-gold {
    background: rgba(8, 8, 8, 0.7);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-outline-gold:hover {
    background: rgba(200, 168, 85, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(200, 168, 85, 0.3);
    transform: translateY(-2px);
}

.btn-view-profile {
    background: transparent;
    border: 1px solid var(--gold-border);
    color: var(--text-main);
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}
.btn-view-profile:hover {
    background: rgba(200, 168, 85, 0.15);
    color: var(--gold-light);
    border-color: var(--gold-primary);
}

/* Navbar */
.glass-navbar {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}
.glass-navbar.scrolled {
    background: rgba(8, 8, 8, 0.98);
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 5px 25px rgba(0,0,0,0.9);
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-body);
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--gold-primary);
}

.glass-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
}
.dropdown-item { color: var(--text-secondary); font-size: 14px; }
.dropdown-item:hover { background: rgba(200, 168, 85, 0.1); color: var(--gold-primary); }

/* Premium Profile Cards */
.profile-card-wrapper {
    margin-bottom: 30px;
}
.profile-card {
    border-radius: 6px;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}
.profile-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 15px rgba(200, 168, 85, 0.2);
}

.profile-img-wrap {
    position: relative;
    padding-top: 130%; /* Taller editorial aspect ratio */
    overflow: hidden;
}
.profile-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.profile-card:hover .profile-img { transform: scale(1.05); }

.verification-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
}

.profile-info {
    padding: 20px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.03);
}
.profile-name {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-main);
    font-family: var(--font-heading);
}
.rating-stars {
    color: var(--gold-primary);
    margin-bottom: 12px;
    font-size: 13px;
}
.profile-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.profile-stats i { color: var(--gold-primary); margin-right: 4px; }

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.btn-card-primary {
    background: var(--gold-primary);
    color: #000; border: none; border-radius: 4px; padding: 8px;
    font-size: 13px; font-weight: 600; text-align: center; text-transform: uppercase;
    transition: background 0.3s;
}
.btn-card-primary:hover { background: var(--gold-light); color: #000; }

.btn-card-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--gold-primary); border: 1px solid var(--gold-border); border-radius: 4px; padding: 8px;
    font-size: 13px; font-weight: 500; text-align: center; text-transform: uppercase;
    transition: all 0.3s;
}
.btn-card-secondary:hover { background: rgba(200, 168, 85, 0.1); color: var(--gold-light); border-color: var(--gold-primary); }

/* Category & Stat Cards */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6); 
}
.stat-card i { color: var(--gold-primary); }

.area-card {
    border-radius: 6px;
    transition: all 0.3s;
}
.area-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    background: rgba(200, 168, 85, 0.05);
}
.area-card i { color: var(--gold-primary); }

/* Floating Buttons */
.floating-buttons {
    position: fixed; bottom: 30px; right: 30px; left: 30px;
    pointer-events: none; z-index: 9999;
    display: flex; justify-content: space-between;
}
.floating-btn {
    pointer-events: auto; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #000; text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}
.floating-btn:hover { transform: scale(1.1); color: #000; }
.float-call { background: var(--gold-light); border: 2px solid var(--gold-primary); }
.float-whatsapp { background: var(--gold-primary); border: 2px solid var(--gold-light); }

/* Hero Section (2-Column Editorial) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(200, 168, 85, 0.05) 0%, var(--bg-deep) 60%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 60px; }
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
}
.hero-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.hero-image-frame {
    border: 1px solid var(--gold-primary);
    border-radius: 6px;
    padding: 8px;
    background: rgba(17,17,17,0.5);
    box-shadow: 0 0 40px rgba(200,168,85,0.12), inset 0 0 30px rgba(200,168,85,0.05);
    position: relative;
    overflow: hidden;
}
.hero-image-frame img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) brightness(0.95);
}
.hero-image-frame::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.15), transparent);
    transform: skewX(-25deg); transition: all 0.8s ease; pointer-events: none;
}
.hero-image-frame:hover::after { left: 150%; }

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(200, 168, 85, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

/* Footer */
.glass-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--gold-border);
}
.glass-footer h3, .glass-footer h5 { color: var(--gold-primary); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

/* Utility */
.section-padding { padding: 100px 0; }
.text-gradient {
    color: var(--gold-primary);
}

/* Category Cards (Reference Style) */
.category-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
    background-color: #111;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.75);
    transition: all 0.4s ease;
    z-index: 1;
}
.category-card:hover::before {
    background: rgba(8, 8, 8, 0.5);
}
.category-card:hover {
    border-color: rgba(200, 168, 85, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 168, 85, 0.15);
}
.category-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px;
}
.category-card-icon {
    color: var(--gold-primary);
    font-size: 2rem;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
    opacity: 0.9;
}
.category-card:hover .category-card-icon {
    transform: scale(1.1);
    opacity: 1;
}
.category-card-title {
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}


/* Premium Image Offset Border */
.premium-image-wrapper {
    position: relative;
    z-index: 1;
}
.premium-image-wrapper::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    bottom: -25px;
    right: 25px;
    border: 1px solid var(--gold-primary);
    border-radius: 24px;
    z-index: -1;
}
.premium-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    width: 100%;
}

/* Premium Image Offset Border Right */
.premium-image-wrapper-right {
    position: relative;
    z-index: 1;
}
.premium-image-wrapper-right::before {
    content: "";
    position: absolute;
    top: -25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
    border: 1px solid var(--gold-primary);
    border-radius: 24px;
    z-index: -1;
}
.premium-image-wrapper-right img {
    position: relative;
    z-index: 1;
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    width: 100%;
}

