:root {
    --primary-bg: #ffffff;
    --second-bg: #f8f9fa;
    --gold: #B8860B;
    --text-main: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold) !important;
}

/* Navbar */
.premium-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    transition: all 0.3s;
}

.premium-menu li a {
    color: var(--text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.premium-menu li a:hover,
.premium-menu li a.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: url('General/1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(248,249,250,0.85) 100%);
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
}

.hero-description {
    font-size: 1.3rem;
    color: #4a4a4a;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1.1rem; }
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    border-radius: 30px;
    padding: 12px 30px;
}

.btn-gold:hover {
    background-color: #121212;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.btn-outline-dark {
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s;
    border: 2px solid #121212;
    color: #121212;
}
.btn-outline-dark:hover {
    color: #fff;
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #121212;
}

.section-tagline {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 50px;
}

/* Services section */
.services-container {
    padding: 100px 0;
    background-color: var(--second-bg);
}

.service-tabs {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 767px) {
    .service-tabs {
        max-height: 350px;
        overflow-y: auto;
        margin-bottom: 30px;
    }
}

.service-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 0;
    padding: 15px 20px;
    background: transparent;
}

.service-tabs .nav-link.active, .service-tabs .nav-link:hover {
    background-color: rgba(184, 134, 11, 0.05);
    color: var(--gold);
    border-left: 3px solid var(--gold);
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: rgba(184, 134, 11, 0.3);
    background: rgba(184, 134, 11, 0.02);
}

.service-card h4 {
    color: #212529;
    font-size: 1.1rem;
    margin-bottom: 0px;
    font-weight: 500;
}

/* Gallery */
.gallery-section {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.05);
}

/* Footer */
.premium-footer {
    background-color: var(--second-bg);
    padding: 80px 0 30px;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.premium-footer h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
}

.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}
