/* ===== PATEL NAMKEEN - Custom Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --maroon: #6B1D1D;
    --dark-maroon: #4A1010;
    --gold: #C9A84C;
    --light-gold: #E8D48B;
    --cream: #FDF8ED;
    --warm-white: #FFFDF7;
    --orange: #D4781E;
    --dark-text: #2C1810;
    --grey-text: #5A5A5A;
    --light-bg: #F9F3E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--dark-maroon);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.topbar a {
    color: var(--light-gold);
}

.topbar a:hover {
    color: #fff;
}

.topbar i {
    color: var(--gold);
    margin-right: 5px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--maroon) !important;
    padding: 0;
    box-shadow: 0 4px 20px rgba(107, 29, 29, 0.3);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    padding: 5px 0;
}

.navbar-brand img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-brand .brand-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}

.navbar-brand .brand-tagline {
    color: var(--light-gold);
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 22px 18px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--light-gold) !important;
}

.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 85vh;
    min-height: 500px;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-slider .carousel-caption {
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to top, rgba(74, 16, 16, 0.8), rgba(0, 0, 0, 0.2));
    padding: 0 15%;
}

.hero-slider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.hero-slider .carousel-caption h1 span {
    color: var(--gold);
}

.hero-slider .carousel-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 25px;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 2px solid #fff;
    margin: 0 5px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    background-color: var(--maroon);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.6);
}

.btn-maroon {
    background: var(--maroon);
    color: #fff;
    border: 2px solid var(--maroon);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-maroon:hover {
    background: var(--dark-maroon);
    color: var(--gold);
    border-color: var(--dark-maroon);
    transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 10px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--orange));
    margin: 15px auto;
    border-radius: 2px;
}

.section-title p {
    color: var(--grey-text);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--cream);
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 76, 0.15);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 29, 29, 0.12);
    border-color: var(--gold);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.feature-card:hover .icon {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #fff;
    transform: rotateY(180deg);
}

.feature-card h4 {
    color: var(--maroon);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ABOUT SECTION (HOME) ===== */
.about-home {
    background: var(--warm-white);
}

.about-home .about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-home .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-home .about-img:hover img {
    transform: scale(1.05);
}

.about-home .about-content h2 {
    color: var(--maroon);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-home .about-content p {
    color: var(--grey-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-home .about-content .highlight-text {
    color: var(--maroon);
    font-weight: 600;
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 25px 0;
}

/* ===== PRODUCTS PREVIEW (HOME) ===== */
.products-preview {
    background: var(--light-bg);
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 76, 0.1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 29, 29, 0.15);
}

.product-card .product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-card .product-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(107, 29, 29, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-img .overlay {
    opacity: 1;
}

.product-card .product-info {
    padding: 20px;
    text-align: center;
}

.product-card .product-info h5 {
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card .product-info p {
    color: var(--grey-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.product-card .badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 50%;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 20px;
}

.testimonial-card .author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-banner .btn {
    background: var(--maroon);
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-banner .btn:hover {
    background: #fff;
    color: var(--maroon);
}

/* ===== PROFILE PAGE ===== */
.page-header {
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 50%;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: var(--gold);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Profile Content */
.profile-section .profile-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.profile-section .profile-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-section .profile-img-wrapper .badge-year {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--maroon));
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 1;
}

.timeline-item .timeline-content {
    width: 45%;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h4 {
    color: var(--maroon);
    margin-bottom: 8px;
}

.timeline-content .year {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.values-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 29, 29, 0.1);
    border-color: var(--gold);
}

.values-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.values-card h5 {
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 10px;
}

.values-card p {
    color: var(--grey-text);
    font-size: 0.9rem;
}

/* ===== PRODUCT PAGE ===== */
.product-filter {
    text-align: center;
    margin-bottom: 40px;
}

.product-filter .filter-btn {
    background: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
    padding: 8px 25px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-filter .filter-btn:hover,
.product-filter .filter-btn.active {
    background: var(--maroon);
    color: #fff;
}

.product-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 76, 0.1);
    height: 100%;
    position: relative;
}

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(107, 29, 29, 0.15);
}

.product-detail-card .img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-detail-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-detail-card:hover .img-wrapper img {
    transform: scale(1.15);
}

.product-detail-card .img-wrapper .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(107, 29, 29, 0.8), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.product-detail-card:hover .img-wrapper .product-overlay {
    opacity: 1;
}

.product-detail-card .product-details {
    padding: 25px;
}

.product-detail-card .product-details h5 {
    color: var(--maroon);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-detail-card .product-details .product-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-detail-card .product-details p {
    color: var(--grey-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-detail-card .product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--maroon);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 29, 29, 0.1);
    border-color: var(--gold);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-info-card h5 {
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--maroon);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contact-form label {
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 5px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-maroon), #2C0D0D);
    color: #fff;
    padding-top: 60px;
}

.footer h5 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
}

.footer .footer-links li {
    margin-bottom: 12px;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer .footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer .footer-links a i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer .contact-info li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer .contact-info li i {
    color: var(--gold);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer .social-links a:hover {
    background: var(--gold);
    color: var(--dark-maroon);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.footer .footer-logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    margin-bottom: 15px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--maroon);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--maroon);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== STATS COUNTER ===== */
.stats-section {
    background: var(--maroon);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    color: var(--gold);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar .nav-link {
        padding: 12px 18px !important;
    }

    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }

    .hero-slider .carousel-caption {
        padding: 0 8%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item .timeline-dot {
        left: 30px;
    }

    .timeline-item .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
}

@media (max-width: 767px) {
    .topbar {
        font-size: 0.75rem;
        text-align: center;
    }

    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        height: 50px;
        width: 50px;
    }

    .hero-slider .carousel-item {
        height: 50vh;
        min-height: 350px;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .btn-gold, .btn-maroon {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .product-detail-card .img-wrapper {
        height: 220px;
    }

    .contact-form {
        padding: 25px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .footer {
        text-align: center;
    }

    .footer .contact-info li {
        justify-content: center;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .scroll-top {
        bottom: 25px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .hero-slider .carousel-caption {
        padding: 0 5%;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .product-detail-card .img-wrapper {
        height: 200px;
    }

    .product-detail-card .product-details {
        padding: 18px;
    }
}

/* ===== LOADING ANIMATION ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-overlay img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
