:root {
    --primary: #c9a227;
    --primary-dark: #a8851d;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #666;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar span i {
    margin-right: 8px;
    color: var(--primary);
}

.top-bar-links a {
    color: var(--white);
    margin-left: 20px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--primary);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 3px;
}

.navbar-brand:hover {
    color: var(--primary);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Search in Navbar */
.search-container {
    position: relative;
}

.search-input {
    padding: 8px 40px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    width: 200px;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-desc {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--dark);
    color: var(--primary);
    border-color: var(--dark);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-height: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.why-card {
    background: var(--gray-light);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--dark);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray);
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}

.about-content h6 {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    padding: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-light);
    padding: 40px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-quote i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.author-info h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.contact-wrapper {
    background: rgba(255,255,255,0.05);
    padding: 60px 40px;
    border-radius: 10px;
}

.contact-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-content h2 span {
    color: var(--primary);
}

.contact-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-feature i {
    font-size: 2.5rem;
    color: var(--primary);
}

.contact-feature h5 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.contact-feature p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.whatsapp-card {
    background: var(--primary);
    padding: 50px 40px;
    text-align: center;
    border-radius: 10px;
}

.whatsapp-card i {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.whatsapp-card h3 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 10px;
}

.whatsapp-card p {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.whatsapp-card .btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.whatsapp-card .btn-primary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 70px;
    height: 70px;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero {
        padding: 70px 0;
    }

    .section-header h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 2.2rem;
    }

    .search-input {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar-links {
        margin-top: 10px;
    }

    .top-bar-links a {
        margin: 0 10px;
    }

    .whatsapp-card {
        margin-top: 40px;
    }
}
