/* ===== Base & Reset ===== */
:root {
    --primary-color: #d32f2f;
    /* Premium Red */
    --primary-dark: #b71c1c;
    --primary-gradient: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    --secondary-color: #b8860b;
    /* Gold */
    --accent-gold: #FFD700;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --black: #111111;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

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


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

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

.mt-5 {
    margin-top: 3rem;
}

.text-danger {
    color: var(--primary-color);
}

/* ===== Simple & Compact Top Bar (Horizontal Row) ===== */
.top-bar {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1100;
}

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

.top-bar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-item i {
    color: var(--accent-gold);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-socials a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.top-bar-socials a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Mobile: Full Visibility Single Row Layout */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.2rem 0;
        /* Super compact top bar */
    }

    .top-bar .container {
        flex-direction: row;
        /* Force single row */
        justify-content: space-between;
        padding: 0 0.75rem;
        /* Tighter container padding */
    }

    .top-bar-contact {
        gap: 8px;
        /* Extra tight gap */
    }

    .contact-item {
        font-size: 0.65rem;
        /* Very small but legible to fit everything */
        gap: 4px;
        /* Tight icon-text gap */
    }

    .top-bar-socials {
        gap: 8px;
    }

    .top-bar-socials a {
        font-size: 0.8rem;
    }

    /* Ensure span (email text) stays visible as requested */
    .email-item span {
        display: inline !important;
    }
}

/* For extremely narrow screens, hide social icons instead of email if space is low */
@media (max-width: 350px) {
    .top-bar-socials {
        display: none;
        /* Priority given to Phone and Email as per user feedback */
    }

    .top-bar .container {
        justify-content: center;
    }
}

/* ===== Header & Navbar ===== */
.header {
    background-color: var(--dark-bg);
    border-bottom: 4px solid var(--primary-color);
    position: sticky;
    top: 32px;
    margin-top: 0;
    /* Adjust based on top-bar height */
    z-index: 1050;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .header {
        top: 21px !important;
        /* Perfect fit for mobile top-bar */
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;
}

.logo-text {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

/* Dropdown Styling */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark-bg);
    min-width: 200px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s;
    padding: 10px 0;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-left: 0 solid var(--primary-color);
}

.dropdown-menu a:hover {
    background: rgba(211, 47, 47, 0.1);
    color: var(--white) !important;
    padding-left: 25px;
    border-left: 4px solid var(--primary-color);
}

/* Mobile Dropdown Styling */
@media (max-width: 992px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding: 0;
        transition: max-height 0.4s ease-in-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px !important;
        padding: 5px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    .dropdown.active .dropdown-toggle {
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a {
        padding: 15px 10%;
        text-align: center;
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .header .container {
        padding-left: 10px;
        padding-right: 15px;
    }

    .header-inner {
        height: 75px;
        /* Compact height */
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 5px;
    }

    .logo img {
        height: 60px;
        /* Balanced size for better legibility on mobile */
        display: block;
    }

    .logo-text {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.23rem;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--accent-gold);
        white-space: nowrap;
        letter-spacing: 1px;
        line-height: 1;
        margin: 0;
        align-self: center;
        text-align: center;
    }

    .logo {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        padding: 0;
        margin: 0;
        line-height: 1;
        background: none;
        border: none;
        height: auto;
        width: auto;
        color: var(--white);
    }

    .search-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
        line-height: 1;
        background: none;
        border: none;
        height: auto;
        width: auto;
        color: var(--white);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
    }

    .nav-links.active {
        max-height: 1000px;
        padding: 1.5rem 0;
        border-bottom: 4px solid var(--primary-color);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        display: block;
        width: 100%;
        padding: 8px 0;
    }
}

