@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    --color-primary: #4A0E17;       /* Deep Wine / Burgundy */
    --color-primary-rgb: 74, 14, 23;
    --color-primary-light: #6E1A27;
    --color-secondary: #D4AF37;     /* Champagne Gold */
    --color-secondary-rgb: 212, 175, 55;
    --color-secondary-light: #F3E5AB;
    --color-accent: #C5A880;        /* Muted Gold / Sand */
    --color-bg-light: #FFFBFB;      /* Soft Rose Off-White */
    --color-bg-alt: #F7EFEF;        /* Alternate Light BG */
    --color-bg-dark: #1F0508;       /* Luxury Dark Burgundy */
    --color-text-dark: #2C2223;     /* Warm Charcoal */
    --color-text-light: #FFF0F2;    /* Soft Pinkish White */
    --color-text-muted: #7E6C6E;    /* Muted Rose Grey */
    --color-success: #2E7D32;       /* Forest Green for trust/success */

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --border-radius-circle: 50%;

    --shadow-sm: 0 4px 12px rgba(74, 14, 23, 0.04);
    --shadow-md: 0 12px 32px rgba(74, 14, 23, 0.08);
    --shadow-lg: 0 24px 48px rgba(74, 14, 23, 0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);

    --transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-elastic: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

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

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border: 2px solid var(--color-bg-light);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(74, 14, 23, 0.25);
}

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

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

.btn-gold {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: #e5bd42;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    background-color: rgba(74, 14, 23, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-title.left-align::after {
    margin-left: 0;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 4rem;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 251, 251, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 14, 23, 0.06);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(255, 251, 251, 0.95);
    box-shadow: var(--shadow-sm);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-primary);
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    margin-top: 0.2rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

#nav-whatsapp-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    gap: 0.5rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#nav-whatsapp-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-alt) 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 14, 23, 0.06);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(74, 14, 23, 0.1);
    animation: pulse 2.5s infinite;
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

/* Heartbeat Logo Animation */
@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    15% { transform: scale(1.12); box-shadow: 0 0 20px 8px rgba(212, 175, 55, 0.4); }
    30% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    45% { transform: scale(1.18); box-shadow: 0 0 25px 10px rgba(212, 175, 55, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.heartbeat-logo-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--color-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
    animation: heartbeat 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.heartbeat-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.hero-highlights {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(74, 14, 23, 0.1);
    padding-top: 2rem;
}

.hero-highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.hero-highlight-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-img-container {
    position: relative;
}

.hero-img-offset-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-secondary);
    border-radius: var(--border-radius-md);
    z-index: 1;
    pointer-events: none;
}

.hero-img-frame {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-alt);
    aspect-ratio: 4/5;
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.hero-img-container:hover img {
    transform: scale(1.08);
}

/* ==========================================
   LAUNCH OFFERS (FLOATING BANNER)
   ========================================== */
