:root {
    --primary-color: #CC9D45;
    --dark-color: #2c2c2c;
    --text-color: #555;
    --bg-light: #f9f9f9;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

/* Themed Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 600;
}

/* Topbar */
.topbar {
    background-color: #111;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right a {
    margin-left: 15px;
    transition: color 0.3s ease;
}

.topbar-right a:hover {
    color: var(--primary-color);
}

.btn-quote {
    background-color: #fff;
    color: #111 !important;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 500;
}

.btn-quote:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.logo img {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.search-bar {
    position: relative;
    flex-grow: 1;
    max-width: 300px;
    margin: 0 30px;
}

.search-bar input {
    width: 100%;
    padding: 10px 35px 10px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

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

.main-nav {
    border-top: 1px solid #eee;
    background-color: #fff;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    text-transform: capitalize;
    font-size: 0.9rem;
}

.dropdown li:last-child a {
    border-bottom: none;
}

/* Hero Section */
.hero-slider {
    height: 80vh;
    min-height: 500px;
}

.hero-swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #111;
}

.hero-text-section {
    width: 45%;
    height: 100%;
    background: rgba(252,249,242,0.85); /* Semi-transparent luxurious cream */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    padding: 0 5% 0 10%;
    position: relative;
    z-index: 2;
}

.hero-text-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 4px; height: 100%;
    background: var(--primary-color);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #333;
    max-width: 600px;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.hero-content .title {
    font-size: 4rem;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #444;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

/* Services 3 Boxes */
.services-boxes-section {
    padding: 60px 0;
    background: #fff;
}

.box-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    text-align: center;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box .box-img {
    height: 250px;
    overflow: hidden;
}

.service-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .box-img img {
    transform: scale(1.05);
}

.service-box .box-content {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #666;
    flex-grow: 1;
}

.btn-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-color);
    color: #fff;
    padding: 15px 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-dark:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reviews-section p {
    color: #777;
    margin-bottom: 40px;
}

.review-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.reviewer-company {
    font-size: 0.9rem;
    color: #888;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.review-dot.active {
    background: var(--dark-color);
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    box-shadow: -15px 15px 0 var(--primary-color);
}

.about-text {
    flex: 1;
}

.about-text .tag {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

/* 6 Boxes Retail Types */
.retail-types-section {
    padding: 80px 0;
    background: #fff;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
}

.retail-box {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.retail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.retail-box:hover img {
    transform: scale(1.1);
}

.retail-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    z-index: 2;
}

.retail-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 1;
}

/* Forms */
.service-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--dark-color);
}

/* Page Header */
.page-header {
    background: var(--dark-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-content {
    padding: 60px 0;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 60px 0 0;
    border-top: 1px solid #eee;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--dark-color);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--dark-color);
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

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

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--dark-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background: var(--primary-color);
}

/* Side Enquiry Button */
.side-enquiry-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 20px 10px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: -4px 0px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    border-radius: 5px 0 0 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: background 0.3s, padding-right 0.3s;
}

.side-enquiry-btn:hover {
    background: var(--dark-color);
    padding-right: 20px;
}

/* Enquiry Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dark-color);
}

/* Responsive */
@media (max-width: 991px) {
    .box-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner {
        flex-direction: column;
    }
    .nav-menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .box-grid-3, .footer-inner {
        grid-template-columns: 1fr;
    }
    .topbar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hero-content .title {
        font-size: 2.5rem;
    }
    .swiper-slide {
        align-items: flex-end;
    }
    .hero-text-section {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        text-align: center;
        background: rgba(252,249,242,0.95);
    }
    .hero-text-section::before {
        top: 0; left: 0; width: 100%; height: 4px;
    }
}
