:root {
    /* Color Palette */
    --primary-red: #E63946;
    --dark-red: #A41E35;
    --deep-green: #1B5E20;
    --light-green: #4CAF50;
    --cream: #FEF9F3;
    --light-cream: #FFFBF7;
    --charcoal: #1F1F1F;
    --gold: #D4AF37;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-light: #E8DDD3;
    --white: #ffffff;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 251, 247, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
}

.logo-text span {
    font-size: 14px;
    vertical-align: super;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.mobile-only-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-nav {
        display: block !important;
    }
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-video-item {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

.nav-mobile-video {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.mobile-video-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
}

/* Spotlight Section */
.spotlight {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 5rem;
}

.spotlight-visual {
    position: relative;
    padding: 2rem;
}

.spotlight-main-img {
    position: relative;
    z-index: 2;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pouch-img {
    position: absolute;
    width: 40%;
    bottom: -10%;
    right: -5%;
    z-index: 3;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-pouch {
    animation: floatingPouch 4s ease-in-out infinite;
}

@keyframes floatingPouch {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.spotlight-video-box {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.spotlight-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight-subtitle {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.spotlight-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.spotlight-checklist {
    margin-bottom: 2.5rem;
}

.spotlight-checklist li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-checklist li span {
    color: var(--primary-red);
    font-weight: 900;
}

.spotlight-ctas {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.format-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

@media (max-width: 992px) {
    .spotlight-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .spotlight-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .spotlight-checklist li {
        justify-content: center;
    }

    .spotlight-ctas {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    position: relative;
    background: linear-gradient(to bottom, var(--cream), #FFFBF7);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Page Hero Styling (Clean & Fixed) */
.page-hero {
    background: linear-gradient(135deg, var(--white), var(--cream)) !important;
    padding: 200px 0 120px !important;
    text-align: center;
    color: var(--text-dark) !important;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 64px !important;
    font-weight: 900 !important;
    color: var(--text-dark) !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
    max-width: 900px;
}

.page-hero p {
    color: var(--text-light) !important;
    font-size: 20px !important;
    max-width: 700px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05), transparent);
    border-radius: 50%;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Hero Visual (Full Video Look) */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-full {
    width: 100%;
    height: 80%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
}

.hero-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partner Slider */
.partners {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-slider {
    display: flex;
    width: max-content;
    animation: slideInfinite 30s linear infinite;
    gap: 100px;
    align-items: center;
}

.partner-item {
    font-size: 24px;
    font-weight: 800;
    color: #ccc;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
    white-space: nowrap;
}

.partner-item:hover {
    color: var(--primary-red);
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.float-item {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.float-item:hover {
    transform: scale(1.05) rotate(2deg) !important;
}

.p1 {
    width: 180px;
    top: 0;
    left: 10%;
    z-index: 4;
    animation: floatProduct 6s ease-in-out infinite;
}

.p2 {
    width: 160px;
    top: 30%;
    left: 50%;
    z-index: 3;
    animation: floatProduct 6s ease-in-out infinite 0.5s;
}

.p3 {
    width: 200px;
    bottom: 0;
    left: 0%;
    z-index: 2;
    animation: floatProduct 6s ease-in-out infinite 1s;
}

.p4 {
    width: 150px;
    bottom: 10%;
    right: 0;
    z-index: 1;
    animation: floatProduct 6s ease-in-out infinite 1.5s;
}

@keyframes floatProduct {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
    }

    25% {
        transform: translateY(-20px) rotate(1deg);
    }

    50% {
        transform: translateY(-40px) rotate(0deg);
        box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
    }

    75% {
        transform: translateY(-20px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
    }
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-divider .shape-fill {
    fill: var(--white);
}

/* Section Commons */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 56px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.scroll-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Brand Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.2);
}

.pillar-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-img-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(3deg);
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .hover-video {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.view-details {
    display: inline-block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.view-details::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.product-card:hover .view-details::after {
    width: 100%;
}

/* Process Section */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-red);
    color: var(--white);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 200px;
    margin: 0 auto;
}

.process-arrow {
    flex: 0.5;
    height: 2px;
    background: var(--border-light);
    margin-top: 40px;
    position: relative;
}

.process-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--border-light);
    border-right: 2px solid var(--border-light);
    transform: rotate(45deg);
}

/* Certifications & Testimonials */
.certifications {
    background: var(--light-cream);
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.page-hero p {
    color: var(--text-light) !important;
    font-size: 20px !important;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.badge-icon.gold-badge {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff, #FEF5E7);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.badge-item:hover .badge-icon {
    transform: rotate(10deg) scale(1.1);
    border-color: var(--primary-red);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    text-align: center;
    padding: 0 2rem;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-red);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -30px;
    font-family: serif;
}

.quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 20px;
}

.author {
    font-size: 18px;
    font-weight: 700;
}

.context {
    font-size: 14px;
    color: var(--text-light);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
    width: 25px;
    border-radius: 5px;
}

/* Contact & CTA Section */
.contact-cta {
    background: linear-gradient(rgba(230, 57, 70, 0.9), rgba(164, 30, 53, 0.9)), url('assets/turmeric%20powder.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 56px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 3rem;
}

.btn-secondary {
    background: var(--cream);
    color: var(--primary-red);
    padding: 15px 40px;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-red);
    transform: scale(1.05);
}

.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 249, 243, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(254, 249, 243, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 249, 243, 0);
    }
}

.contact-links {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-link,
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-5px);
}

/* Footer */
#footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 1rem;
}

/* Premium Elaborated Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 100px 0 60px;
    border-top: 4px solid var(--primary-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-brand .logo img {
    height: 70px;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.footer-brand .logo-text {
    font-size: 32px;
    color: white;
    white-space: nowrap;
    margin-bottom: 0 !important;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-red);
}

.footer-links-list,
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a,
.footer-contact-info p,
.footer-contact-info li {
    color: #bbb;
    font-size: 15px;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.trust-badges-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.f-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-badge span {
    display: block;
    font-size: 11px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 5px;
}

.f-badge p {
    font-size: 10px;
    color: #999;
    line-height: 1.2;
}

.footer-credits {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-label {
    color: #666;
    font-size: 16px;
}

.credit-link {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 700;
}

/* Subpage & Component Grids */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Contact Page Specifics */
.contact-info-col {
    text-align: left;
}

.contact-info-col .section-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-intro-text {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 16px;
}

.contact-form-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.name-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.variations-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }

    .pillars-grid,
    .products-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 30px 0;
    }

    header {
        padding: 10px 0 !important;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 28px;
    }

    /* Navigation Refinement */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 600;
    }

    .shop-now-btn {
        display: none !important;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    /* Subpage Hero Perfection - No Gaps */
    .page-hero {
        padding: 60px 0 20px !important;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }

    .page-hero p {
        font-size: 15px !important;
        padding: 0 10px;
        margin-bottom: 0 !important;
    }

    /* Form & Grid Fixes - Unified Stack */
    .spotlight-container,
    .footer-grid,
    .pillars-grid,
    .products-grid,
    .contact-grid,
    .about-grid,
    .mission-grid,
    .signature-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .variations-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    /* Padding refinements for boxed content */
    .trust-content .container div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 20px;
    }

    .hero-container {
        gap: 0.5rem !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-visual {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 1.5rem;
    }

    .partners {
        display: none;
    }

    .hero-video-full {
        display: block;
        height: 220px;
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .hero-title {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 1rem;
        text-align: center;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 25px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }

    .hero-ctas .btn-outline {
        display: none;
    }

    .spotlight-video-box {
        width: 100px;
        height: 100px;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .spotlight-visual {
        margin-top: 20px;
    }

    /* Contact Page Layer Refinement */
    .contact-info-col {
        text-align: center;
    }

    .contact-info-col .section-title {
        text-align: center;
        font-size: 32px;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
    }

    .name-fields-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro-text {
        margin-bottom: 2rem;
    }

    /* Footer Trust Refinement */
    .trust-badges-footer {
        grid-template-columns: 1fr 1fr;
        max-width: 280px;
        margin: 0 auto;
        gap: 1rem;
    }

    .footer-brand .logo-text {
        font-size: 22px;
    }

    .footer-brand img {
        height: 50px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-col {
        margin-bottom: 1.5rem;
    }

    /* Badges for Certifications Page */
    .badges-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem !important;
    }
}

/* RFQ Modal Styles */
.rfq-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rfq-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%) scale(0.9);
    width: 90%;
    max-width: 600px;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2001;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rfq-overlay.active {
    display: block;
    opacity: 1;
}

.rfq-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rfq-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.rfq-modal-header h3 {
    font-size: 32px;
    color: var(--text-dark);
}

.rfq-modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.close-rfq {
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-rfq:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.rfq-form .form-group {
    margin-bottom: 1.2rem;
}

.rfq-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.rfq-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.rfq-form input,
.rfq-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.rfq-form input:focus,
.rfq-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.rfq-form input[readonly] {
    background-color: #f9f9f9;
    color: var(--primary-red);
    font-weight: 700;
    border-style: dashed;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.pulse-animation {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .rfq-modal {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .rfq-modal-header h3 {
        font-size: 24px;
    }

    .rfq-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}