.offers-ribbon {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.offers-ribbon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.offer-card {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.offer-card-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.offer-card-title {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.offer-card-desc {
    color: rgba(255, 240, 242, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.offer-card-terms {
    font-size: 0.75rem;
    color: rgba(255, 240, 242, 0.4);
}

/* ==========================================
   ABOUT US
   ========================================== */
.about {
    background-color: var(--color-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    position: relative;
}

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

.about-text p {
    margin-bottom: 1.5rem;
}

.about-mission {
    border-left: 3px solid var(--color-secondary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.about-img-group {
    position: relative;
}

.about-img-offset {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    z-index: 1;
    pointer-events: none;
}

.about-img-main {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background-color: var(--color-bg-alt);
}

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

/* ==========================================
   COLLECTIONS (TABBED INTERFACE)
   ========================================== */
.collections {
    background-color: var(--color-bg-alt);
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(74, 14, 23, 0.1);
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

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

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-pane.active {
    display: block;
}

.collections-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.collections-info {
    max-width: 480px;
}

.collections-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.collections-info p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

.collection-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(74, 14, 23, 0.03);
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-secondary);
    transform: scaleY(0);
    transition: var(--transition-smooth);
    transform-origin: bottom;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.collection-card:hover::before {
    transform: scaleY(1);
}

.card-num {
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
}

.collection-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.collection-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================
   NEW ARRIVALS (SLIDER)
   ========================================== */
.new-arrivals {
    background-color: var(--color-bg-light);
    position: relative;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 2.5rem;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    flex: 0 0 calc((100% - 6rem) / 4);
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
    background-color: var(--color-bg-alt);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(74, 14, 23, 0.85) 0%, rgba(74, 14, 23, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: var(--color-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    border: 1px solid rgba(74, 14, 23, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: transparent;
}

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

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 5, 8, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-secondary);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--color-secondary);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose-us {
    background-color: var(--color-bg-alt);
}

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

.feature-card {
    background-color: var(--color-bg-light);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(74, 14, 23, 0.02);
}

.feature-card-last {
    grid-column: span 3;
    max-width: 400px;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(74, 14, 23, 0.04);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-container {
    background-color: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-icon-container svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

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

/* ==========================================
   CONTACT US & LOCATION
   ========================================== */
.contact-location {
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
}

.contact-form-side h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-form-side p {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2.2rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 2px solid rgba(74, 14, 23, 0.15);
    background: transparent;
    color: var(--color-text-dark);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-label {
    position: absolute;
    top: 0.9rem;
    left: 0;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    pointer-events: none;
}

/* Focus and active states for input labels */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.form-input:focus {
    border-bottom-color: var(--color-primary);
}

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

.form-status {
    font-size: 0.95rem;
    margin-top: 1rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.form-status.success {
    display: flex;
    color: var(--color-success);
}

.form-status.error {
    display: flex;
    color: var(--color-primary);
}

.contact-info-side {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-side h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.detail-text h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.detail-text p, .detail-text a {
    color: rgba(255, 240, 242, 0.7);
    font-size: 1rem;
}

.detail-text a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================
   STORE LOCATION SECTION (MAP)
   ========================================== */
.store-location {
    padding-bottom: 8rem;
    background-color: var(--color-bg-light);
}

.location-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container {
    height: 480px;
    background-color: #e5e5e5;
    position: relative;
}

/* Interactive Styled Visual Map Card */
.map-visual-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eae1db;
    background-image: 
        radial-gradient(#d6c9be 15%, transparent 16%),
        radial-gradient(#d6c9be 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    position: relative;
    overflow: hidden;
}

/* Abstract roads and pins for visual appeal */
.map-visual-road {
    position: absolute;
    background-color: #ffffff;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}
.map-road-h1 { top: 30%; left: 0; width: 100%; height: 35px; }
.map-road-h2 { bottom: 25%; left: 0; width: 100%; height: 25px; }
.map-road-v1 { left: 40%; top: 0; width: 30px; height: 100%; }
.map-road-v2 { right: 20%; top: 0; width: 40px; height: 100%; }

.map-visual-lake {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 160px;
    height: 100px;
    background-color: #b9d8eb;
    border-radius: 60px 40px 70px 30px;
    opacity: 0.8;
}

.map-visual-park {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 80px;
    background-color: #d1e4c7;
    border-radius: 40px 60px 30px 50px;
}

.map-visual-pin {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -100%);
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.map-pin-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 10px rgba(74, 14, 23, 0.4));
}

.map-pin-pulse {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(74, 14, 23, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 5;
}

.location-details-card {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details-card h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.location-details-card p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.store-hours {
    border-top: 1px solid rgba(74, 14, 23, 0.1);
    border-bottom: 1px solid rgba(74, 14, 23, 0.1);
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.hours-row:last-child {
    margin-bottom: 0;
}

.hours-label {
    font-weight: 600;
}

.hours-val {
    color: var(--color-text-muted);
}

/* ==========================================
   CUSTOMER PROMISE
   ========================================== */
.promise {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.promise::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    bottom: -400px;
    left: -400px;
    border-radius: 50%;
}

.promise-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promise-badge {
    color: var(--color-secondary);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.promise-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.promise-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 240, 242, 0.8);
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.promise-signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-secondary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #120204;
    color: rgba(255, 240, 242, 0.6);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.95rem;
}

.footer h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo-container {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-circle);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.footer-brand p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--color-secondary);
}

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

.copyright {
    font-size: 0.85rem;
}

.footer-meta-links {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
}

.footer-meta-links a:hover {
    color: var(--color-secondary);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 14, 23, 0.15); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(74, 14, 23, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 14, 23, 0); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -115%); }
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(0.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.75rem; }
    .about-grid, .collections-wrapper, .why-choose-us .features-grid, .contact-grid {
        gap: 3rem;
    }
    .gallery-item {
        flex: 0 0 calc((100% - 4rem) / 3);
    }
}

@media (max-width: 992px) {
    .section-padding { padding: 6rem 0; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-cta { justify-content: center; }
    .hero-highlights { justify-content: center; }
    .hero-img-container {
        max-width: 480px;
        margin: 0 auto;
    }

    .offers-ribbon { margin-top: 2rem; }
    .offers-ribbon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-img-group {
        max-width: 480px;
        margin: 0 auto;
        order: -1;
    }

    .collections-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .collections-info { max-width: 100%; }
    .collections-grid { max-width: 650px; margin: 0 auto; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .features-grid .feature-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-info-side {
        padding: 3rem;
    }

    .location-box {
        grid-template-columns: 1fr;
    }
    .map-container { height: 350px; }
    .location-details-card { padding: 3rem; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .logo-img {
        height: 44px;
    }

    .section-title { font-size: 2.25rem; }
    .hero-title { font-size: 2.75rem; }
    
    .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(--color-bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-actions { display: none; } /* Hide secondary call to action on mobile nav */

    .gallery-item {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-grid .feature-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .promise-title { font-size: 2.5rem; }
    .promise-text { font-size: 1.15rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: span 1; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-padding { padding: 4rem 0; }
    
    .logo-img {
        height: 38px;
    }

    .hero-title { font-size: 2.25rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-highlights { flex-direction: column; gap: 1.5rem; }
    
    .offer-card { padding: 2rem; }
    .offer-card-title { font-size: 1.75rem; }
    
    .gallery-item {
        flex: 0 0 100%;
    }

    .tab-btn { padding: 0.8rem 1rem; font-size: 0.85rem; }
    .collections-grid { grid-template-columns: 1fr; }
    
    .location-details-card {
        padding: 2.5rem 1.25rem;
    }
}

/* ==========================================
   DYNAMIC ANNOUNCEMENTS SECTION
   ========================================== */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.announcement-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 14, 23, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.announcement-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.announcement-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.announcement-badge-type {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.type-offer .announcement-badge-type {
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--color-secondary);
}
.type-winner .announcement-badge-type {
    background-color: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
}
.type-festival .announcement-badge-type {
    background-color: rgba(74, 14, 23, 0.1);
    color: var(--color-bg-dark);
}
.announcement-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-bg-dark);
}
.announcement-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.announcement-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: auto;
}

/* ==========================================
   CUSTOMER REVIEWS CONTINUOUS MARQUEE
   ========================================== */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}
.reviews-marquee-container::before, .reviews-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
}
.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light), transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    gap: 2.5rem;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    width: 320px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 14, 23, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}
.review-stars {
    color: var(--color-secondary);
    font-size: 1.1rem;
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
}
.review-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-bg-dark);
    align-self: flex-end;
}

/* ==========================================
   GV SYSTEMS POWERED-BY BRANDING & HEARTBEAT
   ========================================== */
.branding-logo-link {
    display: inline-block;
    text-decoration: none;
}
.branding-logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
    animation: heartbeat 2s infinite ease-in-out;
}
.branding-logo-circle:hover {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation-play-state: paused;
}
.branding-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.08); }
    28% { transform: scale(1.02); }
    42% { transform: scale(1.08); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* ==========================================
   MOBILE-ONLY BLINKING BORDER ANIMATION
   ========================================== */
@keyframes mobile-border-pulse {
    0% {
        border-color: #D4AF37;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
    }
    50% {
        border-color: #ffffff;
        box-shadow: 0 0 18px rgba(212, 175, 55, 0.95), 0 0 25px rgba(255, 215, 0, 0.7);
    }
    100% {
        border-color: #D4AF37;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
    }
}

@media (max-width: 768px) {
    .footer-stats-branding {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    .footer-branding {
        justify-content: center !important;
    }

    /* Collections Section Container */
    .collections {
        padding: 1rem 0 1.5rem 0 !important;
    }

    /* Mobile Category Toggle Bar with Blinking Border Animation (ONLY on Mobile View) */
    .mobile-cat-toggle-bar {
        display: flex !important;
        animation: mobile-border-pulse 1.6s infinite ease-in-out !important;
        border: 2px solid #D4AF37 !important;
    }

    #btn-toggle-mobile-cat,
    #btn-toggle-col-mobile-cat {
        animation: mobile-border-pulse 1.6s infinite ease-in-out !important;
        border: 1px solid #ffffff !important;
    }

    #main-collections-wrapper {
        display: block !important;
        box-shadow: none !important;
        border-radius: 10px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    /* Collapsed Sidebar on Mobile */
    #index-cat-sidebar,
    .cat-sidebar-pane {
        width: 100% !important;
        min-width: 100% !important;
        display: none; /* COLLAPSED BY DEFAULT ON MOBILE */
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        margin-bottom: 1rem;
    }

    #index-cat-sidebar.mobile-open,
    .cat-sidebar-pane.mobile-open {
        display: block !important; /* EXPANDS WHEN OPENED */
    }

    #index-cat-content,
    .cat-content-pane {
        width: 100% !important;
        padding: 1rem 0.5rem !important;
    }

    /* Grid cards responsive sizing */
    #idx-cat-items-grid,
    #cat-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)) !important;
        gap: 0.85rem !important;
    }

    .item-card {
        border-radius: 8px !important;
    }

    .item-card h4 {
        font-size: 1rem !important;
    }

    /* Massive Offers Responsive Adjustment */
    #home .hero-promo-wrapper,
    #home > div > div {
        padding: 2rem 1.25rem !important;
        border-radius: 14px !important;
    }

    #home div[style*="grid-template-columns: 1.2fr 0.8fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    #home h1 {
        font-size: 2.2rem !important;
    }

    /* Why Shop With Us Mobile Optimization */
    .why-choose-us {
        padding: 3rem 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .feature-card {
        padding: 1.5rem 1.25rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
        grid-column: span 1 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .feature-icon-container {
        width: 55px !important;
        height: 55px !important;
        margin: 0 auto 1rem !important;
    }

    .feature-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
    }

    .feature-card p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }
}

/* ==========================================
   WE ARE HIRING BLINKING BADGE & CAREERS STYLES
   ========================================== */
@keyframes hireBlinkPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
        border-color: #e74c3c;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 12px 6px rgba(231, 76, 60, 0.4);
        border-color: #f39c12;
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
        border-color: #e74c3c;
        transform: scale(1);
    }
}

.we-are-hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1.5px solid #e74c3c;
    text-decoration: none;
    animation: hireBlinkPulse 1.8s infinite ease-in-out;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.we-are-hiring-badge:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: #27ae60;
    color: white !important;
    animation: none;
}