/* ===== Header Search Bar (Expandable) ===== */
.search-container {
    margin-left: 25px;
    /* Nudged to the right */
    transition: var(--transition);
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 2px 4px 2px 14px;
    /* Reduced padding */
    transition: var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle-btn {
    display: none;
    /* Only show on mobile */
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

.header-search input {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.8rem;
    /* Smaller font */
    padding: 4px 0;
    width: 100px;
    /* Reduced width */
    outline: none;
    font-family: inherit;
}

.header-search input::placeholder {
    color: #888;
}

.header-search button {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    width: 28px;
    /* Smaller button */
    height: 28px;
    /* Smaller button */
    border-radius: 50%;
    cursor: pointer;
    margin-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Mobile Search Layout Restored */
@media (max-width: 992px) {
    .header-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 75px !important;
        padding: 0 5px !important;
        width: 100% !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .logo img {
        height: 60px !important;
        display: block !important;
    }

    .logo-text {
        display: block !important;
        font-family: 'Playfair Display', serif !important;
        font-size: 1.23rem !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        color: var(--accent-gold) !important;
        white-space: nowrap !important;
        letter-spacing: 1px !important;
        line-height: 1 !important;
        margin: 0 !important;
        align-self: center !important;
        text-align: center !important;
    }

    .search-toggle-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
        background: none !important;
        border: none !important;
        height: auto !important;
        width: auto !important;
        color: var(--white) !important;
    }

    .mobile-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
        background: none !important;
        border: none !important;
        height: auto !important;
        width: auto !important;
        color: var(--white) !important;
    }

    .search-container {
        position: absolute;
        top: 100%;
        left: 10%;
        width: 80%;
        background: var(--dark-bg);
        margin: 5px 0 0 0;
        padding: 5px 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        border: 1px solid var(--primary-color);
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .search-container.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-search {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        padding: 0px 4px 0px 8px;
        border-radius: 20px;
        height: 30px;
    }

    .header-search input {
        width: 100%;
        font-size: 0.8rem;
        padding: 0;
        height: 100%;
    }

    .header-search button {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
        margin-left: 4px;
    }
}

/* ===== Hero Slider ===== */
.hero-slider {
    height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.slide-bg.active {
    opacity: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-content .subtitle .main-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-right: -2px;
}

.hero-content .subtitle .small-sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    margin-right: -5px;
    margin-top: 4px;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.8));
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@keyframes attentionShake {

    0%,
    80%,
    100% {
        transform: scale(1);
    }

    82% {
        transform: scale(1.05) rotate(2deg);
    }

    85% {
        transform: scale(1.05) rotate(-2deg);
    }

    88% {
        transform: scale(1.05) rotate(2deg);
    }

    91% {
        transform: scale(1.05) rotate(-2deg);
    }

    94% {
        transform: scale(1.05) rotate(0);
    }
}

.shake-btn {
    animation: attentionShake 4s infinite;
}

@keyframes floatShake {

    0%,
    80%,
    100% {
        transform: scale(1);
    }

    82% {
        transform: scale(1.1) rotate(5deg);
    }

    85% {
        transform: scale(1.1) rotate(-5deg);
    }

    88% {
        transform: scale(1.1) rotate(5deg);
    }

    91% {
        transform: scale(1.1) rotate(-5deg);
    }

    94% {
        transform: scale(1.1) rotate(0);
    }
}

@keyframes enquiryShake {

    0%,
    80%,
    100% {
        transform: rotate(180deg) scale(1);
    }

    82% {
        transform: rotate(182deg) scale(1.05);
    }

    85% {
        transform: rotate(178deg) scale(1.05);
    }

    88% {
        transform: rotate(182deg) scale(1.05);
    }

    91% {
        transform: rotate(178deg) scale(1.05);
    }

    94% {
        transform: rotate(180deg) scale(1.05);
    }
}

.fab-whatsapp,
.fab-phone {
    animation: floatShake 4s infinite;
}

#openEnquiryModal {
    animation: enquiryShake 4s infinite;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ===== Category Grid ===== */
.categories-showcase {
    background: var(--white);
    border: 4px solid var(--primary-color);
    margin: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #eee;
    background: #fff;
    padding-bottom: 20px;
}

.cat-img-box {
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cat-bg {
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    transition: transform 0.8s ease;
}

.cat-item:hover .cat-bg {
    transform: scale(1.1);
}

.cat-label {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    min-width: 150px;
    background: transparent;
    padding: 10px 30px;
    text-align: center;
    border: 2.5px solid var(--primary-color);
    /* Increased border thickness */
    border-radius: 5px;
    z-index: 5;
    transition: var(--transition);
    display: inline-block;
}

.cat-item:hover .cat-label {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.cat-label h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    /* Black text */
    transition: var(--transition);
}

.cat-item:hover .cat-label h3 {
    color: var(--white);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-item {
        border-bottom: 1px solid #eee;
    }
}

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

    .cat-item {
        height: 300px;
    }
}

/* ===== Product Cards ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    margin: 2.5% auto;
    display: block;
    background-color: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.product-overlay {
    display: none !important;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 10px 0;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== ISO / Stats Section ===== */
.stats {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../images/slider1.png') center/cover no-repeat fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .stats {
        background-attachment: scroll;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.stat-item i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.stat-item h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .stat-item {
        padding: 2rem 1rem;
    }
}

/* ===== Gallery Page ===== */
.gallery-banner {
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/slider1.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.diamond-container {
    width: min(315px, 60vw);
    height: min(315px, 60vw);
    transform: rotate(45deg);
    border: 8px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.diamond-image {
    width: 150%;
    height: 150%;
    background: url('../images/slider1.png') center/cover;
    transform: rotate(-45deg) translate(-15%, -15%);
}

.diamond-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 5;
}

.diamond-text {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #eee 0%, var(--primary-color) 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.gold-border-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    border-radius: 4px;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.gold-border-img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .gallery-banner {
        height: 320px;
    }

    .diamond-container {
        width: 225px;
        height: 225px;
    }

    .full-gallery-grid {
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-bg);
    color: #bbb;
    padding-top: 3rem;
}

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

.footer-widget h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== Customer Reviews Section ===== */
.reviews {
    background-color: var(--white);
    border-top: 4px solid var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(211, 47, 47, 0.05);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

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

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.4);
    z-index: 5;
}

