/* ==========================================================================
   PALROM Products - Design System & Modern Stylesheet
   ========================================================================== */

/* 1. Design Tokens & CSS Custom Properties */
:root {
    /* Color Palette */
    --color-primary: rgb(231, 177, 36);       /* Brand Golden Yellow (#e7b124) */
    --color-primary-light: rgb(231, 177, 36); /* Brand Golden Yellow (#e7b124) */
    --color-primary-dark: hsl(43, 80%, 38%);  /* Brand Gold (Contrast Optimized) */
    
    --color-forest: hsl(0, 0%, 22%);          /* Brand Dark Charcoal Grey */
    --color-forest-dark: hsl(0, 0%, 16%);     /* Brand Dark Charcoal Grey (#2a2a2a) */
    --color-accent: rgb(231, 177, 36);        /* Brand Golden Yellow Accent */
    
    --color-text-dark: hsl(0, 0%, 16%);       /* Main Text Color (#2a2a2a) */
    --color-text-muted: hsl(0, 0%, 48%);      /* Secondary Text */
    --color-bg-light: rgb(253, 247, 242);     /* Warm Peach-Cream background */
    --color-bg-white: hsl(0, 0%, 100%);
    
    --color-border: hsl(210, 10%, 90%);
    --color-success: hsl(140, 50%, 45%);
    --color-error: hsl(0, 75%, 50%);

    /* Typography */
    --font-heading: 'Outfit', 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 115px; /* Offset for fixed header + margin spacing */
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-dark);
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

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

.text-white {
    color: var(--color-bg-white) !important;
}

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

.max-w-xl {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mb-5 { margin-bottom: 4rem; }
.rounded-lg { border-radius: var(--border-radius-lg); }
.shadow-lg { box-shadow: var(--shadow-md); }
.img-responsive { width: 100%; object-fit: cover; }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2.5rem;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 177, 36, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-bg-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outlined {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-dark);
}

.btn-outlined:hover {
    background-color: var(--color-border);
}

.icon-left { margin-right: 0.5rem; }
.icon-right { margin-left: 0.5rem; }

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.badge-accent {
    background-color: rgba(240, 168, 40, 0.15);
    color: var(--color-accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-forest);
}

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

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(248, 244, 240);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 3.5rem;
}

.header-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.logo:hover .header-logo-img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-right: auto;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-btn {
    background-color: var(--color-forest);
    color: var(--color-bg-white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.action-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-forest);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* 4. Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-bg-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.88) 0%, rgba(231, 177, 36, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(240, 168, 40, 0.2);
    border: 1px solid rgba(240, 168, 40, 0.4);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-bg-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* 5. Introduction Section */
.intro-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.intro-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-icon {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-forest);
}

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

.image-wrapper-decorative {
    position: relative;
    padding: 1rem;
}

.image-wrapper-decorative:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid rgba(231, 177, 36, 0.2);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transition: var(--transition-smooth);
}

.image-wrapper-decorative:hover:before {
    transform: translate(10px, -10px);
}

.stats-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

/* 6. Why Choose Us Section */
.why-us-section {
    position: relative;
}

.card {
    background-color: var(--color-bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid transparent;
    transition: var(--transition-smooth);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

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

.card-hover:hover {
    transform: translateY(-8px);
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 177, 36, 0.1);
    border-top: 4px solid var(--color-primary-light);
}

.brochure-download-container {
    margin-top: 5rem;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
    color: var(--color-bg-white);
    padding: 3rem 4rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.brochure-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
}

.pdf-large-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
}

.brochure-content h3 {
    color: var(--color-bg-white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.brochure-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 7. Product Sieve Catalogue */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 0.7rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(231, 177, 36, 0.2);
}

.product-card {
    position: relative;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--color-primary-light);
}

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

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

.product-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

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

.product-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: hsla(0, 0%, 16%, 0.85);
    backdrop-filter: blur(5px);
    color: var(--color-bg-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-forest);
}

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

.product-specs {
    margin-bottom: 1.8rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.product-specs li {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
}

.product-specs li::before {
    content: '•';
    color: var(--color-primary-light);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1;
}

.product-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    color: var(--color-primary-dark);
}

