:root {
    --primary: #c18b2c;
    /* Golden Spice */
    --secondary: #5e3a24;
    /* Deep Cinnamon */
    --accent: #d35400;
    /* Burnt Orange */
    --dark: #121212;
    --light: #f9f5f0;
    --text-muted: #888;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    max-width: 300px;
    margin-bottom: 20px;
    opacity: 0;
}

.loader-bar {
    width: 0;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

/* Global Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(to right, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.centered {
    text-align: center;
}


/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(193, 139, 44, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--light);
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

/* Banner */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px !important;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.banner h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.banner h1 .highlight {
    /* color: #ffffff; */
    color: transparent;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 30px rgba(193, 139, 44, 0.4);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 1);
}

.banner p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.banner-3d-scene {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    perspective: 1000px;
}


/* About Section */
.about .section-title {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    background-image: linear-gradient(0deg,
            rgba(193, 139, 44, 0.8) 0%,
            rgba(193, 139, 44, 0.8) 50%,
            transparent 50%,
            transparent 100%);
    background-size: 100% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: waterFill 4s ease-in-out infinite;
    position: relative;
}

@keyframes waterFill {
    0% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-container {
    perspective: 1500px;
}

.image-3d-box {
    width: 100%;
    height: 500px;
    background: var(--secondary);
    border-radius: 20px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.1s;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.section {
    padding: 50px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    pointer-events: none;
    /* Let clicks pass through to interactive elements */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    pointer-events: all;
    /* Restore clicks for UI */
}

.full-width-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.products .container {
    padding: 0 40px !important;
}

.product-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 10px;
}

.product-item {
    position: relative;
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item.active,
.product-item:hover {
    flex: 6;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    opacity: 0.8;
    transition: opacity 0.5s;
}

.product-item:hover .product-overlay {
    opacity: 0.6;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s 0.2s;
    pointer-events: none;
}

.product-item.active .product-content,
.product-item:hover .product-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.product-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.product-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 400px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.product-item.active .product-label,
.product-item:hover .product-label {
    opacity: 0;
}

@media (max-width: 992px) {
    .products .container {
        padding: 0 20px !important;
    }

    .product-accordion {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }

    .product-item {
        height: 450px;
        flex: none;
        border-radius: 40px;
        border: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .product-item.active,
    .product-item:hover {
        flex: none;
        height: 450px;
    }

    .product-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.4) 100%);
        opacity: 1;
    }

    .product-content {
        opacity: 1;
        transform: translateY(0);
        padding: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        pointer-events: all;
    }

    .product-tag {
        position: absolute;
        top: 40px;
        right: 40px;
        margin-bottom: 0;
        background: white;
        color: #ff4d6d;
        padding: 10px 25px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .product-content h3 {
        font-size: 2.2rem;
        font-weight: 800;
    }

    .product-content p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        max-width: 100%;
    }

    .product-price {
        color: #f1c40f;
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .product-content .btn-primary {
        background: white;
        color: var(--dark);
        width: fit-content;
        padding: 18px 40px;
        font-size: 0.9rem;
        border-radius: 100px;
    }

    .product-content .btn-primary::after {
        content: ' →';
        font-weight: 800;
    }

    .product-label {
        display: none;
    }
}

.style-cardamom .spice-overlay h3 {
    color: #27ae60;
}

/* Green Chili Style */
.style-green-chili:hover {
    border-color: #2ecc71;
    box-shadow: 0 15px 45px rgba(46, 204, 113, 0.5);
}

.style-green-chili .spice-overlay h3 {
    color: #2ecc71;
}

/* Onion Style */
.style-onion:hover {
    border-color: #9b59b6;
    box-shadow: 0 15px 45px rgba(155, 89, 182, 0.5);
}

.style-onion .spice-overlay h3 {
    color: #9b59b6;
}

/* Garlic Style */
.style-garlic:hover {
    border-color: #ecf0f1;
    box-shadow: 0 15px 45px rgba(236, 240, 241, 0.3);
}

.style-garlic .spice-overlay h3 {
    color: #ecf0f1;
}

/* Ginger Style */
.style-ginger:hover {
    border-color: #d35400;
    box-shadow: 0 15px 45px rgba(211, 84, 0, 0.5);
}

.style-ginger .spice-overlay h3 {
    color: #d35400;
}

/* 3D Animation Hook */
.spice-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.spice-item:hover img {
    transform: scale(1.1);
}

.spice-item:hover .spice-overlay {
    opacity: 1;
}

.spice-overlay h3,
.spice-overlay span {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.spice-item:hover h3,
.spice-item:hover span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .spice-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .spice-masonry {
        column-count: 1;
    }
}


/* Responsive */
/* Responsive Improvements */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .banner h1 {
        font-size: 3.5rem;
    }

    .banner {
        padding-top: 180px !important;
    }

    .banner p {
        font-size: 1rem;
        margin-top: 20px;
    }

    .about-grid,
    .contact-card-3d {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .image-3d-box {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-3d-visual {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 400px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .banner h1 {
        font-size: 2.8rem;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-social {
        margin-bottom: 40px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .cert-item {
        width: 160px;
        height: 160px;
        padding: 20px;
        border-radius: 30px;
    }

    .swirl-overlay {
        display: none;
    }

    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .banner {
        padding-top: 150px !important;
    }
}

/* Infinity Swirl Text Effect */
.swirl-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swirl-wrapper {
    position: absolute;
    width: 80vh;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swirl-wrapper.left {
    transform: translateX(-35%) scale(0.8);
}

.swirl-wrapper.right {
    transform: translateX(35%) scale(0.8);
}

.swirl-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: swirlSpin 20s linear infinite;
}

.swirl-wrapper.right .swirl-ring {
    animation-direction: reverse;
}

.swirl-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform-origin: left center;
    font-family: monospace;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    animation: swirlFade 20s linear infinite;
    animation-delay: var(--delay);
    text-shadow: 0 0 10px var(--glow), 0 0 20px var(--glow);
    white-space: nowrap;
}

@keyframes swirlSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes swirlFade {

    0%,
    10% {
        opacity: 0;
        filter: blur(5px);
    }

    50% {
        opacity: 0.3;
        filter: blur(0px);
    }

    90%,
    100% {
        opacity: 0;
        filter: blur(5px);
    }
}

/* About Page Specific Styles */
.inner-banner {
    padding: 180px 0 100px;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner-banner h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    margin-top: 20px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 15px;
}

.about-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-features {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--primary);
}

.video-container-3d {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
}

.about-video {
    width: 100%;
    display: block;
}

.play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.director-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
}

.director-image {
    position: relative;
    height: 100%;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.director-text {
    padding: 60px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(193, 139, 44, 0.1);
    position: absolute;
    top: 40px;
    right: 40px;
}

.message-content {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.director-name {
    font-size: 1.5rem;
    color: var(--primary);
}

.director-desig {
    color: var(--text-muted);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    text-align: center;
    transition: transform 0.4s;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.pillar-card h3 {
    margin-bottom: 15px;
    color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

@media (max-width: 992px) {

    .about-video-grid,
    .director-card {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .director-image {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .inner-banner h1 {
        font-size: 2.5rem;
    }
}

/* Blog Page Styles */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.blog-date span {
    display: block;
    font-size: 1.2rem;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: white;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
}

.pagination {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-detail-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.detail-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

.social-connect {
    padding: 30px;
}

.social-connect h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links-grid {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.contact-form-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-form-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.styled-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.styled-form .form-group {
    margin-bottom: 25px;
}

.styled-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary);
}

.styled-form input,
.styled-form select,
.styled-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Thematic Google Map Styling */
.map-section {
    line-height: 0;
    overflow: hidden;
}

.google-map {
    filter: invert(90%) hue-rotate(270deg) brightness(0.6) contrast(1.2);
    /* Inverts to dark mode and shifts hue to match magenta/onion tones */
    transition: filter 0.5s;
}

.google-map:hover {
    filter: invert(90%) hue-rotate(270deg) brightness(0.8) contrast(1.2);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .styled-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--glass);
    margin: 5% auto;
    padding: 50px;
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 600px;
    border-radius: 40px;
    position: relative;
    animation: modalReveal 0.5s ease-out;
}

@keyframes modalReveal {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 30px;
        margin: 10% auto;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }
}

/* Product Category Page Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.subcategory-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.subcategory-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(142, 45, 92, 0.3);
}

.subcategory-image {
    width: 100%;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 25px;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.subcategory-card:hover .subcategory-image img {
    transform: scale(1.1);
}

.subcategory-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.subcategory-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-specs {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-item span:first-child {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

.spec-item span:last-child {
    color: white;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Emons-style Video Scrubbing */
.video-scrub-container {
    position: relative;
    width: 100%;
    height: 800vh;
    /* Long scroll for video scrubbing */
}

.video-scrub-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

#v0 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Make it 800vh like parent */
}

.scroll-section.sticky-card-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.scroll-card {
    background: #00000085;
    padding: 60px;
    border-radius: 40px;
    max-width: 700px;
    /* Slightly wider for the full title */
    border: 1px solid var(--glass-border);
    opacity: 1;
    /* Always visible */
    transform: none;
}

.scroll-card.v-active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-card h1,
.scroll-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .video-scrub-container {
        height: 400vh;
    }

    .scroll-card {
        padding: 30px;
    }
}