/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8B0000;
    --gold: #D4AF37;
    --light-gold: #F4E4B7;
    --white: #FFFFFF;
    --off-white: #F9F6F0;
    --dark-gray: #333333;
    --light-gray: #666666;
    --border-color: #E0D6C2;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #700000;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background-color: #C19A1F;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-red);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 600px;
    background: var(--off-white);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    flex: 1;
    padding: 40px;
    z-index: 2;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    line-height: 1.8;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.slide-image img {
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--primary-red);
}

.slider-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(139, 0, 0, 0.8));
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 90px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.section-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
    padding: 80px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.product-info p {
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.whatsapp-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    padding: 80px 0;
    background-color: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    width: 100%;
    height: auto;
}

/* ============================================
   PRODUCT DETAILS
   ============================================ */
.products-section {
    padding: 80px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.product-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-gray);
}

.benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.benefits ul {
    margin-bottom: 25px;
}

.benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-price {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
}

.product-weight {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
    padding: 80px 0;
    background-color: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    margin-bottom: 20px;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.founder-info p {
    color: var(--light-gray);
    font-style: italic;
}

.founder-story h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-red);
}

.founder-story p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-gray);
    font-size: 1.1rem;
}

blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--light-gray);
}

blockquote p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.8;
}

blockquote cite {
    font-weight: 600;
    color: var(--primary-red);
    font-style: normal;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    padding: 80px 0;
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--gold);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    margin: 0 20px;
    min-width: 120px;
}

.timeline-content {
    flex: 2;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-red);
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-gray);
    flex-wrap: wrap;
    gap: 10px;
}

.news-date, .news-category {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-category {
    background-color: var(--light-gold);
    color: var(--dark-gray);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-red);
}

.news-content p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    padding: 10px 18px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--dark-gray);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.page-btn.next {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-red);
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--light-gray);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.contact-text p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.social-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.map-placeholder {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.map-content i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.map-content p {
    color: var(--light-gray);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.map-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.map-notes p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: var(--light-gray);
}

.map-notes i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--off-white);
}

.faq-question:hover {
    background-color: #f0ebe0;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-red);
    flex: 1;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.6;
    padding-top: 10px;
}

/* ============================================
   UPCOMING PRODUCTS
   ============================================ */
.upcoming-products {
    padding: 80px 0;
    background-color: var(--off-white);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.upcoming-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.upcoming-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.upcoming-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.upcoming-card p {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.upcoming-tag {
    display: inline-block;
    background-color: var(--light-gold);
    color: var(--dark-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   ORDER CTA
   ============================================ */
.order-cta {
    padding: 80px 0;
    background-color: var(--primary-red);
    color: var(--white);
    text-align: center;
}

.order-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.order-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.testimonial-content {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    font-size: 1.05rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.testimonial-author span {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================
   PRODUCTS FILTER
   ============================================ */
.products-filter {
    padding: 30px 0;
    background-color: var(--off-white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h3, .footer h4 {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff6b6b;
    margin: 0 5px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* For JavaScript-controlled animations */
.fade-in.js-controlled {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.js-controlled.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-date {
        flex: 0 0 120px;
        margin-right: 20px;
        margin-left: 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        gap: 25px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-image {
        padding: 10px;
    }
    
    .slide-image img {
        max-height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .map-notes {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .map-notes p {
        justify-content: flex-start;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .page-header {
        margin-top: 80px;
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        padding: 20px;
    }
    
    .product-info,
    .news-content {
        padding: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-date {
        flex: 0 0 100px;
        margin-right: 15px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .map-placeholder {
        padding: 30px 20px;
    }
    
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .order-cta h2 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .social-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-info h3,
    .value-card h3,
    .upcoming-card h3 {
        font-size: 1.3rem;
    }
    
    .product-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .founder-story h2 {
        font-size: 2rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .footer-logo img {
        height: 40px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .slider-btn,
    .slider-dots,
    .whatsapp-btn,
    .footer {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
/* Developer Credit Styling */
.developer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit a {
    color: #D4AF37; /* Gold color */
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #FFD700; /* Lighter gold on hover */
    text-decoration: underline;
}

/* Update footer-bottom for better spacing */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
/* ===============================
   Animations & Toast Notifications
================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e1e1e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