.product-link:hover,
.product-card:hover .product-link {
    color: var(--color-primary);
}

.product-link i {
    margin-left: 0.4rem;
    transition: var(--transition-fast);
}

.product-link:hover i,
.product-card:hover .product-link i {
    transform: translateX(5px);
}

.product-card .product-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* For filtering transition animations */
.product-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

/* 8. About Section (Dark theme) */
.about-section {
    position: relative;
}

.image-stack {
    position: relative;
}

.about-floating-card {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background-color: var(--color-forest);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    border-left: 4px solid var(--color-accent);
}

.about-floating-card i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.about-floating-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--color-bg-light);
    line-height: 1.5;
}

.about-text-column p {
    color: rgba(248, 244, 240, 0.8);
}

.lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-accent) !important;
    margin-bottom: 1.5rem;
}

.about-quote {
    margin-top: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-primary);
}

.quote-text {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    font-size: 0.95rem;
    color: var(--color-bg-white);
}

.quote-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* 9. Timeline Section */
.timeline-section {
    background-color: var(--color-bg-light);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
    padding-right: 3rem;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border: 4px solid var(--color-bg-light);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--color-accent);
    transform: translateY(-50%) scale(1.3);
}

.timeline-item.left .timeline-dot {
    right: -10px;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

.timeline-content-card {
    background-color: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid transparent;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content-card {
    border-top: 4px solid var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.timeline-content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-forest);
}

.timeline-content-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* 10. Photo Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item.video-item {
    grid-column: span 4;
    height: 480px;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, hsla(0, 0%, 16%, 0.9) 0%, hsla(0, 0%, 16%, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-bg-white);
    pointer-events: none;
}

.gallery-overlay h3 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0;
}

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

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

/* 11. Contact Us Page Styles */
.contact-details-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--color-forest);
}

.detail-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.form-wrapper {
    background-color: var(--color-bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--color-forest);
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

.modern-form .form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.modern-form .form-group-row .form-group {
    margin-bottom: 0;
}

.modern-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 177, 36, 0.15);
}

