/* =========================
   GLOBAL
========================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F5F0;   /* Premium Cream */
    color: #2B2B2B;              /* Charcoal Text */
}
html, body {
    overflow-x: hidden;
    width: 100%;
}


a {
    text-decoration: none;
}

.section-title {
    font-weight: 600;
    color: #1B5E20; /* Brand Green */
    letter-spacing: 1px;
    opacity: .8;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
    background: #fff;  /* Charcoal */
    padding: 12px 0;
    transition: 0.3s ease;
}

.navbar .nav-link {
    color: #1B5E20 !important;
    font-weight: 400;
    margin-left: 15px;
}

.navbar .nav-link:hover {
    color: #2B2B2B !important;
}

.brand-name {
    font-weight: 600;
    font-size: 18px;
    color: #1B5E20;
}

.navbar .nav-link {
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b48a3c, #e6c57f);
    bottom: -6px;
    left: 0;
    transition: 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    background: url('../images/banner-2.webp') no-repeat center center;
    background-size: cover;
    height: 80vh;
    min-height: 400px;
    color: #F8F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
}
/* Tablets */
@media (max-width: 992px) {
    .hero {
        height: 43vh;
        min-height: 350px;
        background-position: center;
    }
    
    /* Fix card button alignment for iPad/tablet view */
    .product-content .d-flex {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .product-content .d-flex .btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Reduce text size for better proportions like phone view */
    .product-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-content p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    /* Fix card size for iPad tablet view */
    .product-card {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .product-img {
        padding: 20px;
    }
    
    .product-img img {
        max-height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        height: 43vh;
        min-height: 300px;
        background-position: center;
        padding: 0 15px;
        background-position: center center;
    }
}


/* =========================
   BUTTONS
========================= */

.btn-premium {
    background-color: #1B5E20;
    color: #ffffff !important;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background-color: #144d1a;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-premium:focus,
.btn-premium:active {
    color: #ffffff !important;
    box-shadow: none;
}


/* =========================
   PRODUCT CARDS
========================= */

.product-card {
    border: none;
    border-radius: 15px;
    background: #FFFFFF;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card h5 {
    color: #1B5E20;
    font-weight: 600;
}

/* =========================
   FORM
========================= */

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #1B5E20;
    box-shadow: none;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #2B2B2B;
    color: #F8F5F0;
    padding: 50px 0;
}

.footer a {
    color: #A5D6A7;
}

.footer a:hover {
    color: #FFFFFF;
}

/* WHY SECTION */
.why-section {
    background: linear-gradient(to bottom, #ffffff, #f8f6f2);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b3c2e;
}

.section-subtitle {
    color: #777;
    font-size: 1rem;
    margin-top: 10px;
}

/* Card */
.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-card h5 {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #1b3c2e;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1b3c2e, #b48a3c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* GALLERY SECTION */
.gallery-section {
    background: #F8F5F0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #2B2B2B;
}

.testimonial-box {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.testimonial-box p {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
}

.testimonial-box h6 {
    margin-top: 20px;
    color: #1B5E20;
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================
   PRODUCT DETAILS HTML
========================= */

.product-details-html {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-watermark {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.product-watermark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/logo.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 200px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.logo-watermark-img {
    display: none; /* Hide the single logo since we're using pattern */
}

.product-info {
    position: relative;
    z-index: 2;
}

.product-info h5 {
    color: #1B5E20;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.product-info p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #495057;
}

.product-info strong {
    color: #2B2B2B;
    font-weight: 600;
}

.ingredients-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* =========================
   PREMIUM MODAL STYLES
========================= */

.premium-modal {
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-radius: 20px;
    overflow: hidden;
}

.premium-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    color: #2B2B2B;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.premium-close:hover {
    background: #1B5E20;
    color: white;
    transform: rotate(90deg);
}

.premium-title {
    color: #1B5E20;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.premium-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1B5E20;
    font-weight: bold;
    font-size: 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #1B5E20;
}

.benefit-item i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item strong {
    color: #1B5E20;
    font-weight: 600;
    font-size: 14px;
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #1B5E20;
}

.usage-number {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 14px;
}

.usage-item p {
    margin: 0;
    line-height: 1.5;
    color: #495057;
    font-size: 14px;
}

.enquiry-section {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    border: 2px solid #1B5E20;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.enquiry-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.15);
}

.enquiry-section h6 {
    color: #1B5E20;
    font-weight: 700;
    margin-bottom: 8px;
}

.enquiry-section i {
    font-size: 20px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b48a3c, #e6c57f);
    margin: 15px auto 30px auto;
    border-radius: 2px;
}

.stats-section {
    background: #ffffff;
}

.stats-section h3 {
    font-size: 42px;
    color: #1B5E20;
    font-weight: 700;
}

.stats-section p {
    color: #555;
}

.map-section {
    background: #F8F5F0;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

/* CONTACT STRIP */
.contact-strip {
    background: #2B2B2B;
}

.contact-card {
    display: block;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-card i {
    font-size: 28px;
    color: #1B5E20;
    margin-bottom: 15px;
}

.contact-card h6 {
    font-weight: 600;
    color: #2B2B2B;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}


/* Products Page */
/* PRODUCTS HERO */
.products-hero {
    background: #f8f8f8;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.product-img {
    background: #f4f4f4;
    padding: 30px;
    text-align: center;
}

.product-img img {
    max-height: 220px;
    object-fit: contain;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* PDF Loader */
.pdf-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.pdf-loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #1B5E20;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.pdf-loader::after {
    border-top: 4px solid #b48a3c;
}

/* ABOUT HERO */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/placeholder.jpg');
    background-size: cover;
    background-position: center;
}

/* MISSION SECTION */
.mission-section {
    background: linear-gradient(135deg, #1B5E20, #2e7d32);
}

.mission-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

/* QUALITY BOX */
.quality-box {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.quality-box:hover {
    transform: translateY(-6px);
}

/* CTA */
.about-cta {
    background: #2B2B2B;
}

.video-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.timeline {
    position: relative;
    margin-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    width: 3px;
    height: 100%;
    background: #1B5E20;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #b48a3c;
    border-radius: 50%;
}

/* Conatct us */
/* SECTION BACKGROUND */
.contact-wrapper {
    background: #f8f9fa;
}

/* CONTACT CARD */
.contact-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-card a {
    text-decoration: none;
    color: #1B5E20;
    font-weight: 500;
}

/* ICON */
.contact-icon {
    font-size: 22px;
    color: #b48a3c;
    margin-right: 15px;
}

/* FORM CARD */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* PREMIUM INPUT */
.premium-input {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.premium-input:focus {
    border-color: #1B5E20;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}

.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/placeholder.jpg');
    background-size: cover;
    background-position: center;
}
.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* SUBMENU BAR */
.product-submenu {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-top: 90px;
}

.submenu-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.submenu-link {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    padding-bottom: 10px;
    transition: 0.3s ease;
}

.submenu-link:hover {
    color: #1B5E20;
}

/* Sliding indicator */
.submenu-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #1B5E20, #66BB6A);
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Active */
.active-sub {
    color: #1B5E20;
}

.fade-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-section {
    transition: all 0.4s ease;
}

.hide-section {
    opacity: 0;
    transform: translateY(30px);
    display: none;
}

.show-section {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-toggler {
  border: none;
}

.custom-toggler .navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B5E20' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Modal Base */
.premium-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

/* Main Image */
.main-image-wrapper {
  position: relative;
  overflow: hidden;
}

.main-image-wrapper img {
  transition: transform 0.4s ease;
}

.main-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Chef Badge */
.premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #c6a75e, #f3e5ab);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Quick Badges */
.quick-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #f8f5f0;
}

.badge-item {
  background: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Thumbnails */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
}

.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
  opacity: 1;
  border: 2px solid #c6a75e;
}

/* Typography */
.premium-title {
  font-weight: 700;
}

/* .gold-divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, #c6a75e, #f3e5ab, #c6a75e);
  margin: 15px 0;
} */

.premium-list {
  padding-left: 18px;
}

.premium-list li {
  margin-bottom: 6px;
}

.premium-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  position: relative;
}

/* Top Close Button */
.premium-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s ease;
}

.premium-close:hover {
  background: #000;
  transform: rotate(90deg);
}
