/* ==========================================================================
   RAZA APPARELS - CORPORATE DESIGN SYSTEM
   Dark Forest Green & Metallic Gold Theme
   ========================================================================== */

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Dark Forest Green & Charcoal Palette */
    --bg-dark: #081611;             /* Deepest Charcoal Green Background */
    --primary-color: #0F231C;       /* Rich Dark Forest Green */
    --primary-light: #18352B;       /* Medium Forest Green */
    --card-bg: #132A22;             /* Premium Dark Card Surface */
    --card-bg-hover: #1A382E;       /* Card Hover Surface */
    
    /* Metallic Gold Accents & Highlights */
    --gold: #D4AF37;
    --gold-light: #F4E4A0;
    --gold-dark: #AA820A;
    --gold-gradient: linear-gradient(135deg, #F3E4A0 0%, #D4AF37 50%, #997819 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    /* Text & Typography Colors */
    --text-main: #FFFFFF;
    --text-muted: #A3B8B0;
    --text-gold: #D4AF37;
    
    /* Borders & Dividers */
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
    --gold-box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Top Announcement Bar */
.top-bar {
    background-color: #050F0B;
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.top-bar i {
    color: var(--gold);
    margin-right: 6px;
}

/* Header & Navbar */
.header {
    background-color: rgba(15, 35, 28, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    padding: 12px 0;
}

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

.brand-logo, .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links > li > a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

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

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

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.drop-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.dropdown:hover .drop-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 100;
    animation: fadeIn 0.3s ease forwards;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.dropdown-content a i {
    color: var(--gold);
    font-size: 12px;
    width: 16px;
}

.dropdown-content a:hover {
    background-color: var(--card-bg-hover);
    color: var(--gold);
}

/* Get In Touch Button */
.btn-get-in-touch {
    background: var(--gold-gradient);
    color: #050F0B;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: var(--gold-box-shadow);
    display: inline-block;
}

.btn-get-in-touch:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #050F0B;
    box-shadow: var(--gold-box-shadow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

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

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #050F0B 0%, #0F231C 60%, #163329 100%);
    border-bottom: 1px solid var(--border-gold);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.hero-subtitle-gradient {
    display: block;
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    margin-top: 10px;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Facility Preview Card */
.facility-preview-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.facility-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}

.card-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: #050F0B;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

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

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

.preview-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 5px 0 5px;
    font-size: 13px;
    color: var(--text-muted);
}

.preview-caption i {
    color: var(--gold);
    font-size: 16px;
}

.preview-caption strong {
    color: var(--gold-light);
}

/* Compliance Ribbon */
.compliance-ribbon {
    background: var(--primary-light);
    border-bottom: 1px solid var(--border-gold);
    padding: 18px 0;
}

.ribbon-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.ribbon-item i {
    font-size: 18px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   NEW SECTION 1: MANUFACTURING PROCESS & INFRASTRUCTURE
   ========================================================================== */
.process-section {
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 35px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg), 0 0 25px var(--gold-glow);
}

.process-step-num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #050F0B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--gold-box-shadow);
}

.process-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold);
    margin: 0;
}

.process-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.process-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

.proc-img-box {
    position: relative;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    cursor: pointer;
}

.proc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.proc-img-box:hover img {
    transform: scale(1.08);
}

.img-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(5, 15, 11, 0.85);
    backdrop-filter: blur(4px);
    color: var(--gold-light);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.proc-img-box:hover .img-badge {
    background: var(--gold-gradient);
    color: #050F0B;
}

/* ==========================================================================
   NEW SECTION 2: FACILITIES & INFRASTRUCTURE GALLERY
   ========================================================================== */
.facilities-section {
    background-color: var(--bg-dark);
}

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

.facility-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg), 0 0 20px var(--gold-glow);
}

.fac-img-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

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

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

.fac-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 11, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0;
    transition: var(--transition);
}

.facility-card:hover .fac-overlay {
    opacity: 1;
}

.fac-info {
    padding: 22px;
}

.fac-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
}

.fac-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.fac-info p i {
    color: var(--gold);
    margin-right: 5px;
}

/* ==========================================================================
   PRODUCTS & CATALOGUE SECTION
   ========================================================================== */
.shop {
    background-color: var(--primary-color);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #050F0B;
    border-color: var(--gold);
    box-shadow: var(--gold-box-shadow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 20px var(--gold-glow);
    border-color: var(--gold);
}

.product-img-wrapper {
    height: 260px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark);
    cursor: pointer;
}

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

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

.product-info {
    padding: 22px;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light);
}

/* Compliance Section */
.compliance-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.compliance-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.compliance-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md), 0 0 15px var(--gold-glow);
}

.comp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.compliance-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
}

.compliance-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-item-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #050F0B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-card input,
.contact-form-card textarea,
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.contact-form-card textarea {
    margin-bottom: 25px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #040A07;
    border-top: 1px solid var(--border-gold);
    padding: 35px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 7, 0.92);
    backdrop-filter: blur(10px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px var(--gold-glow);
    object-fit: contain;
}

.lightbox-content p {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 18px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 3100;
}

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

/* Admin Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(4, 10, 7, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.admin-panel-content {
    background: var(--primary-color);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease forwards;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Layout */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle-gradient {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .process-image-grid,
    .process-image-grid.triple {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