.btn-block {
    width: 100%;
    border-radius: var(--border-radius-md);
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-feedback.success {
    background-color: rgba(73, 163, 107, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(73, 163, 107, 0.2);
}

.form-feedback.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.hidden {
    display: none !important;
}

/* 12. Footer Section */
.main-footer {
    background-color: var(--color-forest-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 4px solid var(--color-primary-light);
}

.footer-top {
    padding: 5rem 0 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h2 {
    color: var(--color-bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.footer-brand .thin {
    font-weight: 300;
    color: var(--color-primary-light);
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-products h3 {
    color: var(--color-bg-white);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

.footer-links ul li a,
.footer-products ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links ul li a:hover,
.footer-products ul li a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    font-size: 0.8rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-meta-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-meta-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-meta-links .divider {
    color: rgba(255, 255, 255, 0.2);
}

/* 13. GDPR Cookie Consent Popup Modal */
.cookie-modal {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 450px;
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    border: 2px solid var(--color-primary-light);
    animation: slideUpModal 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.cookie-header h3 {
    font-size: 1.2rem;
    color: var(--color-forest);
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* 14. Responsive Layout Breakpoints */

/* Tablet Viewports */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.video-item {
        grid-column: span 2;
        height: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brochure-download-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .brochure-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pdf-large-icon {
        font-size: 2.5rem;
    }
    
    .modern-form .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Navigation drawer menu for mobile */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .header-logo-img {
        height: 56px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        clip-path: circle(0px at 90% 0%);
        transition: transform 0.5s ease-out, clip-path 0.5s ease-out;
        z-index: 99;
        margin-right: 0;
    }
    
    .nav-menu.open {
        clip-path: circle(1200px at 90% 0%);
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .header-actions .action-btn {
        display: none; /* Hide Quote button on extremely small mobile screen actions */
    }
    
    .cookie-modal {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

/* 15. Scroll Animation Entrance Effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Active Nav links based on scroll */
/* Simple CSS helper class for revealing elements */
.reveal {
    opacity: 1;
    transform: none;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.02);
}

/* 16. Team Direct Contacts Styles */
.team-contacts-section {
    margin-top: 5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.team-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid transparent;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 300px;
    max-width: 340px;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary-light);
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border: 2px solid var(--color-primary-light);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    color: var(--color-forest);
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.team-languages {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background-color: var(--color-forest-dark);
    color: var(--color-bg-white) !important;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.team-email-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-forest-dark) !important;
}

/* Product Grid centering when filtered */
.product-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.product-grid .product-card {
    flex: 0 1 380px;
    width: 100%;
}

/* ==========================================================================
   14. Careers / Recruitment Styles
   ========================================================================== */
.careers-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.careers-benefits-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    background: rgba(231, 177, 36, 0.1);
    padding: 0.75rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.benefit-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.jobs-section {
    background-color: var(--color-bg-white);
    padding: 6rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    gap: 2.5rem;
}

.job-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-dark);
}

.job-header {
    margin-bottom: 1.5rem;
}

.job-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-title-area h3 {
    font-size: 1.35rem;
    color: var(--color-text-dark);
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.tag-loc {
    background-color: rgba(231, 177, 36, 0.12);
    color: var(--color-primary-dark);
    border: 1px solid rgba(231, 177, 36, 0.25);
}

.tag-type {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
}

.job-description {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 2rem;
}

.job-requirements h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.job-requirements ul {
    list-style-type: none;
}

.job-requirements li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.job-requirements li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary-dark);
    font-size: 0.8rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    margin-top: auto;
}

.job-salary {
    font-weight: 700;
    color: var(--color-forest);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .careers-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .careers-benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .job-card {
        padding: 1.75rem;
    }
    .job-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   15. Job Application (Apply) Page Styles
   ========================================================================== */
.hr-welcome-section {
    background-color: var(--color-bg-white);
    padding: 6rem 0;
}

.hr-welcome-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.hr-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-primary);
}

.hr-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hr-image-wrapper:hover img {
    transform: scale(1.03);
}

.hr-welcome-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    position: relative;
}

.hr-welcome-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.hr-welcome-text .quote-lead {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hr-welcome-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hr-signoff {
    margin-top: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.hr-signoff strong {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    display: block;
}

.hr-signoff span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Application Form & Drag-and-drop zone */
.apply-form-section {
    background-color: var(--color-bg-light);
    padding: 6rem 0;
}

.apply-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.quick-chat-card {
    background-color: #f1f8e9; /* Light WhatsApp green background */
    border: 1px solid #c8e6c9; /* WhatsApp green border tint */
    border-radius: var(--border-radius-lg);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
}

.quick-chat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-chat-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.quick-chat-icon {
    font-size: 3rem;
    color: #25D366; /* WhatsApp green */
}

.quick-chat-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}

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

.chat-now-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: var(--color-bg-white) !important;
    white-space: nowrap;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.chat-now-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .quick-chat-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .quick-chat-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .chat-now-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.apply-form-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.apply-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 1rem;
    color: var(--color-text-dark);
}

.dropzone-area {
    border: 2px dashed rgba(231, 177, 36, 0.4);
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.dropzone-area:hover, .dropzone-area.dragover {
    border-color: var(--color-primary-dark);
    background-color: rgba(231, 177, 36, 0.05);
}

.dropzone-area.has-file {
    border-color: var(--color-success);
    background-color: rgba(76, 175, 80, 0.05);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    transition: var(--transition-smooth);
}

.dropzone-area.has-file .dropzone-icon {
    color: var(--color-success);
}

.dropzone-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.dropzone-subtext {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.file-info-badge {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.25rem;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.file-info-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.remove-file-btn {
    background: none;
    border: none;
    color: var(--color-error);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.remove-file-btn:hover {
    transform: scale(1.15);
}

@media (max-width: 992px) {
    .hr-welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hr-welcome-text h2::after {
        margin: 0.75rem auto 0;
    }
    .hr-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .apply-form-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   16. Floating Contact Widget Styles
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.widget-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: var(--color-forest-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    outline: none;
}

.widget-toggle-btn:hover {
    transform: scale(1.08);
    background-color: var(--color-primary-dark);
    color: var(--color-bg-light);
}

.floating-contact-widget.active .widget-toggle-btn {
    background-color: var(--color-forest-dark);
    color: var(--color-primary);
}

.widget-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-contact-widget.active .widget-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.widget-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: var(--color-bg-white);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
}

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

/* Distinct color coding */
.whatsapp-item {
    background-color: #25D366;
}
.whatsapp-item:hover {
    background-color: #128C7E;
}

.phone-item {
    background-color: #007bff;
}
.phone-item:hover {
    background-color: #0056b3;
}

.email-item {
    background-color: #333333;
}
.email-item:hover {
    background-color: #111111;
}

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

/* Tooltip Styles */
.widget-tooltip {
    position: absolute;
    right: 65px;
    background-color: var(--color-forest-dark);
    color: var(--color-bg-white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.widget-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-forest-dark);
}

.widget-item:hover .widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Media query to make it fit nicely on very small mobile screens */
@media (max-width: 576px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.video-item {
        grid-column: span 1;
        height: 250px;
    }
}

/* ==========================================================================
   17. Quote Inquiry Cart & Slide-out Sidebar Styles
   ========================================================================== */
.cart-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    position: relative;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.cart-count-badge.visible {
    opacity: 1;
    transform: scale(1);
}

/* Badge pulse animation when item added */
@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: badgePulse 0.4s ease-out;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sidebar-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Slide-out Sidebar */
.quote-sidebar {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden initially */
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 2200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-sidebar.open {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg-light);
}

.sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark);
    margin: 0;
}

.sidebar-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close-btn:hover {
    color: var(--color-error);
    transform: scale(1.1);
}

/* Sidebar Body */
.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Cart Empty State */
.cart-empty-message {
    text-align: center;
    padding: 3.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cart-empty-message p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.cart-empty-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background-color: var(--color-forest-dark);
    color: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cart-empty-action-btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
    transform: translateY(-1px);
}

/* Cart Items List */
.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Cart Item Card */
.cart-item {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.cart-item:hover {
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.cart-item-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.2rem;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--color-error);
    transform: scale(1.1);
}

.cart-item-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-spec-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.75rem;
}

.cart-spec-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-spec-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.cart-spec-group input[type="number"],
.cart-spec-group input[type="text"],
.cart-spec-group select {
    width: 100%;
    padding: 0.45rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-family: inherit;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.cart-spec-group input:focus,
.cart-spec-group select:focus {
    outline: none;
    border-color: var(--color-primary-dark);
}

/* Cart Submission Form */
.cart-form-section {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    margin-top: auto;
}

.cart-form-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

.cart-modern-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-modern-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-modern-form label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.cart-modern-form input,
.cart-modern-form textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.cart-modern-form input:focus,
.cart-modern-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark);
}

.cart-modern-form button[type="submit"] {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    padding: 0.75rem;
    background-color: var(--color-forest-dark);
    color: var(--color-bg-white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.cart-modern-form button[type="submit"]:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
}

.cart-modern-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .quote-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* ==========================================================================
   18. Contact Form Configurator Notice Box
   ========================================================================== */
.configurator-notice-box {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(231, 177, 36, 0.08), rgba(231, 177, 36, 0.03));
    border: 1px solid rgba(231, 177, 36, 0.25);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.configurator-notice-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 177, 36, 0.45);
}

.notice-icon {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    display: flex;
    align-items: flex-start;
    padding-top: 0.1rem;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.notice-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-forest-dark);
    margin: 0;
}

.notice-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    width: fit-content;
    margin-top: 0.25rem;
}

.notice-link i {
    transition: var(--transition-fast);
}

.notice-link:hover {
    color: var(--color-forest-dark);
}

.notice-link:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   17. Hero Hiring Stamp Styles
   ========================================================================== */
.hiring-stamp-hero {
    position: absolute;
    top: 130px; /* Positioned under the fixed header (approx 105px tall) */
    right: 5%;  /* Aligns with header container padding */
    z-index: 10;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 4px solid var(--color-primary);
    background-color: var(--color-bg-white);
    transform: rotate(15deg); /* Initially rotated 15 degrees to look authentically stamped */
}

.hiring-stamp-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.hiring-stamp-hero:hover {
    transform: scale(1.15) rotate(30deg); /* Rotates a bit more on hover */
    box-shadow: 0 10px 30px rgba(231, 177, 36, 0.6);
}

@media (max-width: 768px) {
    .hiring-stamp-hero {
        width: 130px;
        height: 130px;
        top: 110px;
        right: 15px;
        border-width: 3px;
    }
}

/* ==========================================================================
   18. B2B Product Configurator Styles (Clean & Industrial)
   ========================================================================== */
.configurator-section {
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, sans-serif !important;
}

.configurator-wizard-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
    padding: 3rem 2.5rem;
}

.configurator-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
}

.configurator-progress-bar::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 30%;
    position: relative;
}

