/* ==========================================
   ABOUT PAGE - COMPLETE ISOLATED STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables - Same as Landing Page */
:root {
    --primary-color: #E6A44A;
    --secondary-color: #E74C3C;
    --accent-color: #70B03F;
    --text-color: #2C2C2C;
    --dark-text: #1A1A1A;
    --light-text: #6C5B4D;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --light-bg: #FFF5EB;

    /* Spice Colors */
    --turmeric-yellow: #F4C430;
    --turmeric-gold: #E6C200;
    --paprika-red: #E74C3C;
    --paprika-crimson: #C0392B;
    --cumin-brown: #8B6914;
    --cinnamon-brown: #8B4513;
    --cardamom-green: #9EC969;
    --black-pepper: #2C2C2C;
    --cloves-burgundy: #6B4423;
    --coriander-beige: #D4B896;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================
   PAGE HERO SECTION
   ========================================== */

.page-hero-premium {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg,
            var(--light-bg) 0%,
            rgba(244, 196, 48, 0.05) 30%,
            rgba(158, 201, 105, 0.05) 60%,
            var(--cream) 100%);
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.spice-particle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 15s ease-in-out infinite;
}

.spice-particle:nth-child(1) {
    background: radial-gradient(circle, var(--turmeric-yellow), transparent);
    top: 10%;
    right: 10%;
}

.spice-particle:nth-child(2) {
    background: radial-gradient(circle, var(--paprika-red), transparent);
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.spice-particle:nth-child(3) {
    background: radial-gradient(circle, var(--cardamom-green), transparent);
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

.page-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(231, 76, 60, 0.2));
    border: 1px solid rgba(230, 164, 74, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease;
}

.page-title-premium {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: var(--text-color);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ==========================================
   STORY SECTION
   ========================================== */

.about-story-section {
    padding: 8rem 3rem;
    background: var(--white);
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-premium {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--text-color);
    animation: fadeInLeft 1s ease;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--light-bg);
}

.stat-box {
    text-align: center;
    animation: fadeInUp 1s ease;
    transition: transform 0.3s ease;
}

.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--light-text);
    font-size: 1rem;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.premium-features {
    padding: 8rem 3rem;
    background: var(--light-bg);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), rgba(231, 76, 60, 0.15));
    border: 1px solid rgba(230, 164, 74, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 1rem;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.feature-box:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-box:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-box:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-box p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section-premium {
    padding: 8rem 3rem;
    background: var(--white);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.process-step {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease;
}

.process-step:nth-child(odd) {
    animation-delay: 0.1s;
}

.process-step:nth-child(even) {
    animation-delay: 0.2s;
}

.process-step:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    background: var(--white);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ==========================================
   CERTIFICATIONS
   ========================================== */

.certifications-section {
    padding: 8rem 3rem;
    background: var(--light-bg);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.cert-card:nth-child(1) {
    animation-delay: 0.1s;
}

.cert-card:nth-child(2) {
    animation-delay: 0.2s;
}

.cert-card:nth-child(3) {
    animation-delay: 0.3s;
}

.cert-card:nth-child(4) {
    animation-delay: 0.4s;
}

.cert-card:hover {
    transform: translateY(-20px) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cert-card p {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* ==========================================
   NAVIGATION STYLES (from main.css)
   ========================================== */

.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230, 164, 74, 0.1);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.brand-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(230, 164, 74, 0.3));
}

.nav-brand:hover .brand-logo {
    transform: rotate(360deg) scale(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-item {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turmeric-gold), var(--paprika-red));
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* ==========================================
   MOBILE NAVIGATION TOGGLE
   ========================================== */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-item::after {
        display: none;
    }
}

/* ==========================================
   CTA BUTTON
   ========================================== */

.premium-btn-white {
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.premium-btn-white:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white), var(--cream));
}

.premium-btn-white i {
    transition: transform 0.3s ease;
}

.premium-btn-white:hover i {
    transform: translateX(8px);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.premium-footer {
    background: linear-gradient(135deg, var(--dark-text), #1a1a1a);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--turmeric-gold), var(--paprika-red));
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--turmeric-gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.heart {
    color: var(--paprika-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

/* Tablet - 769px to 1024px */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 0 2rem;
    }

    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-arrow {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile & Tablet - Up to 768px */
@media (max-width: 768px) {

    /* Navigation Mobile */
    .mobile-toggle {
        display: flex;
    }

    .premium-btn-outline {
        display: none;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        display: block;
        margin: 0;
    }

    .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover {
        background: var(--light-bg);
        color: var(--primary-color);
    }

    /* Page Hero Mobile */
    .page-hero-premium {
        padding: 80px 1.5rem 3rem;
        min-height: 50vh;
    }

    .page-title-premium {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-title-premium {
        font-size: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid-premium,
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        max-width: 100%;
    }

    .about-story-section,
    .premium-features,
    .process-section-premium,
    .certifications-section {
        padding: 4rem 1.5rem;
    }

    /* Footer Mobile */
    .premium-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

/* Small Mobile - Up to 480px */
@media (max-width: 480px) {

    /* Page Hero Small Mobile */
    .page-hero-premium {
        padding: 70px 1rem 2rem;
        min-height: 45vh;
    }

    .page-title-premium {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title-premium {
        font-size: 1.6rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .feature-box,
    .cert-card,
    .process-step {
        padding: 2rem 1.5rem;
    }

    .premium-btn-white {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .about-story-section,
    .premium-features,
    .process-section-premium,
    .certifications-section {
        padding: 3rem 1rem;
    }

    /* Navigation Small Mobile */
    .nav-wrapper {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 85%;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }
}


/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, -50px) scale(0.9);
    }

    75% {
        transform: translate(30px, -30px) scale(1.05);
    }
}