/* ==========================================================================
   Grammy Marketing LLP ("Grammys") - Main Stylesheet
   Kerala Quality. Everyday Value.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & Variables
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-gold: #C8A16B;
    --dark-gold: #A87C42;
    --black: #0B0B0B;
    --dark-gray: #1A1A1A;
    --light-bg: #F4F8F6;
    /* Organic light green-tinted background */
    --white: #FFFFFF;
    --text-color: #2E3A33;
    /* Dark green-gray text color for organic readability */
    --text-light: #6E7E75;

    /* Green Color Combo (Main Body) */
    --primary-green: #1E5338;
    --accent-green: #2ECC71;
    --dark-green: #103420;
    --green-gradient: linear-gradient(135deg, #1E5338 0%, #103420 100%);
    --green-light-gradient: linear-gradient(135deg, #2ECC71 0%, #1E5338 100%);
    --green-glow: rgba(30, 83, 56, 0.15);
    --shadow-green: 0 10px 25px rgba(30, 83, 56, 0.2);

    /* Semantic Colors */
    --accent-glow: rgba(200, 161, 107, 0.15);
    --gold-gradient: linear-gradient(135deg, #C8A16B 0%, #A87C42 100%);
    --dark-gradient: linear-gradient(135deg, #1A1A1A 0%, #0B0B0B 100%);
    --light-gradient: linear-gradient(135deg, #FFFFFF 0%, #F4F8F6 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout Details */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 25px rgba(200, 161, 107, 0.3);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* --------------------------------------------------------------------------
   3. Utilities & Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-dark h2 {
    color: var(--white);
}

.text-green {
    color: var(--primary-green);
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-desc {
    color: #b0b0b0;
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 161, 107, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green-gradient);
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn-dark {
    background: var(--dark-green);
    color: var(--white);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.btn-dark:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

/* Header & Footer overrides to remain strictly Black and Gold */
.header .btn-primary,
.footer .btn-primary {
    background: var(--gold-gradient) !important;
    color: var(--black) !important;
    box-shadow: var(--shadow-sm) !important;
}

.header .btn-primary:hover,
.footer .btn-primary:hover {
    box-shadow: var(--shadow-gold) !important;
    transform: translateY(-3px) !important;
    color: var(--black) !important;
}

.header .btn-secondary,
.footer .btn-secondary {
    border-color: var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}

.header .btn-secondary:hover,
.footer .btn-secondary:hover {
    background: var(--primary-gold) !important;
    color: var(--black) !important;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    background-color: var(--black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(200, 161, 107, 0.15);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.header.scrolled .logo-img {
    height: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
}

.logo-text span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    background-color: var(--light-bg);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(30, 83, 56, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 45%);
    padding-top: calc(var(--header-height) + 50px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    z-index: 5;
    position: relative;
}

.hero-content {
    color: var(--text-color);
}

.hero-tagline-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 83, 56, 0.08);
    border: 1px solid rgba(30, 83, 56, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    background: var(--green-light-gradient);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Image Showcase Styles */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-product-img-wrapper {
    position: relative;
    z-index: 5;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(30, 83, 56, 0.25);
    background-color: var(--white);
    max-width: 440px;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    animation: floatHeroImg 7s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.hero-product-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-green);
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: calc(var(--border-radius-lg) - 8px);
    transition: var(--transition-smooth);
}

/* Animations */
@keyframes floatHeroImg {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(0.8deg);
    }
}

/* --------------------------------------------------------------------------
   6. Why Choose Grammys Section
   -------------------------------------------------------------------------- */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.choose-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.choose-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(30, 83, 56, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.choose-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.choose-card-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.choose-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

/* Hover State */
.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.3);
}

.choose-card:hover::before {
    opacity: 1;
}

.choose-card:hover .choose-card-icon {
    background: var(--green-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.choose-card:hover .choose-card-title {
    color: var(--white);
}

.choose-card:hover .choose-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   7. Products Display (Overview & Pages)
   -------------------------------------------------------------------------- */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(30, 83, 56, 0.3);
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
    border-color: var(--primary-green);
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

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

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

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

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-img-box {
    background: #eef0eb;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-img-box svg {
    width: 80px;
    height: 80px;
    stroke: var(--primary-green);
    fill: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--accent-green);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action {
    margin-top: auto;
}

.product-action .btn {
    width: 100%;
}

/* Hover State */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 204, 113, 0.25);
}

.product-card:hover .product-img-box svg {
    transform: scale(1.1);
    opacity: 1;
}

/* Category Sections on Product Page */
.category-block {
    margin-bottom: 80px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

.category-title-wrap h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 5px;
}

.category-title-wrap::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
}

/* (Dealer Network Section Removed) */

/* --------------------------------------------------------------------------
   9. About Us Page Specifics
   -------------------------------------------------------------------------- */
.about-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: var(--light-bg);
    background-image:
        radial-gradient(circle at top, rgba(30, 83, 56, 0.15), transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--black);
    position: relative;
    border-bottom: 1px solid rgba(30, 83, 56, 0.15);
}

.about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
}

.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content-left p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 83, 56, 0.2);
    text-align: center;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 83, 56, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.philosophy-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   10. Contact Page Specifics
   -------------------------------------------------------------------------- */
.grid-contact {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    background: var(--white);
    color: var(--text-color);
    padding: 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 83, 56, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(30, 83, 56, 0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.contact-item-text h4 {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-color);
    font-size: 0.95rem;
}

.contact-item-text a:hover {
    color: var(--primary-green);
}

.contact-socials {
    margin-top: 40px;
}

.contact-form-panel {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(30, 83, 56, 0.15);
    background-color: var(--white);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

/* Custom Styled Map Placeholder */
.map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 83, 56, 0.2);
    position: relative;
    background: var(--light-bg);
}

.map-placeholder-ui {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.map-placeholder-ui::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 247, 244, 0.85), rgba(248, 247, 244, 0.95));
    z-index: 1;
}

.map-ui-content {
    position: relative;
    z-index: 5;
    padding: 30px;
}

.map-marker-glow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 83, 56, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    animation: pulseGlow 2s infinite;
}

.map-marker-glow svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-green);
    fill: none;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 83, 56, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(30, 83, 56, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 83, 56, 0);
    }
}

.map-ui-title {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 8px;
}

.map-ui-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   11. Privacy Policy Layout
   -------------------------------------------------------------------------- */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 50px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid rgba(30, 83, 56, 0.2);
    padding-bottom: 8px;
}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.policy-container li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.policy-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
    display: block;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(200, 161, 107, 0.15);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.footer-brand h3 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact h4 {
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-gold);
    fill: none;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.social-icon-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   13. Floating Actions (WhatsApp & Call)
   -------------------------------------------------------------------------- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-call {
    background-color: var(--primary-green);
    color: var(--white);
    display: none;
    /* Shows on mobile viewports only */
}

.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 83, 56, 0.5);
}

.float-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.float-call svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
}

/* Tooltip */
.float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background-color: var(--black);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(200, 161, 107, 0.3);
}

.float-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* --------------------------------------------------------------------------
   14. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .about-hero-title {
        font-size: 2.6rem;
    }
}

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

    .product-img-box {
        height: 280px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(200, 161, 107, 0.1);
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .header-cta .btn {
        display: none;
        /* Hide header cta button on tablets/mobile, accessed inside hamburger menu or floats */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphics {
        min-height: 380px;
    }

    .grid-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-contact {
        grid-template-columns: 1fr;
    }

    .float-call {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .dealer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dealer-benefits {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .policy-container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}