.progress-step .step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.progress-step .step-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: var(--transition-fast);
}

.progress-step.active .step-num {
    background-color: var(--color-bg-white);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    box-shadow: 0 0 0 4px rgba(231, 177, 36, 0.15);
}

.progress-step.active .step-text {
    color: var(--color-text-dark);
    font-weight: 700;
}

.progress-step.completed .step-num {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-white);
}

.progress-step.completed .step-text {
    color: var(--color-primary-dark);
}

.configurator-step {
    display: none;
    animation: fadeInB2b 0.4s ease forwards;
}

.configurator-step.active {
    display: block;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Step 1 Cards */
.configurator-grid-selector {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.configurator-group-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.configurator-group-card:hover {
    border-color: #cbd5e1;
    background-color: #f1f5f9;
}

.configurator-group-card.active {
    border-color: var(--color-primary);
    background-color: #fefcf0;
    box-shadow: 0 4px 15px rgba(231, 177, 36, 0.08);
}

.card-group-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-right: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: var(--transition-fast);
}

.configurator-group-card.active .card-group-img {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(231, 177, 36, 0.15);
}

.card-details {
    flex: 1;
}

.card-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

.card-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.selection-indicator {
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.configurator-group-card.active .selection-indicator {
    color: var(--color-primary);
}

/* Step 2 Inputs */
.configurator-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
}

.form-group-b2b {
    display: flex;
    flex-direction: column;
}

.form-group-b2b.full-width {
    grid-column: span 2;
}

.form-group-b2b label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.form-group-b2b label .unit-tag {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.form-group-b2b input[type="text"],
.form-group-b2b input[type="number"],
.form-group-b2b input[type="tel"],
.form-group-b2b input[type="email"],
.form-group-b2b select,
.form-group-b2b textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background-color: #f8fafc;
    color: #1e293b;
}

.form-group-b2b input:focus,
.form-group-b2b select:focus,
.form-group-b2b textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(231, 177, 36, 0.15);
    background-color: var(--color-bg-white);
}

