* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    scroll-margin-top: 50px;
}


/* NAVBAR */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: linear-gradient( 135deg, rgba(7, 28, 77, 0.95) 0%, rgba(10, 45, 115, 0.92) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient( 90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.25;
    pointer-events: none;
}

nav::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(178, 139, 70, 0.12);
    border-radius: 50%;
    top: -180px;
    right: -80px;
    filter: blur(40px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: bold;
    color: #b28b46;
}

.logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: 1.3s;
}

.nav-links a:hover {
    color: #b28b46;
}


/* HERO */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #f8fbff, #ffffff);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    color: #b28b46;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #b28b46;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #8c6a2f;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* SECTION */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #b28b46;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(178, 139, 70, 0.12);
    overflow: hidden;
    transition: all 0.35s ease;
}


/* Gold top accent */

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient( 90deg, #b28b46, #d7b56d);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: #b28b46;
    font-size: 1.7rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.card p {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
}


/* PRODUCTS */

.products {
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    color: #b28b46;
    margin-bottom: 15px;
}


/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media(max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* CLIENTS */

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.client {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}


/* CONTACT */

.contact {
    background: #f7f9fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-box h3 {
    margin-bottom: 20px;
    color: #b28b46;
}

.contact-box p {
    margin-bottom: 10px;
}


/* FOOTER */

.footer {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    color: #fff;
    background: radial-gradient(circle at top left, rgba(178, 139, 70, 0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 35%), linear-gradient( 135deg, #071c4d 0%, #08245f 40%, #0a2d73 100%);
}

.footer-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient( 90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(178, 139, 70, 0.08);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    filter: blur(40px);
}

.footer::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -200px;
    left: -150px;
    filter: blur(30px);
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 70px 0;
}

.footer-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-box p {
    line-height: 1.8;
    color: #d8d8d8;
    margin-bottom: 12px;
}

.footer-box a {
    display: block;
    color: #d8d8d8;
    text-decoration: none;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #b28b46;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 28px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 22px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #d8d8d8;
}


/* RESPONSIVE */

@media(max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
}


/* RESPONSIVE */

@media(max-width:900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-text {
        text-align: center;
    }
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 40px;
    }
}

@media(max-width:600px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .section-title {
        font-size: 30px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}


/* POPUP */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: #fff;
    padding: 35px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    animation: popupShow 0.3s ease;
}

.popup-content h2 {
    margin-bottom: 20px;
    color: #b28b46;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-content input,
.popup-content textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.popup-content input:focus,
.popup-content textarea:focus {
    border-color: #b28b46;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

@keyframes popupShow {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* CONTACT SECTION */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    color: #b28b46;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #b28b46;
}

.map-box {
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* RESPONSIVE */

@media(max-width:900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .map-box {
        min-height: 350px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}


/* SERVICE CARD */

.service-card {
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b28b46;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #b28b46;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.service-product-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.service-btn:hover {
    background: #8c6a2f;
}


/* DROPDOWN */

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.dropbtn:hover {
    color: #b28b46;
}


/* DROPDOWN MENU */

.dropdown-content {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 270px;
    background: rgba(7, 28, 77, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 14px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: rgba(178, 139, 70, 0.15);
    color: #b28b46;
    padding-left: 30px;
}


/* SHOW MENU */

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* ARROW */

.dropdown-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: 0.3s ease;
    margin-top: -2px;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(225deg);
}


/* MOBILE */

@media(max-width:768px) {
    .dropdown-content {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 220px;
        width: 90vw;
        max-width: 300px;
    }
    .dropdown:hover .dropdown-content {
        transform: translateX(-50%) translateY(0);
    }
    .dropdown-content a {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .logo {
        flex-direction: row;
        justify-content: center;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 15px;
    }
}

.logo a {
    color: #b28b46;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

@media(max-width:768px) {
    .logo a {
        font-size: 1.2rem;
        line-height: 1.2;
    }
}


/* =========================
   SERVICE HERO SECTION
========================= */

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(178, 139, 70, 0.10), transparent 25%), linear-gradient( 135deg, #f8fbff 0%, #eef4ff 45%, #ffffff 100%);
}


/* Background Glow Shapes */

.service-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(178, 139, 70, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    filter: blur(40px);
    z-index: 0;
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(7, 28, 77, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
    filter: blur(30px);
    z-index: 0;
}


/* HERO CONTENT GRID */

.service-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* LEFT CONTENT */

.service-breadcrumb {
    color: #777;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 15px;
}

.service-breadcrumb span {
    color: #b28b46;
}

.service-hero-text h1 {
    font-size: 64px;
    line-height: 1.15;
    color: #071c4d;
    margin-bottom: 25px;
    font-weight: 800;
}

.service-hero-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
    max-width: 620px;
}


/* BUTTON */

.service-hero .btn {
    display: inline-block;
    padding: 16px 34px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(178, 139, 70, 0.25);
    transition: 0.3s;
}

.service-hero .btn:hover {
    transform: translateY(-3px);
}


/* IMAGE */

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-image img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    animation: floatBottle 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}


/* FLOAT EFFECT */

@keyframes floatBottle {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {
    .service-hero {
        padding: 190px 0 90px;
    }
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .service-hero-text p {
        margin-inline: auto;
    }
    .service-hero-text h1 {
        font-size: 48px;
    }
    .service-hero-image img {
        max-width: 350px;
    }
}

@media(max-width: 600px) {
    .service-hero {
        padding: 170px 0 70px;
    }
    .service-hero-text h1 {
        font-size: 38px;
    }
    .service-hero-text p {
        font-size: 16px;
        line-height: 1.8;
    }
    .service-hero-image img {
        max-width: 280px;
    }
}


/* =========================================
   LIQUOR PAGE MOBILE RESPONSIVE FIX
========================================= */


/* TABLET */

@media(max-width: 992px) {
    .service-hero {
        padding: 170px 0 80px;
    }
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .service-hero-text {
        order: 1;
    }
    .service-hero-image {
        order: 2;
    }
    .service-hero-text h1 {
        font-size: 48px;
        line-height: 1.2;
    }
    .service-hero-text p {
        max-width: 100%;
        margin-inline: auto;
    }
    .service-hero-image img {
        max-width: 360px;
    }
    .service-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-info-text {
        text-align: center;
    }
    .service-tagline h2 {
        font-size: 34px;
        line-height: 1.4;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media(max-width: 768px) {
    .container {
        width: 92%;
    }
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
    }
    .logo {
        justify-content: center;
        text-align: center;
    }
    .logo img {
        width: 90px;
        height: 90px;
        object-fit: contain;
    }
    .logo span {
        font-size: 20px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .service-hero {
        padding: 50px 0;
    }
    .service-hero-content {
        gap: 35px;
    }
    .service-breadcrumb {
        font-size: 13px;
    }
    .service-hero-text h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    .service-hero-text p {
        font-size: 16px;
        line-height: 1.8;
    }
    .service-hero-image img {
        max-width: 260px;
    }
    .service-info {
        padding: 70px 0;
    }
    .service-info-text h2 {
        font-size: 30px;
        line-height: 1.3;
    }
    .service-info-text p {
        font-size: 15px;
    }
    .service-tagline {
        padding: 55px 0;
    }
    .service-tagline h2 {
        font-size: 28px;
        line-height: 1.4;
    }
    .section-title {
        font-size: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        text-align: center;
    }
    .service-product-image {
        max-width: 180px;
        margin: auto;
        display: block;
    }
    .service-btn,
    .btn {
        width: 100%;
        text-align: center;
    }
}


/* EXTRA SMALL DEVICES */

@media(max-width: 480px) {
    .service-hero {
        padding: 160px 0 60px;
    }
    .service-hero-text h1 {
        font-size: 32px;
    }
    .service-hero-text p {
        font-size: 15px;
    }
    .service-info-text h2 {
        font-size: 26px;
    }
    .service-tagline h2 {
        font-size: 24px;
    }
    .card {
        padding: 22px;
    }
    .popup-content {
        padding: 25px;
    }
}


/* HOME SERVICE CARD */

.home-service-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid rgba(178, 139, 70, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT ALIGN */
    text-align: left;
}

.home-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b28b46;
}

.home-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.home-service-card .service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.home-service-card h3 {
    color: #b28b46;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.home-service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.home-service-card .service-btn {
    margin-top: auto;
}