/* ==========================================================================
   SHREE JAYAM LABELS - PREMIUM LUXURY DESIGN SYSTEM
   Theme: Dark Green Background (#042925) & Metallic Gold Gradients
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-main: #042925;
    --bg-darker: #021815;
    --bg-card: rgba(8, 60, 54, 0.65);
    --bg-card-hover: rgba(12, 80, 72, 0.85);
    --bg-glass: rgba(4, 41, 37, 0.75);

    /* Gold Gradients & Tints */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA7C11 100%);
    --gold-gradient-hover: linear-gradient(135deg, #FCF6BA 0%, #BF953F 50%, #FCF6BA 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-border: rgba(212, 175, 55, 0.25);
    --gold-border-strong: rgba(212, 175, 55, 0.7);

    /* Typography Colors */
    --text-white: #FFFFFF;
    --text-light: #E0EFEA;
    --text-muted: #9BB8B3;

    /* Accent & Status Colors */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;

    /* Shadows & Effects */
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 15px rgba(212, 175, 55, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.25);
    --shadow-gold-btn: 0 8px 25px rgba(212, 175, 55, 0.4);

    /* Transitions */
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(18, 140, 126, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   UTILITY CLASSES & DESIGN TOKENS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 1.5rem auto 0;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #021815;
    font-weight: 700;
    box-shadow: var(--shadow-gold-btn);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient-hover);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
    color: #000;
}

.btn-outline-gold {
    background: rgba(4, 41, 37, 0.5);
    color: var(--gold-light);
    border: 2px solid var(--gold-primary);
    backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #021815;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-btn);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1ebd5b;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.3rem 0;
    background: rgba(2, 24, 21, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--gold-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 10%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.logo-wrapper:hover .logo-img {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: absolute;
    right: 60px !important;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 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,
.nav-link.active {
    color: var(--gold-light);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

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

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(18, 140, 126, 0.18) 0%, transparent 70%);
    filter: blur(60px);
    animation: floatGlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 3rem 1rem;
}

.hero-logo-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    padding: 5px;
    background: var(--gold-gradient);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    animation: pulseGlow 4s infinite alternate;
}

.hero-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #021815;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.6);
        transform: scale(1.03);
    }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.6rem;
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   STATS COUNTER SECTION
   ========================================================================== */
.stats-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 3.5rem 0;
    position: relative;
    z-index: 2;
}

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

.stat-card {
    padding: 1.5rem;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-text-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    transition: var(--transition-smooth);
}

.about-feature-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
    background: var(--bg-card-hover);
}

.about-feature-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    line-height: 1;
}

.about-feature-text h4 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.about-feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    background: var(--gold-gradient-subtle);
    border: 1px solid var(--gold-border-strong);
    box-shadow: var(--shadow-card);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: #021815;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.about-badge span {
    display: block;
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

/* ==========================================================================
   PRODUCTS GRID & CARDS
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    group: true;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #021815;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(4, 41, 37, 0.85);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--gold-border);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.product-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--gold-light);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spec-item strong {
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-card-view {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-view:hover {
    background: var(--gold-gradient);
    color: #021815;
}

.btn-card-wa {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    background: var(--whatsapp-green);
    color: #fff;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-fast);
}

.btn-card-wa:hover {
    background: #1ebd5b;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--bg-card);
    padding: 2.5rem 1.8rem;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.why-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--gold-gradient);
    color: #021815;
    transform: rotate(360deg) scale(1.1);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, #021815 0%, #063832 50%, #021815 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* ==========================================================================
   PRODUCTS PAGE SPECIFIC STYLES
   ========================================================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--gold-border);
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    background: var(--bg-card);
    color: var(--text-light);
    border: 1px solid var(--gold-border);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #021815;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p,
.contact-text a {
    font-size: 1.15rem;
    color: var(--text-white);
    font-weight: 600;
}

.contact-text a:hover {
    color: var(--gold-light);
}

.contact-form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gold-border-strong);
    box-shadow: var(--shadow-hover);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(2, 24, 21, 0.7);
    border: 1px solid var(--gold-border);
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    background: rgba(2, 24, 21, 0.9);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    background: var(--bg-card);
    padding: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #021815 0%, #063b36 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px dashed var(--gold-border);
}

.map-pin-pulse {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #021815;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ==========================================================================
   FOOTER (ON ALL PAGES)
   ========================================================================== */
.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--gold-primary);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--gold-primary);
    margin-top: 4px;
}

.footer-mini-form input,
.footer-mini-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    background: rgba(4, 41, 37, 0.8);
    border: 1px solid var(--gold-border);
    color: var(--text-white);
    font-size: 0.9rem;
}

.footer-mini-form input:focus,
.footer-mini-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & WIDGET
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-tooltip {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-btn-circle {
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    position: relative;
    transition: var(--transition-smooth);
}

.wa-btn-circle::before,
.wa-btn-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0.6;
    z-index: -1;
    animation: pulseWave 2.5s infinite;
}

.wa-btn-circle::after {
    animation-delay: 1.25s;
}

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-btn-circle:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1ebd5b;
    color: #fff;
}

/* ==========================================================================
   MODAL & TOAST NOTIFICATIONS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--gold-border);
    z-index: 10;
}

.modal-img {
    background: #021815;
    height: 100%;
    min-height: 350px;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-hover);
    z-index: 100000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    opacity: 0;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==========================================================================
   ANIMATIONS ON SCROLL
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {

    .products-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .stat-card:nth-child(2) {
        border-right: none;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-right: 1px solid var(--gold-border);
    }

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

    .mobile-toggle {
        display: block;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .products-grid,
    .why-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-img {
        min-height: 220px;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

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

    .wa-tooltip {
        display: none;
    }
}