.field-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.checkbox-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-row label {
    margin-bottom: 0;
    cursor: pointer;
}

/* Step 3 Inputs & Seals */
.configurator-volume-section {
    padding: 1.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
}

.volume-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.volume-input-group {
    flex: 1;
}

.volume-counter-wrapper {
    display: flex;
    align-items: center;
    max-width: 250px;
    margin-top: 0.5rem;
}

.volume-counter-wrapper input {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
}

.b2b-volume-badge {
    font-size: 0.75rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.fsc-seal-badge {
    display: flex;
    align-items: center;
    background-color: rgba(231, 177, 36, 0.08);
    border: 1.5px dashed var(--color-primary);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    max-width: 350px;
}

.fsc-seal-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 1rem;
}

.fsc-seal-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--color-text-dark);
}

.fsc-seal-content p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.form-subtitle-b2b {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

/* Configurator Controls */
.configurator-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.btn-wizard {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    border: none;
    font-family: inherit;
}

.btn-prev {
    background-color: #e2e8f0;
    color: var(--color-text-dark);
}

.btn-prev:hover {
    background-color: #cbd5e1;
}

.btn-next {
    background-color: var(--color-forest-dark);
    color: var(--color-bg-white);
    margin-left: auto;
}

.btn-next:hover {
    background-color: var(--color-forest);
}

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(231, 177, 36, 0.35);
    margin-left: auto;
}

