/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    padding-top: 76px;
    font-size: 0.9rem;
}

.about-page {
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    background-color: transparent;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

.hero-content h1,
.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    color: white;
}

.hero-content .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
}

.hero-buttons .btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.carousel-indicators {
    margin-bottom: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #FF6B6B;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content .lead {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn-outline-light {
        margin-left: 0 !important;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    background: url('../img/about-bg.jpg') center/cover no-repeat fixed;
    padding: 80px 0;
    color: #333;
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.header-line {
    width: 80px;
    height: 3px;
    background: #FF6B6B;
    margin: 1rem auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-title {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.85rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
}

.value-item i {
    color: #FF6B6B;
    font-size: 1.2rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }
}

/* Products Section Styles */
.products-section {
    background-color: #f8f9fa;
}

.product-category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FF6B6B;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    color: #FF6B6B;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 107, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-overlay i {
    color: white;
    font-size: 2rem;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Large Product Card (for Khemere Mix) */
.product-card.large .product-image {
    aspect-ratio: 16/9;
}

.product-card.large .product-info {
    padding: 2rem;
}

.product-card.large h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.product-features i {
    color: #FF6B6B;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.3rem;
    }

    .product-card.large .product-info {
        padding: 1.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 60px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.author-image-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.author-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF6B6B;
    padding: 2px;
    background: white;
}

.author-info {
    flex-grow: 1;
}

.author-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.author-info span {
    color: #FF6B6B;
    font-size: 0.8rem;
    opacity: 0.9;
}

.testimonial-rating {
    margin-top: 0.3rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.9rem;
    margin-right: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.testimonial-icon {
    position: absolute;
    right: 0;
    top: 0;
    color: #FF6B6B;
    font-size: 1.8rem;
    opacity: 0.2;
}

.testimonial-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Navigation Styles */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B6B;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(228, 202, 202, 0.1);
}

.nav-button:hover {
    background: #FF6B6B;
    color: white;
    transform: translateY(-2px);
}

.testimonial-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.testimonial-indicators button.active .indicator-dot {
    background: #FF6B6B;
    transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .author-image-wrapper {
        width: 50px;
        height: 50px;
    }

    .testimonial-icon {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .nav-button {
        width: 35px;
        height: 35px;
    }
}

/* Footer Styles - Size Reduction */
.footer-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0 15px;
    position: relative;
}

.footer-brand h3 {
    color: #FF6B6B;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.footer-about {
    color: #b4bcc8;
    line-height: 1.6;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6B6B;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-contact h4,
.footer-why-us h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-item i {
    color: #FF6B6B;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.contact-item p {
    color: #b4bcc8;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: #b4bcc8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
}

.newsletter-form .form-control::placeholder {
    color: #b4bcc8;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.btn-subscribe {
    background: #FF6B6B;
    color: #ffffff;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #ff5252;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.footer-bottom-links a {
    color: #b4bcc8;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-bottom-links a:hover {
    color: #FF6B6B;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.8rem;
    }

    .copyright {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Navbar Styles */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FF6B6B !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 50%;
}

.navbar-nav {
    gap: 0.3rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #4A4A4A !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover {
    background-color: #FF6B6B;
    color: white !important;
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: #FF6B6B;
    color: white !important;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 0.8rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem !important;
    }
    
    .navbar-collapse {
        background-color: white;
        border-radius: 10px;
        padding: 0.8rem;
        margin-top: 0.8rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Product Card Mini Features */
.product-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.product-features-mini span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
}

.product-features-mini i {
    color: #FF6B6B;
    font-size: 0.8rem;
}

/* Ensure consistent image heights */
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Ensure consistent card heights */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info p {
    flex-grow: 1;
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 107, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 1rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-info i {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Gallery Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Gallery Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
    }

    .gallery-info p {
        font-size: 0.85rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
    padding-top: 120px;
}

.contact-form-card,
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-weight: 500;
    color: #444;
}

.contact-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #FF6B6B;
}

.contact-form .form-control {
    border-left: none;
    padding-left: 0;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.contact-form .btn-primary {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #FF6B6B;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info-item p {
    margin: 0;
    color: #666;
}

.contact-info-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #FF6B6B;
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 100px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-item {
        margin-bottom: 1.5rem;
    }

    .contact-info-item i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

/* Hero Section Header Size Adjustments */
.hero-content h1 {
    font-size: 2.2rem !important;
}

.hero-content .lead {
    font-size: 1rem;
}

/* Section Headers Size Adjustments */
.section-header h2 {
    font-size: 1.75rem !important;
}

.section-header .lead {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content .lead {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .section-header .lead {
        font-size: 0.85rem;
    }
}

/* Why Choose Us Styles */
.footer-why-us h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.why-us-item i {
    color: #FF6B6B;
    font-size: 1rem;
}

.why-us-item p {
    color: #b4bcc8;
    margin: 0;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-us-item {
        gap: 0.6rem;
    }
    
    .why-us-item p {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-icon {
        width: 30px;
        height: 30px;
    }
}
