/* ========================================
   Aryos Food and Beverages - Custom Styles
   Primary Color: #68420D
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #68420D;
    --primary-dark: #4a2f09;
    --primary-light: #8B5A2B;
    --secondary-color: #F5E6D3;
    --accent-color: #D4A574;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #FDF8F3;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(104, 66, 13, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: calc(100% - 40px);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 0;
}

/* Dropdown hover effect */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* ========================================
   Hero Banner Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(104, 66, 13, 0.9) 0%, rgba(74, 47, 9, 0.15) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 400px;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--primary-light);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(104, 66, 13, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.product-item {
    padding: 10px;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item h5 {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Products Slider */
.products-slider {
    padding: 0 50px;
}

.products-slider .slick-dots {
    bottom: -40px;
}

.products-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.choose-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.choose-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   Why Indian Market Section
   ======================================== */
.indian-market-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.market-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.market-card:hover {
    border-bottom-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(104, 66, 13, 0.1);
    transform: translateY(-5px);
}

.market-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.market-icon i {
    font-size: 2rem;
    color: var(--white);
}

.market-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.market-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    padding: 80px 0 30px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-slider .slick-prev {
        left: 10px;
    }

    .products-slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: calc(50% - 10px);
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image::before {
        display: none;
    }

    .choose-card,
    .market-card {
        margin-bottom: 20px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(104, 66, 13, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Hero outline button */
.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Slick slider custom styles */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    border-radius: 50%;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-dark) !important;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev i,
.slick-next i {
    color: var(--white);
    font-size: 1.2rem;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

/* ========================================
   Breadcrumb Section
   ======================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(104, 66, 13, 0.9) 0%, rgba(74, 47, 9, 0.85) 100%),
                url('../images/breadcrumb-bg.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
    text-align: center;
}

.breadcrumb-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--accent-color);
}

.breadcrumb-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Welcome Section (About Page)
   ======================================== */
.welcome-section {
    padding: 80px 0;
}

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.welcome-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.welcome-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.welcome-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(104, 66, 13, 0.15);
}

/* ========================================
   Mission & Vision Section
   ======================================== */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mv-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mv-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.mv-content {
    padding: 30px;
}

.mv-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mv-content p {
    margin: 0;
    font-size: 1rem;
}

/* ========================================
   Values Section
   ======================================== */
.values-section {
    padding: 80px 0;
}

.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(104, 66, 13, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   Who We Are Section
   ======================================== */
.who-we-are-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.who-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.who-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.who-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(104, 66, 13, 0.15);
}

@media (max-width: 991.98px) {
    .welcome-image,
    .who-image {
        margin-top: 40px;
    }

    .who-we-are-section .who-image {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-content a {
    color: var(--text-light);
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-social h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(104, 66, 13, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    padding: 14px 35px;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.map-section iframe {
    display: block;
}

@media (max-width: 991.98px) {
    .contact-info {
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ========================================
   Products Page
   ======================================== */

/* Product Navigation */
.product-nav-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.product-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-nav a {
    padding: 10px 25px;
    border-radius: 30px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-nav a:hover,
.product-nav a.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Product Category Section */
.product-category-section {
    padding: 80px 0;
}

.product-category-section.alt-bg {
    background-color: var(--bg-light);
}

.category-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(104, 66, 13, 0.15);
}

.category-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.category-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.product-list {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.product-list h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tags span {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-tags span:hover {
    background: var(--primary-color);
    color: var(--white);
}

.alt-bg .product-tags span {
    background: var(--white);
}

@media (max-width: 991.98px) {
    .category-image {
        margin-bottom: 40px;
    }

    .product-category-section .order-lg-1 {
        order: 2;
    }

    .product-category-section .order-lg-2 {
        order: 1;
    }
}