.btn-submit:hover {
    background-color: #dca318;
    box-shadow: 0 6px 20px rgba(231, 177, 36, 0.45);
    transform: translateY(-2px);
}

/* Success Overlay */
.configurator-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-white);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.success-card {
    text-align: center;
    max-width: 600px;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.success-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
}

.success-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.ticket-summary-box {
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    text-align: left;
    margin-bottom: 2.5rem;
}

.ticket-header {
    background-color: #f1f5f9;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cbd5e1;
    font-size: 0.85rem;
    font-weight: 700;
}

.ticket-header strong {
    color: var(--color-primary-dark);
    font-size: 0.95rem;
}

.ticket-body {
    padding: 1.25rem;
    background-color: #f8fafc;
}

.ticket-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-body li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.ticket-body li:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Animations */
@keyframes fadeInB2b {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* News & Updates Section Styles */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 100%;
    flex-shrink: 0;
}

.news-card.highlight .news-image {
    width: 40%;
    height: auto;
    min-height: 100%;
}

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

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

.news-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-forest-dark);
    color: var(--color-bg-light);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.news-tag.highlight-tag {
    background: var(--color-primary);
    color: var(--color-forest-dark);
}

.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card.highlight .news-content {
    width: 60%;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.news-meta i {
    color: var(--color-primary-dark);
    margin-right: 0.25rem;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.news-card.highlight .news-content h3 {
    font-size: 1.6rem;
}

.news-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-content p strong {
    color: var(--color-text-dark);
}

.highlight-text {
    background: rgba(231, 177, 36, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
}

.news-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
}

.badge-yellow {
    background: rgba(231, 177, 36, 0.15);
    color: var(--color-primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--color-primary-dark);
    transition: var(--transition-fast);
}

.news-link i {
    transition: var(--transition-fast);
}

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

.news-link:hover i {
    transform: translateX(4px);
}

/* Responsive News Section */
@media (max-width: 768px) {
    .news-grid {
        gap: 1.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .configurator-wizard-container {
        padding: 2rem 1.25rem;
    }
    
    .configurator-input-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-b2b.full-width {
        grid-column: span 1;
    }
    
    .volume-header-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .fsc-seal-badge {
        max-width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   19. Light Mode B2B Product Configurator Dashboard (STICKING TO SITE SCHEME)
   ========================================================================== */
.configurator-dark-section {
    background-color: var(--color-bg-light);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.configurator-dashboard-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.configurator-dashboard-form {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
}

.dashboard-title {
    color: var(--color-forest-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Summary Table Styles */
.dashboard-table-wrapper {
    margin-bottom: 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: #ffffff;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.dashboard-table th, 
.dashboard-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem;
}

.dashboard-table th {
    background-color: var(--color-bg-light);
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

.dashboard-table td {
    color: var(--color-text-dark);
    border-bottom: 1px solid #f1f5f9;
}

.dashboard-table tr:last-child td {
    border-bottom: none;
}

.dashboard-table td:first-child {
    font-weight: 600;
    color: var(--color-text-dark);
    width: 40%;
}

.dashboard-table td:last-child {
    color: #475569;
}

.material-leaf {
    margin-right: 0.25rem;
}

/* Status Bar */
.dashboard-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
}

.status-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-col:last-child {
    text-align: right;
    align-items: flex-end;
}

.status-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.status-value {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.status-ready {
    color: var(--color-success);
    font-weight: 600;
    position: relative;
    padding-left: 0.75rem;
}

.status-ready::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-success);
    border-radius: 50%;
}

/* Controls Grid */
.dashboard-controls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    margin-bottom: 3rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-group label {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Dropdowns (Light Background) */
.dashboard-select {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-dark);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%232a2a2a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.dashboard-select:focus {
    border-color: #94a3b8;
}

/* Specials Subcategory Grid & Cards */
#controlGroupSubCategorySpecials {
    grid-column: span 2;
}

.specials-subcat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.specials-subcat-card {
    cursor: pointer;
    position: relative;
}

.specials-subcat-card input[type="radio"] {
    display: none;
}

.specials-subcat-card .card-content {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-fast) ease;
    height: 100%;
}

.specials-subcat-card:hover .card-content {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.specials-subcat-card input[type="radio"]:checked + .card-content {
    border-color: var(--color-primary);
    background-color: rgba(231, 177, 36, 0.05);
    box-shadow: 0 0 0 2px rgba(231, 177, 36, 0.2);
}

.specials-subcat-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specials-subcat-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.specials-subcat-card .card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

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

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

/* Profiles Subcategory Grid & Cards */
#controlGroupSubCategoryProfiles {
    grid-column: span 2;
}

.profiles-subcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.profiles-subcat-card {
    cursor: pointer;
    position: relative;
}

.profiles-subcat-card input[type="radio"] {
    display: none;
}

.profiles-subcat-card .card-content {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-fast) ease;
    height: 100%;
}

.profiles-subcat-card:hover .card-content {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.profiles-subcat-card input[type="radio"]:checked + .card-content {
    border-color: var(--color-primary);
    background-color: rgba(231, 177, 36, 0.05);
    box-shadow: 0 0 0 2px rgba(231, 177, 36, 0.2);
}

.profiles-subcat-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profiles-subcat-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.profiles-subcat-card .card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.2;
}

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

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

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

/* Dowels Subcategory Grid & Cards */
#controlGroupSubCategoryDowels {
    grid-column: span 2;
}

.dowels-subcat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.dowels-subcat-card {
    cursor: pointer;
    position: relative;
}

.dowels-subcat-card input[type="radio"] {
    display: none;
}

.dowels-subcat-card .card-content {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-fast) ease;
    height: 100%;
}

.dowels-subcat-card:hover .card-content {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.dowels-subcat-card input[type="radio"]:checked + .card-content {
    border-color: var(--color-primary);
    background-color: rgba(231, 177, 36, 0.05);
    box-shadow: 0 0 0 2px rgba(231, 177, 36, 0.2);
}

.dowels-subcat-card .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dowels-subcat-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.dowels-subcat-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.dowels-subcat-card .card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.2;
}

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

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

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

/* Configured Items List Styling */
.configured-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    max-height: 250px;
    overflow-y: auto;
}

.configured-item-row {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.configured-item-row .item-info {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.configured-item-row .item-specs {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-left: 0.5rem;
}

.configured-item-row .remove-item-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    transition: color var(--transition-fast) ease;
}

.configured-item-row .remove-item-btn:hover {
    color: #b91c1c;
}

/* Custom Sliders */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dashboard-slider {
    flex-grow: 1;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.dashboard-slider::-webkit-slider-thumb {
    appearance: none;
    width: 8px;
    height: 24px;
    background: var(--color-forest-dark);
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.dashboard-slider::-moz-range-thumb {
    width: 8px;
    height: 24px;
    background: var(--color-forest-dark);
    border-radius: 2px;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.slider-value-display {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-dark);
    width: 70px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* Conversion Submit Button (Palrom Yellow CTA) */
.dashboard-submit-btn {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(231, 177, 36, 0.15);
}

.dashboard-submit-btn:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(231, 177, 36, 0.3);
    transform: translateY(-2px);
}

/* Modal Overlay */
.dashboard-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.dashboard-modal-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 550px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.animate-modal {
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.dashboard-modal-card h3 {
    color: var(--color-text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.dashboard-modal-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.dashboard-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-db {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-db label {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.form-group-db input,
.form-group-db textarea {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-dark);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group-db input:focus,
.form-group-db textarea:focus {
    border-color: #94a3b8;
}

.dashboard-modal-submit-btn {
    background-color: var(--color-primary);
    color: var(--color-forest-dark);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.dashboard-modal-submit-btn:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(231, 177, 36, 0.2);
}

/* Success View Customizations for Light Mode */
.dark-success-card {
    background-color: #ffffff !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text-dark) !important;
    box-shadow: var(--shadow-lg) !important;
}

.dark-success-card h2 {
    color: var(--color-text-dark) !important;
}

.dark-success-card .success-lead {
    color: var(--color-text-muted) !important;
}

.dark-ticket-box {
    border: 1px solid var(--color-border) !important;
    background-color: #ffffff !important;
}

.dark-ticket-box .ticket-header {
    border-bottom: 1px solid var(--color-border) !important;
    background-color: var(--color-bg-light) !important;
    color: var(--color-text-dark) !important;
}

.dark-ticket-box .ticket-header strong {
    color: var(--color-primary-dark) !important;
}

.dark-ticket-box .ticket-body {
    background-color: #ffffff !important;
}

.dark-ticket-box .ticket-body li {
    color: var(--color-text-muted) !important;
}

.dark-ticket-box .ticket-body li strong {
    color: var(--color-text-dark) !important;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .configurator-dark-section {
        padding: 4rem 0;
    }

    .configurator-dashboard-form {
        padding: 2rem 1.5rem;
    }
    
    .dashboard-controls-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-title {
        font-size: 1.8rem;
    }
}

/* News Popup Modal Styles */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.news-modal-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(231, 177, 36, 0.15);
}

.news-modal.active .news-modal-container {
    transform: scale(1);
}

.news-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    z-index: 2005;
}

.news-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-forest-dark);
    transform: rotate(90deg);
}

.news-modal-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

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

.news-modal-body {
    padding: 2.5rem;
}

.news-modal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.news-modal-meta .news-tag {
    position: static;
    margin: 0;
}

.news-meta-item {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.news-meta-item i {
    color: var(--color-primary-dark);
    margin-right: 0.25rem;
}

.news-modal-body h2 {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.news-modal-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.news-modal-text p {
    margin-bottom: 1rem;
}

.news-modal-text p:last-child {
    margin-bottom: 0;
}

.news-modal-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .news-modal-image {
        height: 200px;
    }
    .news-modal-body {
        padding: 1.5rem;
    }
    .news-modal-body h2 {
        font-size: 1.4rem;
    }
}

/* Password Gate Styles */
.auth-gate-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1.5rem;
}

.auth-gate-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(231, 177, 36, 0.2);
    animation: fadeInB2b 0.5s ease-out;
}

.auth-lock-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(231, 177, 36, 0.1);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.auth-gate-card h2 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.auth-gate-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding: 0.85rem 3rem 0.85rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius-md);
    background: var(--color-bg-light);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.password-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 4px rgba(231, 177, 36, 0.12);
}

.toggle-password-btn {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.error-message {
    color: #d93025;
    font-size: 0.85rem;
    text-align: left;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.error-message.shake {
    animation: authShake 0.4s ease;
}

@keyframes authShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Team Details Popup Modal */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.team-modal-container {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2501;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(231, 177, 36, 0.2);
    padding: 2.5rem;
    text-align: center;
}

.team-modal.active .team-modal-container {
    transform: scale(1);
}

.team-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    z-index: 2505;
}

.team-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-forest-dark);
    transform: rotate(90deg);
}

.team-modal-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--color-primary-light);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.team-modal-container h2 {
    font-size: 1.8rem;
    color: var(--color-forest);
    margin-bottom: 0.25rem;
}

.team-modal-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.team-modal-languages {
    display: inline-block;
    background-color: rgba(231, 177, 36, 0.15);
    color: var(--color-forest-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-modal-bio {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
    background-color: var(--color-bg-light);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-primary);
}

.team-modal-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.team-contact-btn i {
    font-size: 1.15rem;
}

.team-contact-btn.whatsapp {
    background-color: #25D366;
    color: white !important;
}

.team-contact-btn.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.team-contact-btn.phone {
    background-color: var(--color-primary);
    color: var(--color-forest-dark) !important;
}

.team-contact-btn.phone:hover {
    background-color: var(--color-primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 177, 36, 0.3);
}

.team-contact-btn.email {
    background-color: var(--color-forest-dark);
    color: white !important;
}

.team-contact-btn.email:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 42, 42, 0.3);
}

@media (max-width: 480px) {
    .team-modal-container {
        padding: 1.5rem;
    }
    .team-modal-avatar {
        width: 100px;
        height: 100px;
    }
    .team-modal-container h2 {
        font-size: 1.5rem;
    }
}
