/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon: #631000;
    --yellow: #FFBF00;
    --grey: #D9D9D9;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navbar (reuse styles similar to main) */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: font-weight 0.2s ease;
    position: relative;
}

.nav-link:hover {
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--grey);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Header */
.page-header {
    padding: 30px 0 10px;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-arrow {
    font-size: 1.5rem;
    color: var(--maroon);
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--maroon);
}

/* Products */
.products-section {
    padding: 30px 0 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.hover-plus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .hover-plus {
    opacity: 1;
}

.product-name {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

/* Modal */


.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

#modalImage {
    width: 100%;
    height: 500px;
    object-fit: contain;
    margin-bottom: 15px;
}

.modal-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.modal-controls button {
    padding: 10px 16px;
    border: none;
    background: var(--maroon);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-controls button:hover {
    background: #7a1400;
}

.modal-caption {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.modal-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
    margin-top: 10px;
    padding: 0 20px;
    text-align: left;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
#galleryModal #whatsappBtn {
    background-color: #0fdb35;
    color: #fff ;              
    cursor: pointer ;
    font-size: 16px ;
    font-weight: bold;
    
}

/* Hover effect */
#galleryModal #whatsappBtn:hover {
    background-color: #1ebe5d;
}

/* Quote Section */
.quote-section {
    padding: 0;
    margin-top: 40px;
}

.quote-section .grey-section {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--maroon);
}

.quote-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.quote-text {
    text-align: left;
}

.quote-text .section-title {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.quote-btn {
    background: white;
    color: var(--maroon);
    padding: 5px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-left: 50px;
    text-decoration: none;
    display: inline-block;
}

.quote-btn:hover {
    background: var(--yellow);
}

/* Footer */
.footer {
    background: rgb(35, 0, 0);
    color: #fff;
    padding: 40px 10px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.05);
        margin-top: 0;
        padding: 0;
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .quote-text .section-title {
        font-size: 1.3rem;
    }

    .quote-btn {
        font-size: 0.9rem;
        padding: 5px 15px;
        margin-left: 20px;
    }
}

@media (max-width: 540px) {
    .header-row {
        gap: 8px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-name {
        font-size: 0.85rem;
        padding: 8px;
    }

    .quote-text .section-title {
        font-size: 1.1rem;
    }

    .quote-btn {
        font-size: 0.85rem;
        padding: 4px 12px;
        margin-left: 15px;
    }

    .quote-section .grey-section {
        height: 70px;
        padding: 0 10px;
    }

    #modalImage {
        height: 300px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .modal-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    #modalImage {
        height: 400px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .modal-description {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    #modalImage {
        height: 300px;
    }

    .modal-content {
        padding: 15px;
    }
}

