﻿/* ... existing styles ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A961;
    --dark-navy: #000000;
    --cream: #F8F6F1;
    --charcoal: #2d3540;
    --soft-gray: #8a8f98;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

.display-font {
    font-family: 'Cormorant Garamond', serif;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgb(0, 0, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    animation: fadeInDown 0.8s ease;
    background: transparent;
    position: absolute;
    top: 20px;
    left: 3rem;
    z-index: 1001;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    font-weight: 300;
    color: var(--white);
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

nav ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 70vh;
    /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)),
        url('images/hero-bg.webp') center/cover;
    color: var(--white);
    padding: 0 5%;
    margin-top: 0;
    position: relative;
}

.hero-content {
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.9rem 2rem;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--dark-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-indicator::before {
    content: '\2193';
    font-size: 2rem;
    color: var(--gold);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.about-card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--soft-gray);
    line-height: 1.8;
}

/* Values Section */
.values {
    background: var(--dark-navy);
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.values .section-title {
    color: var(--white);
}

.values .section-description {
    color: rgba(248, 246, 241, 0.7);
}

.values-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-item:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.value-item p {
    color: rgba(248, 246, 241, 0.8);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-number {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    color: var(--gold);
    padding: 1rem 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.product-content {
    padding: 2.5rem;
}

.product-card h3 {
    font-size: 1.6rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-card ul {
    list-style: none;
}

.product-card ul li {
    color: var(--soft-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-card ul li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #000000 100%);
    padding: 8rem 3rem;
    position: relative;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    background: var(--gold);
    color: var(--dark-navy);
    transform: rotate(360deg);
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.why-item p {
    color: rgba(248, 246, 241, 0.7);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.contact-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.contact-text h4 {
    color: var(--dark-navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-text p {
    color: var(--soft-gray);
    line-height: 1.6;
}

.contact-text a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.7;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--dark-navy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(138, 143, 152, 0.3);
    background: var(--cream);
    color: var(--dark-navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--dark-navy);
    border: 2px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-submit:hover {
    background: transparent;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--dark-navy);
    padding: 5rem 5% 2rem;
    color: var(--cream);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a,
.footer-section address {
    color: rgba(248, 246, 241, 0.7);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-style: normal;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
    color: rgba(248, 246, 241, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section.brand-section {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        padding: 0.2rem 2rem;
        justify-content: center;
    }

    .logo {
        left: 2rem;
    }

    nav ul {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .logo img {
        height: 60px;
        max-width: 80vw;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid,
    .values-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        max-width: 90vw;
    }

    nav ul {
        display: none;
    }

    .hero {
        padding: 160px 1.5rem 80px !important;
        height: auto;
        min-height: 85vh;
        align-items: flex-start;
    }

    .hero-content {
        padding: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    section {
        padding: 5rem 2rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }

    nav {
        padding: 0.2rem 1.5rem;
        min-height: 70px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Feature Grid for Product Detail Pages */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border: 1px solid var(--gold);
    padding: 10px;
    background: var(--white);
    border-radius: 4px;
    /* Optional polish */
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--soft-gray);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
    top: 5px;
}

@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Infinite Carousel */
.carousel-section {
    overflow: hidden;
    padding: 4rem 0;
    background: var(--cream);
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.carousel-section::before,
.carousel-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-section::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.carousel-section::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 120s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    width: 300px;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.carousel-slide img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 28));
    }
}

/* Product Detail Gallery */
.product-gallery {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    /* Fixed height for uniformity */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    /* Original WhatsApp Green */
    border: 2px solid var(--gold);
    /* Nova West Brand Gold */
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--gold);
}