/* ========================
   Custom Variables & Reset
   ======================== */

:root {
    --primary: #E8533A;
    --primary-dark: #C4412B;
    --secondary: #FDE8E3;
    --tertiary: #FEF8F6;
    --accent-teal: #3CBFB0;
    --accent-purple: #8B5EA7;
    --accent-yellow: #F5A623;
    --accent-green: #6AC447;
    --light: #fff;
    --dark: #2D1657;
    --text-primary: #2D1657;
    --text-secondary: #6B7280;
    --shadow: 0 10px 30px rgba(232, 83, 58, 0.1);
    --shadow-lg: 0 20px 60px rgba(232, 83, 58, 0.15);
    --transition: all 0.3s ease;
    --site-gutter: clamp(1.5rem, 5vw, 4.5rem);
    --site-max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Site-wide horizontal inset for all pages */
.container {
    width: 100%;
    max-width: var(--site-max-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--site-gutter) !important;
    padding-right: var(--site-gutter) !important;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ========================
   Navigation
   ======================== */

.nav-wrapper {
    background: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.nav-wrapper.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
    box-sizing: border-box;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
    position: relative;
    z-index: 1002;
}

.nav-wrapper.scrolled .nav-content {
    height: 75px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-wrapper.scrolled .logo img {
    height: 55px;
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    display: none;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(232, 83, 58, 0.35);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 83, 58, 0.45);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, box-shadow 0.4s ease;
    box-shadow: none;
    padding-top: 90px;
    box-sizing: border-box;
}

.mobile-menu.active {
    max-height: 100dvh;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-wrapper.scrolled .mobile-menu {
    padding-top: 75px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0.75rem var(--site-gutter) 1rem;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border-radius: 10px;
}

.mobile-nav-link i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--tertiary);
    color: var(--primary);
    transform: translateX(10px);
}

.mobile-cta-wrapper {
    padding: 0 var(--site-gutter) 2rem;
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta:hover {
    background: #967a51;
    transform: scale(1.02);
}

.text-primary {
    color: var(--primary);
}

/* Desktop View */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

/* ========================
   Hero Section
   ======================== */

.hero-section {
    height: 100vh;
    background-image: url('assets/images/new-images/webp/flavor(natural%20color2).webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(45, 22, 87, 0.55) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

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

.hero-copy {
    padding: 2.5rem 2.25rem;
    background: rgba(25, 12, 48, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.hero-affiliation {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-title .text-primary {
    color: #FFD0B8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 32px rgba(232, 83, 58, 0.35);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.65;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn-secondary-hero {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    border: 2px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-section .btn-secondary-hero:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-primary {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #F07A30);
    color: var(--light);
    box-shadow: 0 5px 15px rgba(232, 83, 58, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 83, 58, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================
   Stats Section
   ======================== */

.stats-section {
    padding: 4rem 0;
    background: var(--light);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card:nth-child(2) .stat-number { background: linear-gradient(135deg, var(--accent-teal), #2AA99B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card:nth-child(3) .stat-number { background: linear-gradient(135deg, var(--accent-purple), #7047A0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card:nth-child(4) .stat-number { background: linear-gradient(135deg, var(--accent-green), #4A9A30); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================
   Section Styling
   ======================== */

.flavors-section,
.about-section,
.process-section,
.testimonials-section,
.contact-section {
    padding: 6rem 0;
}

.flavors-section {
    background: var(--tertiary);
}

.about-section {
    background: var(--light);
}

.process-section {
    background: var(--secondary);
}

.testimonials-section {
    background: var(--light);
}

.contact-section {
    background-image: url('assets/images/new-images/webp/high-angle-mix-alcoholic-drinks.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 248, 246, 0.96), rgba(253, 232, 227, 0.96));
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    padding: 4px 16px;
    background: var(--secondary);
    border-radius: 30px;
}
.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 70%;
    background: var(--primary);
    border-radius: 4px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================
   Flavor Cards
   ======================== */

.flavor-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flavor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.flavor-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.flavor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.flavor-card:hover .flavor-image img {
    transform: scale(1.1);
}

.flavor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 83, 58, 0.88), rgba(245, 166, 35, 0.88));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.flavor-card:hover .flavor-overlay {
    opacity: 1;
}

.explore-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.explore-btn:hover {
    transform: rotate(90deg);
}

.flavor-content {
    padding: 2rem;
}

.flavor-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.flavor-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.flavor-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flavor-tag {
    background: var(--tertiary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================
   About Section
   ======================== */

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.badge-content {
    text-align: center;
    color: var(--light);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.about-feature:nth-child(2) .feature-icon { background: #E0F7F5; color: var(--accent-teal); }
.about-feature:nth-child(3) .feature-icon { background: #F0EBF8; color: var(--accent-purple); }
.about-feature:nth-child(4) .feature-icon { background: #FEF6E4; color: var(--accent-yellow); }
.about-feature:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-secondary);
}

/* ========================
   Process Section
   ======================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Center the 4th step when it wraps alone on the second row */
.process-step:nth-child(4):last-child {
    grid-column: 2;
}

.process-step {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #F07A30);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(232, 83, 58, 0.4);
}
.process-step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--accent-teal), #2AA99B); box-shadow: 0 4px 15px rgba(60,191,176,0.4); }
.process-step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--accent-purple), #7047A0); box-shadow: 0 4px 15px rgba(139,94,167,0.4); }
.process-step:nth-child(4) .step-number { background: linear-gradient(135deg, var(--accent-yellow), #E09010); box-shadow: 0 4px 15px rgba(245,166,35,0.4); }

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}
.process-step:nth-child(2) .step-icon { background: #E0F7F5; color: var(--accent-teal); }
.process-step:nth-child(3) .step-icon { background: #F0EBF8; color: var(--accent-purple); }
.process-step:nth-child(4) .step-icon { background: #FEF6E4; color: var(--accent-yellow); }

.step-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================
   Testimonials
   ======================== */

.testimonial-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #ffa500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================
   Contact Section
   ======================== */

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-item:nth-child(2) .contact-icon { background: #E0F7F5; color: var(--accent-teal); }
.contact-item:nth-child(3) .contact-icon { background: #F0EBF8; color: var(--accent-purple); }
.contact-item:nth-child(4) .contact-icon { background: #FEF6E4; color: var(--accent-yellow); }
.contact-item:hover .contact-icon { transform: scale(1.1); }

.contact-details .contact-value a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}
.contact-details .contact-value a:hover {
    color: var(--primary);
}
.contact-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
}
.contact-whatsapp-inline .fa-whatsapp {
    color: #25d366;
    font-size: 1.1em;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
}

/* Contact Form */

.contact-form-wrapper {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 83, 58, 0.12);
}

.btn-submit {
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 83, 58, 0.4);
}

/* ========================
   Footer
   ======================== */

.footer {
    background: #fff;
    color: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--primary), var(--accent-yellow), var(--accent-green), var(--accent-teal), var(--accent-purple)) 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 85px;
    width: auto;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    background: var(--tertiary);
    color: var(--dark);
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
}

.footer-affiliation {
    color: var(--text-secondary);
    opacity: 0.85;
}

.footer-affiliation::before {
    content: '·';
    margin: 0 0.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ========================
   WhatsApp CTA (fixed)
   ======================== */

.whatsapp-cta {
    position: fixed;
    bottom: 1.75rem;
    left: max(1rem, var(--site-gutter));
    z-index: 998;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.whatsapp-cta-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-cta-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.whatsapp-cta-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.15rem;
    max-width: 250px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(45, 22, 87, 0.08);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

.whatsapp-cta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.whatsapp-cta-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.whatsapp-cta-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0.65rem;
}

.whatsapp-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #128c7e;
}

.whatsapp-cta-action i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.whatsapp-cta-card:hover .whatsapp-cta-action i {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .whatsapp-cta {
        bottom: 1.25rem;
        left: 1rem;
    }

    .whatsapp-cta-card {
        display: none;
    }

    .whatsapp-cta-btn {
        width: 52px;
        height: 52px;
        font-size: 1.65rem;
    }
}

/* ========================
   Catalog CTA (fixed)
   ======================== */

.catalog-cta {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 997;
    max-width: 300px;
}

.catalog-cta-panel {
    background: #fff;
    border-radius: 16px;
    padding: 1.1rem 1.15rem 1rem;
    border: 1px solid rgba(45, 22, 87, 0.08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.catalog-cta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.catalog-cta-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.catalog-cta-body {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.catalog-cta-cover {
    flex-shrink: 0;
    width: 72px;
    filter: drop-shadow(0 6px 14px rgba(232, 83, 58, 0.18));
}

.catalog-cta-cover img {
    width: 72px;
    height: auto;
    display: block;
}

.catalog-cta-desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.catalog-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), #F07A30);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(232, 83, 58, 0.35);
}

.catalog-cta-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.catalog-cta-btn i {
    font-size: 0.72rem;
}

.catalog-cta-fab {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #F07A30);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(232, 83, 58, 0.4);
}

.catalog-cta-fab:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .catalog-cta {
        bottom: 5.5rem;
        right: 1rem;
        max-width: none;
    }

    .catalog-cta-panel {
        display: none;
    }

    .catalog-cta-fab {
        display: flex;
    }

    .scroll-top {
        bottom: 1.25rem;
        right: 1rem;
    }
}

@media (min-width: 901px) {
    .scroll-top {
        bottom: 2rem;
        right: 2rem;
    }

    .catalog-cta ~ .scroll-top {
        bottom: 2rem;
    }
}

@media (min-width: 901px) and (max-height: 760px) {
    .catalog-cta-panel {
        padding: 0.85rem 0.95rem;
    }

    .catalog-cta-body {
        margin-bottom: 0.65rem;
    }

    .catalog-cta-cover {
        width: 60px;
    }

    .catalog-cta-cover img {
        width: 60px;
    }
}

/* ========================
   Scroll to Top Button
   ======================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================
   Animations
   ======================== */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================
   Responsive Design
   ======================== */

@media (max-width: 768px) {
    .hero-copy {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-affiliation {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .about-image img {
        height: 350px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(4):last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .flavors-section,
    .about-section,
    .process-section,
    .testimonials-section,
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ========================
   AOS Animation Overrides
   ======================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========================
   Page Header (for all pages)
   ======================== */

.page-header {
    height: 50vh;
    min-height: 400px;
    background-image: url('assets/images/new-images/webp/citrus2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 90px;
}

.page-header--about {
    background-image: url('assets/images/new-images/webp/confectionery.webp');
    background-position: center 40%;
}

.page-header--blog {
    background-image: url('assets/images/new-images/webp/bakery3.webp');
    background-position: center center;
}

.page-header--process {
    background-image: url('assets/images/new-images/chocolate-Cacao.jpg');
    background-position: center center;
}

.page-header--contact {
    background-image: url('assets/images/new-images/webp/Beverage.webp');
    background-position: center center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 22, 87, 0.75), rgba(232, 83, 58, 0.55));
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--tertiary);
    margin-bottom: 2rem;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--light);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb i {
    font-size: 0.75rem;
}

/* ========================
   Filter Section (Flavors Page)
   ======================== */

.filter-section {
    padding: 3rem 0;
    background: var(--light);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--tertiary);
    color: var(--text-primary);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.flavors-grid-section {
    padding: 4rem 0 6rem;
    background: var(--tertiary);
}

/* ========================
   CTA Section
   ======================== */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #4A1F8A 50%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

/* ========================
   About Page Styles
   ======================== */

.about-story-section {
    padding: 6rem 0;
    background: var(--light);
}

.about-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-section {
    padding: 6rem 0;
    background: var(--tertiary);
}

.value-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.value-card:nth-child(2) .value-icon { background: #E0F7F5; color: var(--accent-teal); }
.value-card:nth-child(3) .value-icon { background: #F0EBF8; color: var(--accent-purple); }
.value-card:nth-child(4) .value-icon { background: #FEF6E4; color: var(--accent-yellow); }
.value-card:nth-child(5) .value-icon { background: #EDFCE5; color: var(--accent-green); }
.value-card:hover .value-icon { transform: scale(1.12) rotate(-6deg); }

.value-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Section */

.team-section {
    padding: 6rem 0;
    background: var(--light);
}

.team-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--tertiary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--light);
}

/* Certifications */

.certifications-section {
    padding: 5rem 0 6rem;
    background: #eef4f6;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 22, 87, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.certificate-card-image {
    padding: 0.75rem;
    background: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.certificate-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 520px;
    margin: 0 auto;
    filter: blur(2.5px);
}

@media (max-width: 900px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .certificate-card-image {
        min-height: 400px;
    }

    .certificate-card-image img {
        max-height: 440px;
        filter: blur(2px);
    }
}

/* ========================
   Process Page Styles
   ======================== */

.process-overview-section {
    padding: 6rem 0;
    background: var(--light);
}

.process-detailed-timeline {
    margin-top: 4rem;
}

.process-detailed-step {
    display: grid;
    grid-template-columns: 80px 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 6rem;
    position: relative;
    min-height: 0;
}

.process-detailed-step.reverse {
    grid-template-columns: 80px 1.5fr 1fr;
}

.process-detailed-step.reverse .step-visual {
    order: 2;
}

.process-detailed-step.reverse .step-detailed-content {
    order: 1;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    align-self: start;
}

.step-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    align-self: stretch;
    height: 100%;
    min-height: min(380px, 52vh);
}

.step-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.step-detailed-content {
    padding: 2rem;
}

.step-icon-large {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.step-title-large {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-description-large {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.step-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Why Choose Section */

.why-choose-section {
    padding: 6rem 0;
    background: var(--tertiary);
}

.advantage-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.advantage-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.advantage-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================
   Contact Page Styles
   ======================== */

.contact-page-section {
    padding: 6rem 0;
    background: var(--light);
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* هر کارت رنگ خودش */
.contact-info-card:nth-child(1) { border-color: rgba(232,83,58,0.25); }
.contact-info-card:nth-child(1):hover { border-color: var(--primary); }
.contact-info-card:nth-child(2) { border-color: rgba(60,191,176,0.25); }
.contact-info-card:nth-child(2):hover { border-color: var(--accent-teal); }
.contact-info-card:nth-child(3) { border-color: rgba(139,94,167,0.25); }
.contact-info-card:nth-child(3):hover { border-color: var(--accent-purple); }
.contact-info-card:nth-child(4) { border-color: rgba(245,166,35,0.25); }
.contact-info-card:nth-child(4):hover { border-color: var(--accent-yellow); }

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

/* آیکون هر کارت رنگ متفاوت از لوگو */
.contact-info-card:nth-child(1) .contact-card-icon { background: var(--secondary);  color: var(--primary); }
.contact-info-card:nth-child(2) .contact-card-icon { background: #E0F7F5; color: var(--accent-teal); }
.contact-info-card:nth-child(3) .contact-card-icon { background: #F0EBF8; color: var(--accent-purple); }
.contact-info-card:nth-child(4) .contact-card-icon { background: #FEF6E4; color: var(--accent-yellow); }

.contact-info-card:nth-child(1):hover .contact-card-icon { background: var(--primary);        color: #fff; transform: scale(1.12) rotate(-6deg); }
.contact-info-card:nth-child(2):hover .contact-card-icon { background: var(--accent-teal);    color: #fff; transform: scale(1.12) rotate(-6deg); }
.contact-info-card:nth-child(3):hover .contact-card-icon { background: var(--accent-purple);  color: #fff; transform: scale(1.12) rotate(-6deg); }
.contact-info-card:nth-child(4):hover .contact-card-icon { background: var(--accent-yellow);  color: #fff; transform: scale(1.12) rotate(-6deg); }

.contact-card-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: -0.5rem 0 0.85rem;
}

.contact-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
}
.contact-whatsapp-link .fa-whatsapp {
    color: #25d366;
    font-size: 1.2em;
}

.contact-info-card:nth-child(4) .contact-card-title {
    margin-bottom: 0.35rem;
}

.contact-card-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-card-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card-text a:hover {
    color: var(--primary);
}

.contact-social {
    background: linear-gradient(135deg, var(--dark) 0%, #4A1F8A 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-social-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link-contact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

/* هر شبکه اجتماعی رنگ لوگو */
.social-link-contact:nth-child(1) { background: var(--secondary);  color: var(--primary); }
.social-link-contact:nth-child(2) { background: #E0F7F5; color: var(--accent-teal); }
.social-link-contact:nth-child(3) { background: #F0EBF8; color: var(--accent-purple); }
.social-link-contact:nth-child(4) { background: #EDFCE5; color: var(--accent-green); }

.social-link-contact:nth-child(1):hover { background: var(--primary);       color: #fff; transform: scale(1.15) translateY(-4px); box-shadow: 0 6px 16px rgba(232,83,58,0.45); }
.social-link-contact:nth-child(2):hover { background: var(--accent-teal);   color: #fff; transform: scale(1.15) translateY(-4px); box-shadow: 0 6px 16px rgba(60,191,176,0.45); }
.social-link-contact:nth-child(3):hover { background: var(--accent-purple); color: #fff; transform: scale(1.15) translateY(-4px); box-shadow: 0 6px 16px rgba(139,94,167,0.45); }
.social-link-contact:nth-child(4):hover { background: var(--accent-green);  color: #fff; transform: scale(1.15) translateY(-4px); box-shadow: 0 6px 16px rgba(106,196,71,0.45); }

/* Contact Form Container */

.contact-form-container {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    grid-column: span 2;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
}

/* Map Section */

.map-section {
    padding: 4rem 0;
    background: var(--tertiary);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */

.faq-section {
    padding: 6rem 0;
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

details.faq-item {
    background: var(--light);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

details.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    list-style: none;
    list-style-type: none;
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
    display: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

details.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid rgba(232, 83, 58, 0.12);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* FAQ rows stay visible & tappable (global AOS hides [data-aos] until .aos-animate) */
.faq-section details.faq-item[data-aos] {
    opacity: 1;
    transform: none;
}

/* ========================
   Responsive Adjustments for New Pages
   ======================== */

@media (max-width: 1024px) {
    .process-detailed-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-detailed-step.reverse {
        grid-template-columns: 1fr;
    }
    
    .process-detailed-step.reverse .step-visual,
    .process-detailed-step.reverse .step-detailed-content {
        order: initial;
    }
    
    .step-number-large {
        font-size: 3rem;
    }
    
    .contact-form-container {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .step-visual {
        min-height: 280px;
    }
}

/* ========================
   Blog Preview (Index Page)
   ======================== */

.blog-preview-section {
    padding: 6rem 0;
    background-color: #fff;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(254, 248, 246, 0.92) 50%, rgba(255, 255, 255, 0.96) 100%),
        url('assets/images/new-images/webp/confectionery.webp');
    background-size: auto, cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.blog-preview-card {
    background: var(--tertiary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(232,83,58,0.13);
}

.blog-preview-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-img img {
    transform: scale(1.07);
}

.blog-preview-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
}

.blog-preview-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-preview-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-preview-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-preview-meta .fa-calendar-alt { color: var(--accent-teal); }
.blog-preview-meta .fa-clock        { color: var(--accent-purple); }

.blog-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.blog-preview-excerpt {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
    align-self: flex-start;
}

.blog-preview-link i { transition: transform 0.25s; }
.blog-preview-link:hover { border-color: var(--primary); }
.blog-preview-link:hover i { transform: translateX(5px); }

/* ========================
   Colorful Icons (Logo Colors)
   ======================== */

/* Mobile nav icons */
.mobile-nav-link .fa-home         { color: var(--primary); }
.mobile-nav-link .fa-leaf         { color: var(--accent-green); }
.mobile-nav-link .fa-info-circle  { color: var(--accent-teal); }
.mobile-nav-link .fa-cogs         { color: var(--accent-purple); }
.mobile-nav-link .fa-envelope     { color: var(--accent-yellow); }

/* About feature icons - icon color inside wrapper */
.about-feature:nth-child(1) .feature-icon i { color: var(--primary); }
.about-feature:nth-child(2) .feature-icon i { color: var(--accent-teal); }
.about-feature:nth-child(3) .feature-icon i { color: var(--accent-purple); }
.about-feature:nth-child(4) .feature-icon i { color: var(--accent-yellow); }

/* Process step icons */
.process-step:nth-child(1) .step-icon i { color: var(--primary); }
.process-step:nth-child(2) .step-icon i { color: var(--accent-teal); }
.process-step:nth-child(3) .step-icon i { color: var(--accent-purple); }
.process-step:nth-child(4) .step-icon i { color: var(--accent-yellow); }

/* Value card icons */
.value-card:nth-child(1) .value-icon i { color: var(--primary); }
.value-card:nth-child(2) .value-icon i { color: var(--accent-teal); }
.value-card:nth-child(3) .value-icon i { color: var(--accent-purple); }
.value-card:nth-child(4) .value-icon i { color: var(--accent-yellow); }
.value-card:nth-child(5) .value-icon i { color: var(--accent-green); }

/* Contact item icons */
.contact-item:nth-child(1) .contact-icon { background: var(--secondary);   color: var(--primary); }
.contact-item:nth-child(2) .contact-icon { background: #E0F7F5; color: var(--accent-teal); }
.contact-item:nth-child(3) .contact-icon { background: #F0EBF8; color: var(--accent-purple); }
.contact-item:nth-child(4) .contact-icon { background: #FEF6E4; color: var(--accent-yellow); }

/* Social link icons - each platform unique logo color */
.social-links .social-link:nth-child(1) { background: var(--secondary); color: var(--primary); }
.social-links .social-link:nth-child(2) { background: #E0F7F5; color: var(--accent-teal); }
.social-links .social-link:nth-child(3) { background: #F0EBF8; color: var(--accent-purple); }
.social-links .social-link:nth-child(4) { background: #FEF6E4; color: var(--accent-yellow); }
.social-links .social-link:nth-child(1):hover { background: var(--primary); color: #fff; }
.social-links .social-link:nth-child(2):hover { background: var(--accent-teal); color: #fff; }
.social-links .social-link:nth-child(3):hover { background: var(--accent-purple); color: #fff; }
.social-links .social-link:nth-child(4):hover { background: var(--accent-yellow); color: #fff; }

/* Scroll indicator & scroll-to-top */
.scroll-indicator i { color: rgba(255,255,255,0.9); }
.scroll-top i       { color: #fff; }

/* Breadcrumb chevron */
.breadcrumb i { color: rgba(255,255,255,0.7); }

/* Newsletter & form submit arrow */
.newsletter-btn i, .btn-submit i { color: #fff; }

/* Footer social links */
.footer .social-link:nth-child(1) { background: var(--secondary);      color: var(--primary); }
.footer .social-link:nth-child(2) { background: #E0F7F5; color: var(--accent-teal); }
.footer .social-link:nth-child(3) { background: #F0EBF8; color: var(--accent-purple); }
.footer .social-link:nth-child(4) { background: #FEF6E4; color: var(--accent-yellow); }
.footer .social-link:nth-child(1):hover { background: var(--primary);        color: #fff; box-shadow: 0 4px 12px rgba(232,83,58,0.35); }
.footer .social-link:nth-child(2):hover { background: var(--accent-teal);    color: #fff; box-shadow: 0 4px 12px rgba(60,191,176,0.35); }
.footer .social-link:nth-child(3):hover { background: var(--accent-purple);  color: #fff; box-shadow: 0 4px 12px rgba(139,94,167,0.35); }
.footer .social-link:nth-child(4):hover { background: var(--accent-yellow);  color: #fff; box-shadow: 0 4px 12px rgba(245,166,35,0.35); }

/* Footer heading & newsletter focus on light bg */
.footer .footer-heading { color: var(--dark); }
.newsletter-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,83,58,0.12); }