.experience-badge .exp-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .experience-badge {
        padding: 15px;
        bottom: -10px;
        right: -10px;
        border-radius: 8px;
    }

    .experience-badge .exp-years {
        font-size: 1.8rem;
    }

    .experience-badge .exp-text {
        font-size: 0.75rem;
    }
}

/* ===== Live Search Results ===== */
.live-search-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1100;
    max-height: 450px;
    overflow-y: auto;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover {
    background: rgba(211, 47, 47, 0.1);
}

.live-search-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 5px;
}

.live-info {
    flex: 1;
}

.live-title {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

@media (max-width: 992px) {
    .live-search-results {
        width: 100%;
        left: 0;
        border-radius: 0;
        top: 100%;
    }
}

/* Responsive Floating Action Buttons */
@media (max-width: 768px) {
    #openEnquiryModal {
        padding: 10px 6px !important;
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }
    .fab-whatsapp, .fab-phone, .fab-email {
        width: 36px !important;
        height: 36px !important;
    }
    .fab-whatsapp i {
        font-size: 18px !important;
    }
    .fab-phone i, .fab-email i {
        font-size: 16px !important;
    }
}

/* Google Review Styling */
.google-review {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    padding: 1.8rem !important;
    border-radius: 12px !important;
}
.google-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.reviewer-info-google {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviewer-img-google {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.reviewer-img-google img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviewer-details-google {
    display: flex;
    flex-direction: column;
}
.reviewer-name-google {
    font-size: 0.95rem;
    font-weight: 700;
    color: #202124 !important;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}
.reviewer-meta-google {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #70757a;
    margin-top: 2px;
}
.local-guide-label {
    color: #e37400;
    font-weight: 600;
}
.local-guide-label i {
    font-size: 0.7rem;
}
.dot {
    color: #70757a;
}
.review-date {
    color: #70757a;
}
.google-g-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-rating-google {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 0.75rem;
}
.google-stars {
    color: #fbbc05;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}
.google-verified-badge {
    font-size: 0.75rem;
    color: #1e8e3e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.review-text-google {
    font-size: 0.92rem;
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
    font-style: normal !important;
}