@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #70100A;
    --primary-black: #000000;
    --dark-gray: #0A0A0A;
    --mid-gray: #1A1A1A;
    --light-gray: #333333;
    --soft-white: #F5F5F7;
    --muted-text: #A1A1A6;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --container-width: 1200px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Layout Utilities --- */
.section {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.section.reveal {
    opacity: 1;
    transform: translateY(0);
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 8px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: var(--soft-white);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--soft-white);
}

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

.nav-cta:hover {
    background: #8e140d;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--soft-white);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 2.5rem;
}

.mobile-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--soft-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    padding-top: 2.5rem;
    line-height: 1.1;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

/* --- Buttons --- */
.btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: #8e140d;
    box-shadow: 0 10px 20px rgba(112, 16, 10, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--soft-white);
    background: rgba(255, 255, 255, 0.05);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-label {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--muted-text);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item h4 {
    color: var(--soft-white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.about-image {
    position: relative;
    perspective: 1500px;
    height: 600px;
    /* Adjust based on desired image height */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.about-image:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: var(--transition-slow);
}

.about-image:hover .flip-card-front img,
.about-image:hover .flip-card-back img {
    filter: grayscale(0);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 1px solid var(--primary-red);
    z-index: -1;
    transition: var(--transition-slow);
}

.about-image:hover::after {
    transform: translate(-10px, -10px);
}

/* --- Brands Section --- */
.brands-section {
    background: var(--dark-gray);
}

.center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--mid-gray);
    padding: 3rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    background: #111;
    border-color: rgba(112, 16, 10, 0.3);
    transform: translateY(-10px);
}

.brand-logo-img {
    height: 180px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto 2rem auto !important;
    filter: brightness(0.9) grayscale(0.2);
    transition: var(--transition-fast);
}

.brand-card:hover .brand-logo-img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1) rotate(3deg);
}

.brand-card img:not(.brand-logo-img):not(.brand-name-logo) {
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 2rem;
    filter: brightness(0.8) contrast(1.2);
    transition: var(--transition-fast);
}

.brand-card:hover img {
    filter: brightness(1) contrast(1);
}

.brand-category {
    color: var(--primary-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-name-logo {
    height: 50px !important;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: brightness(1.2);
    align-self: flex-start;
}

.brand-card h3 {
    display: none;
    /* Hide in case any remain */
}

.brand-card ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.brand-card li {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.brand-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* --- Supply Section --- */
.supply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.supply-features {
    margin-top: 2rem;
}

.supply-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--muted-text);
}

.supply-features li::before {
    content: "✓";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.supply-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    width: 100%;
    max-width: 450px;
    height: 550px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-track {
    display: flex;
    height: 100%;
    width: 400%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

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

.thumbnails-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnails-overlay img {
    width: 40px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnails-overlay img:hover,
.thumbnails-overlay img.active {
    transform: scale(1.1);
    opacity: 1;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* --- Parallax Section --- */
.parallax-section {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.parallax-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--soft-white);
    letter-spacing: 0.02em;
}

#contact .section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

#contact h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

#contact h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-form {
    background: var(--dark-gray);
    padding: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    color: var(--muted-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 1rem 0;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* --- Footer --- */
footer {
    padding: 6rem 0 3rem;
    background: var(--primary-black);
    border-top: 1px solid var(--light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    background: white;
    padding: 6px 15px;
    border-radius: 4px;
}

.footer-brand p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--muted-text);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--muted-text);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 5rem 0;
    }

    .about-grid,
    .supply-grid,
    .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .slider-container {
        height: 500px;
    }

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

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
        /* Hide on mobile to prioritize menu */
    }

    .about-image {
        height: 450px;
    }

    .about-image::after {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .parallax-section h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-item p {
        font-size: 1.2rem;
    }
}