/* ========================================
   GROW HIVE - DARK GREEN LUXURY THEME
   WITH BOOTSTRAP ENHANCEMENTS
   ======================================== */

/* ----- CSS Variables (Dark Green Palette) ----- */
:root {
    /* Deep Green Shades */
    --green-deep-1: #0A1F0A;  /* Almost black green */
    --green-deep-2: #0F2A0F;  /* Dark forest */
    --green-deep-3: #1A3A1A;  /* Deep pine */
    --green-deep-4: #2A4F2A;  /* Rich emerald */
    --green-deep-5: #3A6B3A;  /* Medium forest */
    --green-deep-6: #4A834A;  /* Lighter green for contrast */
    
    /* Luxury Accents */
    --gold-primary: #D4AF37;  /* Classic gold */
    --gold-light: #F4E3B1;    /* Champagne gold */
    --gold-dark: #996515;      /* Antique gold */
    --copper: #B87333;         /* Copper accent */
    --bronze: #CD7F32;         /* Bronze */
    
    /* Gradients - Dark Green Combinations */
    --gradient-deep-forest: linear-gradient(135deg, #0A1F0A 0%, #1A3A1A 50%, #2A4F2A 100%);
    --gradient-emerald-night: linear-gradient(135deg, #0F2A0F 0%, #2A4F2A 70%, #3A6B3A 100%);
    --gradient-royal-green: linear-gradient(135deg, #1A3A1A 0%, #2A4F2A 80%);
    --gradient-gold-accents: linear-gradient(135deg, #D4AF37 0%, #996515 100%);
    
    /* Surface Colors */
    --bg-dark: #0A1F0A;
    --bg-card: rgba(26, 58, 26, 0.95);
    --bg-overlay: rgba(10, 31, 10, 0.85);
    
    /* Text Colors */
    --text-light: #F0F7E6;
    --text-gold: #D4AF37;
    --text-cream: #FAF3DD;
    
    /* Shadows */
    --shadow-luxury: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
    --shadow-deep: 0 30px 60px -15px rgba(0,0,0,0.6);
    
    /* Border Radius */
    --radius-subtle: 12px;
    --radius-elegant: 24px;
    --radius-luxury: 36px;
    --radius-circle: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-cream);
    line-height: 1.7;
    background: var(--bg-dark);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(26, 58, 26, 0.3) 0px, rgba(26, 58, 26, 0.3) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 2;
}

/* ----- Typography - Consistent Font Sizes ----- */
h1, .h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FAF3DD 0%, #D4AF37 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(212, 175, 55, 0.3);
}

h2, .h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-cream);
    position: relative;
    display: inline-block;
    padding-left: 20px;
    border-left: 6px solid #D4AF37;
}

h2 i {
    color: #D4AF37;
    margin-right: 15px;
    font-size: 2.2rem;
}

h3, .h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FAF3DD;
    margin-bottom: 1.5rem;
}

h4, .h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FAF3DD;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0B0;
}

.fs-large {
    font-size: 1.3rem;
}

.fs-medium {
    font-size: 1.1rem;
}

.fs-small {
    font-size: 0.95rem;
}

/* ----- Navigation ----- */
.navbar {
    background: rgba(10, 31, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #FAF3DD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.navbar-brand span {
    font-size: 0.8rem;
    color: #D4AF37;
    display: block;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-link {
    color: var(--text-cream) !important;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px !important;
    position: relative;
    transition: all 0.4s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #FAF3DD);
    transition: width 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: #D4AF37 !important;
}

.navbar-toggler {
    border: 2px solid #D4AF37 !important;
    padding: 8px 12px !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----- Buttons - Inline Styles for Hero ----- */
.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 32px !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    transition: all 0.4s ease !important;
    border: 2px solid transparent !important;
    cursor: pointer;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    min-width: 200px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #D4AF37;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-agri {
    background: var(--gradient-deep-forest) !important;
    color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2) !important;
}

.btn-agri:hover {
    color: #0A1F0A !important;
    border-color: #D4AF37 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4) !important;
}

.btn-recruit {
    background: transparent !important;
    color: #FAF3DD !important;
    border-color: #FAF3DD !important;
}

.btn-recruit:hover {
    color: #0A1F0A !important;
    border-color: #D4AF37 !important;
}

.btn-outline {
    border: 2px solid #D4AF37 !important;
    color: #D4AF37 !important;
    background: transparent !important;
}

.btn-outline:hover {
    background: #D4AF37 !important;
    color: #0A1F0A !important;
}

/* Hero section button container - inline styling */
.hero .d-flex {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 30px;
}

/* Responsive button styles */
@media (max-width: 768px) {
    .btn {
        min-width: 180px;
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
    
    .hero .d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn {
        min-width: 100%;
    }
    
    .hero .d-flex {
        flex-direction: column !important;
        width: 100%;
    }
}

/* ----- Hero Section ----- */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F0A 0%, #1A3A1A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L30 10 L40 20 L50 10 L60 20 L70 10 L80 20 L80 40 L70 50 L60 40 L50 50 L40 40 L30 50 L20 40 Z" fill="%23D4AF37"/></svg>') repeat,
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E0E0B0;
    margin: 30px 0 40px;
    max-width: 600px;
    line-height: 1.8;
    position: relative;
    padding: 30px;
    background: rgba(10, 31, 10, 0.7);
    border-left: 4px solid #D4AF37;
    backdrop-filter: blur(5px);
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-elegant);
    animation: borderPulse 3s infinite;
}

