/**
* Template Name: iLanding (Customized for OG Natural Foods)
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - Customized for OG Foods */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #1e293b;
  --accent-color: #0d6efd; /* Bootstrap Primary Blue */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;
  --nav-hover-color: #0d6efd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d6efd;
}

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message, .php-email-form .sent-message { display: none; color: #ffffff; padding: 15px; margin-bottom: 24px; font-weight: 600; }
.php-email-form .error-message { background: #df1529; }
.php-email-form .sent-message { background: #059652; }
.php-email-form .loading { display: none; background: var(--surface-color); text-align: center; padding: 15px; margin-bottom: 24px; }
.php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid var(--accent-color); border-top-color: var(--surface-color); animation: php-email-form-loading 1s linear infinite; }
@keyframes php-email-form-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

.scrolled .header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .header-container {
  padding: 0 15px;
}

.header .logo { line-height: 1; }
.header .logo img { max-height: 50px; /* Bigger Logo */ margin-right: 8px; }
.header .logo h1 { font-size: 24px; margin: 0; font-weight: 600; color: var(--heading-color); }

.header .btn-getstarted {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 25px;
  margin: 0 0 0 20px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 500;
}
.header .btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

@media (max-width: 1200px) {
  .header .header-container { max-width: 100%; }
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 10px 0 0; padding: 8px 20px; font-size: 13px; }
  .header .navmenu { order: 3; }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
  .navmenu li { position: relative; }
  .navmenu a { color: var(--nav-color); padding: 10px 15px; font-size: 16px; font-family: var(--nav-font); font-weight: 500; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; }
  .navmenu a i { font-size: 12px; line-height: 0; margin-left: 5px; }
  .navmenu li:hover>a, .navmenu .active { color: var(--nav-hover-color); }
  .navmenu .dropdown ul { margin: 0; padding: 10px 0; background: var(--nav-dropdown-background-color); display: block; position: absolute; visibility: hidden; left: 14px; top: 130%; opacity: 0; transition: 0.3s; border-radius: 6px; z-index: 99; box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a { padding: 10px 20px; font-size: 15px; text-transform: none; color: var(--nav-dropdown-color); }
  .navmenu .dropdown ul a i { font-size: 12px; }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover>a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover>ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover>ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle { color: var(--nav-color); font-size: 28px; line-height: 0; margin-right: 10px; cursor: pointer; transition: color 0.3s; }
  .navmenu { padding: 0; z-index: 9997; }
  .navmenu ul { display: none; list-style: none; position: fixed; inset: 60px 20px 20px 20px; padding: 10px 0; margin: 0; border-radius: 6px; background-color: var(--nav-mobile-background-color); overflow-y: auto; z-index: 9998; box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1); }
  .navmenu a { color: var(--nav-dropdown-color); padding: 10px 20px; font-family: var(--nav-font); font-size: 17px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; }
  .navmenu a i { font-size: 12px; line-height: 0; margin-left: 5px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%); }
  .navmenu a:hover, .navmenu .active { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown>.dropdown-active { display: block; }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle { color: #fff; position: absolute; font-size: 32px; top: 15px; right: 15px; margin-right: 0; z-index: 9999; }
  .mobile-nav-active .navmenu { position: fixed; inset: 0; background: rgba(33, 37, 41, 0.8); }
  .mobile-nav-active .navmenu>ul { display: block; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer { color: var(--default-color); background-color: #f8f9fa; font-size: 14px; padding-top: 50px; }
.footer .footer-about .logo span { color: var(--heading-color); font-family: var(--heading-font); font-size: 26px; font-weight: 700; }
.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; font-size: 16px; color: #555; margin-right: 10px; transition: 0.3s; }
.footer .social-links a:hover { color: var(--accent-color); border-color: var(--accent-color); }
.footer h4 { font-size: 16px; font-weight: bold; padding-bottom: 12px; }
.footer .footer-links { margin-bottom: 30px; }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul li { padding: 10px 0; display: flex; align-items: center; }
.footer .footer-links ul li:first-child { padding-top: 0; }
.footer .footer-links ul a { color: #555; display: inline-block; line-height: 1; }
.footer .footer-links ul a:hover { color: var(--accent-color); }
.footer .copyright { padding: 25px 0; border-top: 1px solid #ddd; }
.footer .credits { display: none; } /* Hide credits */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: 15px; z-index: 99999; background-color: var(--accent-color); width: 44px; height: 44px; border-radius: 50px; transition: all 0.4s; }
.scroll-top i { font-size: 24px; color: var(--contrast-color); line-height: 0; }
.scroll-top:hover { background-color: color-mix(in srgb, var(--accent-color), black 20%); }
.scroll-top.active { visibility: visible; opacity: 1; }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section { padding: 80px 0; scroll-margin-top: 90px; overflow: clip; }
@media (max-width: 1199px) { section, .section { scroll-margin-top: 66px; } }

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title { padding-bottom: 60px; position: relative; text-align: center; }
.section-title h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; padding-bottom: 20px; position: relative; }
.section-title h2:after { content: ""; position: absolute; display: block; width: 60px; height: 3px; background: var(--accent-color); left: 0; right: 0; bottom: 0; margin: auto; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero { padding-top: 160px; padding-bottom: 80px; }
.hero .hero-content h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; }
.hero .hero-content h1 .accent-text { color: var(--accent-color); }
@media (max-width: 992px) { .hero .hero-content { text-align: center; margin-bottom: 3rem; } .hero .hero-content h1 { font-size: 2.5rem; } }
.hero .company-badge { display: inline-flex; align-items: center; padding: 0.5rem 1rem; background-color: color-mix(in srgb, var(--accent-color), transparent 90%); border-radius: 50px; color: var(--accent-color); font-weight: 500; }
.hero .btn-primary { background-color: var(--accent-color); border-color: var(--accent-color); color: var(--contrast-color); padding: 0.75rem 2.5rem; border-radius: 50px; font-weight: 500; }
.hero .btn-link { color: var(--heading-color); text-decoration: none; font-weight: 500; }
.hero .hero-image img { max-width: 100%; height: auto; }
.hero .stats-row { border-radius: 20px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); padding: 1rem; }
.hero .stat-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; }
.hero .stat-item i { font-size: 2rem; color: var(--accent-color); background-color: color-mix(in srgb, var(--accent-color), transparent 90%); padding: 15px; border-radius: 50%; }
.hero .stat-item h4 { font-size: 1.1rem; margin-bottom: 0.25rem; font-weight: 600; }
.hero .stat-item p { font-size: 0.875rem; color: #6c757d; }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta { color: var(--accent-color); font-weight: 600; margin-bottom: 1rem; display: inline-block; }
.about .about-title { font-size: 2.25rem; margin-bottom: 1rem; font-weight: 700; }
.about .about-description { margin-bottom: 2rem; }
.about .feature-list { list-style: none; padding: 0; margin: 0; }
.about .feature-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 1rem; }
.about .feature-list li i { color: var(--accent-color); font-size: 1.25rem; }
.about .profile .profile-image { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.about .contact-info { padding: 1rem 1.5rem; background-color: #f8f9fa; border-radius: 0.5rem; }
.about .contact-info i { color: var(--accent-color); font-size: 1.5rem; }
.about .contact-info .contact-number { font-weight: 600; }
.about .about-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
@media (max-width: 991px) { .about .about-images-grid { grid-template-columns: 1fr; margin-top: 2rem; } }

/*--------------------------------------------------------------
# Brand Sections
--------------------------------------------------------------*/
.brand-section h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 15px; }
.brand-section .brand-logo { height: 50px; width: auto; }
.brand-section .brand-tagline { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.brand-section p { font-size: 1.1rem; line-height: 1.6; }
.brand-section ul { list-style: none; padding: 0; margin: 2rem 0; }
.brand-section ul li { padding: 5px 0; display: flex; align-items: center; font-size: 1.1rem; }
.brand-section ul i { font-size: 20px; margin-right: 8px; color: #28a745; }
.brand-section .btn { margin-top: 1rem; }

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .plans-title { font-size: 2rem; font-weight: 700; color: var(--heading-color); }
.pricing .pricing-card { height: 100%; padding: 2rem; background: var(--surface-color); border-radius: 1rem; transition: all 0.3s ease; border: 1px solid #e9ecef; }
.pricing .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.pricing .pricing-card.popular { background: var(--accent-color); color: var(--contrast-color); border-color: var(--accent-color); }
.pricing .pricing-card.popular h3, .pricing .pricing-card.popular .price, .pricing .pricing-card.popular p, .pricing .pricing-card.popular .features-list li { color: var(--contrast-color); }
.pricing .pricing-card.popular .features-list i { color: var(--contrast-color); }
.pricing .pricing-card.popular .btn-light { background: var(--contrast-color); color: var(--accent-color); }
.pricing .pricing-card .popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #ffc107; color: #343a40; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 600; }
.pricing .price .amount { font-size: 3.5rem; font-weight: 700; }
.pricing .features-list { list-style: none; padding: 0; margin: 2rem 0; }
.pricing .features-list li { display: flex; align-items: center; margin-bottom: 1rem; }
.pricing .features-list i { color: var(--accent-color); margin-right: 0.75rem; font-size: 1.25rem; }
.pricing .btn { width: 100%; padding: 0.75rem 1.5rem; font-weight: 500; border-radius: 50px; }

/*--------------------------------------------------------------
# Features 2 (Easy Ordering) Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: color-mix(in srgb, var(--accent-color), transparent 90%); }
.features-2 .feature-item .feature-icon i { font-size: 24px; color: var(--accent-color); }
.features-2 .feature-item .feature-content h3 { font-size: 1.25rem; font-weight: 600; }
.features-2 .office-boost-img { max-width: 400px; /* Bigger Office Boost Image */ height: auto; }
@media (max-width: 991.98px) { .features-2 .feature-item { text-align: center !important; } .features-2 .feature-item .d-flex { flex-direction: column; text-align: center; justify-content: center !important; } }

/*--------------------------------------------------------------
# Services (Our Products) Section
--------------------------------------------------------------*/
.services .service-card { height: 100%; padding: 30px; background: var(--surface-color); border-radius: 10px; border: 1px solid #e9ecef; transition: all 0.3s ease; }
.services .service-card:hover { transform: translateY(-5px); box-shadow: 0 0 25px rgba(0, 0, 0, 0.08); border-color: var(--accent-color); }
.services .service-card .icon { width: 50px; height: 50px; margin-right: 20px; background: color-mix(in srgb, var(--accent-color), transparent 90%); display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--accent-color); font-size: 24px; }
.services .service-card h3 { font-size: 1.25rem; font-weight: 700; }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item { background-color: var(--surface-color); box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06); padding: 30px; border-radius: 10px; height: 100%; }
.testimonials .testimonial-item .testimonial-img { width: 90px; border-radius: 50%; border: 4px solid var(--surface-color); float: left; margin: 0 10px 0 0; }
.testimonials .testimonial-item h3 { font-size: 18px; font-weight: bold; margin: 10px 0 5px 0; }
.testimonials .testimonial-item h4 { font-size: 14px; color: #6c757d; }
.testimonials .testimonial-item .stars i { color: #ffc107; margin: 0 1px; }
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right { color: color-mix(in srgb, var(--accent-color), transparent 80%); font-size: 26px; }
.testimonials .testimonial-item p { font-style: italic; margin: 15px 0 0 0; }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title { font-size: 2.5rem; font-weight: 700; color: var(--heading-color); }
.faq .faq-container .faq-item { background-color: var(--surface-color); position: relative; padding: 20px; margin-bottom: 15px; border-radius: 10px; overflow: hidden; border: 1px solid #e9ecef; }
.faq .faq-container .faq-item h3 { font-weight: 600; font-size: 16px; margin: 0 30px 0 0; cursor: pointer; }
.faq .faq-container .faq-item .faq-content { display: grid; grid-template-rows: 0fr; transition: 0.3s ease-in-out; visibility: hidden; opacity: 0; }
.faq .faq-container .faq-item .faq-content p { margin-bottom: 0; overflow: hidden; padding-top: 10px; }
.faq .faq-container .faq-item .faq-toggle { position: absolute; top: 20px; right: 20px; font-size: 16px; transition: 0.3s; cursor: pointer; }
.faq .faq-container .faq-active h3 { color: var(--accent-color); }
.faq .faq-container .faq-active .faq-content { grid-template-rows: 1fr; visibility: visible; opacity: 1; }
.faq .faq-container .faq-active .faq-toggle { transform: rotate(90deg); }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box { background-color: var(--accent-color); color: var(--contrast-color); padding: 2rem; border-radius: 1rem; height: 100%; }
.contact .info-box h3, .contact .info-box .content h4 { color: var(--contrast-color); }
.contact .info-box p { opacity: 0.9; }
.contact .info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.contact .info-item:last-child { margin-bottom: 0; }
.contact .info-item .icon-box { width: 3.5rem; height: 3.5rem; background-color: color-mix(in srgb, var(--contrast-color), transparent 85%); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact .info-item .icon-box i { font-size: 1.5rem; color: var(--contrast-color); }
.contact .contact-form { background-color: var(--surface-color); padding: 2rem; border-radius: 1rem; height: 100%; box-shadow: 0 0 30px rgba(0, 0, 0, 0.08); }
.contact .contact-form .form-control { border-color: #dee2e6; }
.contact .contact-form .form-control:focus { box-shadow: none; border-color: var(--accent-color); }
.contact .contact-form .btn { background-color: var(--accent-color); color: var(--contrast-color); padding: 0.75rem 2rem; border-radius: 50px; }