:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2c2c2c; /* Charcoal */
    --bg-color: #fdfbf7; /* Cream */
    --text-color: #006a4e;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 5px 5%;
    align-items: center;
    min-height: 8vh;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover, .active-link {
    color: var(--primary-color) !important;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Brands Bar */
.brands-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-scroll {
    display: flex;
    gap: 40px;
    color: var(--primary-color);
}

/* Contact Hero */
.contact-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Image/WhatsApp-Image1.jpeg');
    background-size: cover;
    background-position: center, 0px -700px;
    background-repeat: no-repeat;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.slogan {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

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

.btn {
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

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

.btn.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item p {
    color: var(--text-color);
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-links-contact{
    display: flex;
    gap: 15px;
}
.social-links-contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links-contact a:hover {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 0 0 100px 0;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: auto;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }
}

@media screen and (max-width: 980px) {
    .nav-links {
        width: 50%;
    }

    .nav-links {
        position: absolute;
        right: 30px;
        height: 50vh;
        top: 12vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 30%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 20px;
        gap: 20px;
    }
    
    .brands-scroll{
        gap: 30px;
        font-size: 0.7rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
    
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 20px;
        height: 50vh;
        top: 10vh;
        background-color: rgb(226, 226, 226);
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        width: 30%;
        transform: translateX(10%);
        transition: transform 0.9s ease-in, visibility 0.5s;
        z-index: 999;
        visibility: hidden;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    
    }
    .nav-links.nav-active li {
        opacity: 1;
        animation: navLinkFade 0.9s ease forwards;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 30px;
        gap: 10px;
    }
    
    .brands-scroll{
        gap: 10px;
        font-size: 0.7rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .contact-hero{
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Image/WhatsApp-Image1.jpeg');
        background-size: cover;
        background-position: center, center;
        background-repeat: no-repeat;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 500px) {
    .brands-bar {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 10px 30px;
        gap: 10px;
    }
    
    .brands-scroll{
        gap: 10px;
        font-size: 0.7rem;
    }

    .nav-links {
        right: 30px;
        top: 12vh;
        width: 50%;
    }

    .nav-links a {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .nav-links a:hover, .active-link {
        color: var(--primary-color) !important;
    }

    .contact-hero{
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../Image/WhatsApp-Image1.jpeg');
        background-size: cover;
        background-position: center, center;
        background-repeat: no-repeat;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero .slogan {
        font-size: 1.1rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        gap: 40px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 20px;
    }

    .footer-bottom {
        width: 70%;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
        padding-top: 20px;
        font-size: 0.8rem;
        color: #777;
    }
}