@keyframes borderPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.02); opacity: 0.6; }
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-elegant);
    box-shadow: var(--shadow-luxury);
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.5s ease;
    border: 3px solid rgba(212, 175, 55, 0.2);
}

.hero-image:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

/* ----- Section Padding ----- */
.section-padding {
    padding: 80px 0;
}

/* ----- Cards ----- */
.card {
    background: var(--bg-card) !important;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    box-shadow: var(--shadow-deep);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    border-radius: 0 !important;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.card-agri {
    border-bottom: 4px solid #D4AF37 !important;
}

.card-recruit {
    border-bottom: 4px solid #FAF3DD !important;
}

.card-icon {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

.card-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #FAF3DD;
    font-weight: 700;
}

.card-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.card-list li {
    margin: 12px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #E0E0B0;
    font-size: 1.1rem;
}

.card-list i {
    color: #D4AF37;
    font-size: 1.1rem;
    width: 20px;
}

/* ----- Features Grid ----- */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(26, 58, 26, 0.8) 0%, rgba(42, 79, 42, 0.8) 100%);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: var(--shadow-gold);
}

.feature-item i {
    font-size: 2.8rem;
    color: #D4AF37;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.feature-item:hover i {
    transform: rotateY(180deg);
}

.feature-item h4 {
    color: #FAF3DD;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ----- Process Steps ----- */
.step {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0A1F0A 0%, #1A3A1A 100%);
    border: 3px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    background: #D4AF37;
    color: #0A1F0A;
}

.step h4 {
    color: #FAF3DD;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    color: #E0E0B0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ----- About Box ----- */
.about-box {
    background: rgba(26, 58, 26, 0.8);
    border-left: 6px solid #D4AF37;
}

.about-box p {
    color: #E0E0B0;
    line-height: 1.9;
}

.about-box .fs-2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem !important;
    color: #FAF3DD;
}

/* ----- Capabilities / Specialization Items ----- */
.capability-item,
.specialization-item {
    background: rgba(26, 58, 26, 0.8);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.capability-item:hover,
.specialization-item:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: var(--shadow-gold);
}

.capability-item i,
.specialization-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.capability-item h4,
.specialization-item h4 {
    color: #FAF3DD;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* ----- Industry Tags & Cards ----- */
.industry-tag,
.industry-card {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 10px 25px;
    border: 2px solid #D4AF37;
    font-weight: 600;
    display: inline-block;
    margin: 5px;
    font-size: 1.1rem;
}

.industry-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    color: #FAF3DD;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card:hover {
    background: #D4AF37;
    color: #0A1F0A;
    transform: translateY(-5px);
}

/* ----- Contact Section ----- */
.contact-section {
    background: linear-gradient(135deg, #0A1F0A 0%, #1A3A1A 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.contact-info {
    background: rgba(10, 31, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #FAF3DD;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #D4AF37;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 1.1rem;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.contact-detail:hover {
    border-color: #D4AF37;
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.15);
}

.contact-detail i {
    color: #D4AF37;
    font-size: 1.3rem;
    width: 25px;
}

.contact-form {
    background: rgba(26, 58, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.contact-form h3 {
    font-size: 2rem;
    color: #FAF3DD;
    font-family: 'Playfair Display', serif;
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.2) !important;
    background: rgba(10, 31, 10, 0.8) !important;
    color: #FAF3DD !important;
    transition: all 0.4s ease;
    font-size: 1rem;
    border-radius: 0 !important;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: #D4AF37 !important;
    background: rgba(10, 31, 10, 0.95) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2) !important;
}

.form-control::placeholder {
    color: rgba(250, 243, 221, 0.5);
}

.form-select option {
    background: #0A1F0A;
    color: #FAF3DD;
}

.btn-submit {
    background: transparent;
    color: #D4AF37;
    padding: 15px 30px;
    border: 3px solid #D4AF37;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn-submit:hover {
    background: #D4AF37;
    color: #0A1F0A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ----- Footer ----- */
.footer {
    background: #051005;
    color: #E0E0B0;
    text-align: center;
    padding: 50px 0;
    position: relative;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer p {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links i {
    font-size: 1.5rem;
    color: #D4AF37;
    transition: all 0.4s ease;
    cursor: pointer;
}

.social-links i:hover {
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 0 10px #D4AF37);
}

/* ----- Stats Section ----- */
.stats-section {
    background: rgba(10, 31, 10, 0.9);
}

.stats-item {
    text-align: center;
    padding: 30px;
}

.stats-number {
    font-size: 3.5rem;
    color: #D4AF37;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.stats-label {
    color: #FAF3DD;
    font-size: 1.2rem;
}

/* ----- Toast ----- */
.toast {
    background: #1A3A1A !important;
}

.toast-header {
    background: #D4AF37 !important;
    color: #0A1F0A !important;
}

.toast-body {
    background: #1A3A1A !important;
    color: #FAF3DD !important;
}

/* ----- Loading Animation ----- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A1F0A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1.5s ease 2s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

.luxury-loader {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-top: 4px solid #D4AF37;
    border-right: 4px solid #D4AF37;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ----- Responsive Typography ----- */
@media (max-width: 992px) {
    h1, .h1 {
        font-size: 3rem;
    }
    
    h2, .h2 {
        font-size: 2.4rem;
    }
    
    h3, .h3 {
        font-size: 1.8rem;
    }
    
    .about-box .fs-2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
    
    h2, .h2 {
        font-size: 2rem;
        border-left-width: 4px;
        padding-left: 15px;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .stats-number {
        font-size: 2.8rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    h1, .h1 {
        font-size: 2.2rem;
    }
    
    h2, .h2 {
        font-size: 1.8rem;
    }
    
    h3, .h3 {
        font-size: 1.3rem;
    }
    
    .about-box .fs-2 {
        font-size: 1.5rem !important;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .card-list li {
        font-size: 1rem;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .stats-label {
        font-size: 1rem;
    }
    
    .contact-detail {
        font-size: 0.95rem;
    }
}

/* Custom Alert Styles */
.custom-alert {
    position: relative;
    padding: 1rem 2.5rem 1rem 1.5rem;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    font-weight: 500;
    animation: slideDown 0.5s ease forwards;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-alert-success {
    background: linear-gradient(135deg, #1a3a1a 0%, #0f2a0f 100%);
    color: #fff;
    border-bottom: 3px solid #D4AF37;
}

.custom-alert-error {
    background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
    color: #fff;
    border-bottom: 3px solid #D4AF37;
}

.custom-alert-info {
    background: linear-gradient(135deg, #1a3a5a 0%, #0f2a3a 100%);
    color: #fff;
    border-bottom: 3px solid #D4AF37;
}

.custom-alert .alert-icon {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-right: 12px;
}

.custom-alert .alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.custom-alert .alert-message {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.custom-alert .alert-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.custom-alert .alert-close:hover {
    color: #D4AF37;
    transform: scale(1.1);
}

.custom-alert .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #D4AF37;
    width: 100%;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* Floating Alert for Notifications */
.floating-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    background: #0A1F0A;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-alert .floating-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-alert .floating-icon {
    width: 40px;
    height: 40px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1F0A;
    font-size: 1.2rem;
}

.floating-alert .floating-message {
    flex: 1;
    color: #fff;
    font-weight: 500;
}

.floating-alert .floating-close {
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.floating-alert .floating-close:hover {
    opacity: 1;
}