:root {
    --primary-dark: #0d0d0d;
    --secondary-dark: #1a1a1a;
    --gold: #d95c14;
    --gold-light: #ffaa00;
    --white: #e6f1ff;
    --gray: #8892b0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-dark);
    color: var(--gray);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* Header & Nav */
.site-header {
    background-color: transparent;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    background-color: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 92, 20, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 70px;
    /* Increased size */
    width: auto;
    border-radius: 50%;
    border: 2px solid rgba(217, 92, 20, 0.5);
    /* Subtle gold border */
    animation: pulse-glow 3s infinite;
    transition: transform 0.5s ease;
}

.logo-img:hover {
    transform: rotate(360deg);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, #d95c14);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 92, 20, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(217, 92, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 92, 20, 0);
    }
}

/* Remove Top Bar Styles */

.social-links .social-icon {
    margin: 0 20px;
    /* Increased spacing between icons */
    font-size: 1.8rem;
    /* Bigger icons */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Authentic Brand Colors */

/* X (Twitter): Black Square, White Icon */
.social-links .brand-x,
.social-links .brand-x:hover,
.social-links .brand-x:visited {
    background-color: #000000 !important;
    border-radius: 6px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
}

.social-links .brand-x i,
.social-links .brand-x:hover i {
    color: #ffffff !important;
    font-size: 1.2rem !important;
}

/* Instagram: Gradient Brand Color */
.brand-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 10px;
    /* Instagram's rounded square icon */
    padding: 8px;
    width: 40px;
    height: 40px;
}

.brand-instagram i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

/* Facebook: Official Blue Circle */
.brand-facebook {
    background-color: #1877F2;
    border-radius: 50%;
    /* Circular like the app */
    padding: 8px;
    width: 40px;
    height: 40px;
}

.brand-facebook i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

/* YouTube: Official Red with rounded rectangle */
.brand-youtube {
    background-color: #FF0000;
    border-radius: 8px;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.brand-youtube i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

/* WhatsApp: Official Green Circle */
.brand-whatsapp {
    background-color: #25D366;
    border-radius: 50%;
    /* Circular like the app */
    padding: 8px;
    width: 40px;
    height: 40px;
}

.brand-whatsapp i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.social-links .social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(217, 92, 20, 0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
    margin-right: 0;
    /* Reset */
}

.nav-link {
    color: var(--white) !important;
    margin: 0 20px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    font-size: 1.1rem;
    /* Bigger font size */
    letter-spacing: 1px;
    padding: 12px 24px !important;
    /* Bigger clickable area */
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, #d95c14, #ffaa00, var(--gold));
    /* Teal to gold gradient */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #d95c14, var(--gold));
    /* Teal to gold gradient */
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold-light) !important;
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(217, 92, 20, 0.15));
    /* Subtle teal-gold background */
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.3), 0 0 20px rgba(217, 92, 20, 0.2);
    /* Glowing effect */
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 70%;
}

/* Pulse animation on hover */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(255, 170, 0, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(255, 170, 0, 0.5), 0 0 30px rgba(217, 92, 20, 0.3);
    }
}

.nav-link:hover {
    animation: pulse 2s ease-in-out infinite;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px - 300px);
    /* Adjust for header/footer */
}

/* Footer */
.site-footer {
    background-color: var(--secondary-dark);
    color: var(--gray);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(217, 92, 20, 0.1);
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-socials a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Components */
.btn-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

/* Homepage Hero */
.hero-section {
    height: calc(100vh - 100px);
    background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Cards */
.product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(217, 92, 20, 0.1) !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 92, 20, 0.15);
    border-color: rgba(217, 92, 20, 0.3) !important;
}

.product-img-wrapper {
    overflow: hidden;
    height: 320px;
    position: relative;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(33, 37, 41, 1), transparent);
    z-index: 1;
}

.product-card .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Text Gold Utility */
.text-gold {
    color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .header .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .site-header {
        position: sticky;
        background-color: rgba(30, 30, 30, 0.95);
    }

    .main-content {
        margin-top: 0;
    }

    .navbar-collapse {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        margin-top: 10px;
        box-shadow: none;
        border: none;
        padding-bottom: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .social-links {
        justify-content: center !important;
        margin-top: 20px;
        flex-wrap: nowrap;
    }

    .social-links .social-icon {
        margin: 0 6px;
    }
}

/* Stats Section */
.stats-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(217, 92, 20, 0.2);
}

.stats-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.ls-1 {
    letter-spacing: 2px;
    font-weight: 600;
}

/* About Section */
.about-img {
    position: relative;
    z-index: 1;
}

/* Map Section */
iframe {
    filter: invert(90%) hue-rotate(180deg);
}