/* TraPay Custom CSS - DO NOT MODIFY trapay-tailwind.css */

/* TraPay CSS Variables */
:root {
    --trapay-primary: #0d3e7e;
    --trapay-secondary: #1e40af;
    --trapay-accent: #3b82f6;
    --trapay-success: #388e1d;
    --trapay-warning: #FAA900;
    --trapay-danger: #8e281d;
    --trapay-dark: #1e293b;
    --trapay-light: #f8fafc;
}

.flip-rtl-x {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}
.rotate-rtl-180 {
    /* آیکون را ۱۸۰ درجه در جهت عقربه‌های ساعت می‌چرخاند */
    transform: rotate(180deg);
    /* برای سازگاری بهتر با مرورگرهای قدیمی */
    -webkit-transform: rotate(180deg);
}

/* Missing Tailwind Classes for Footer */
.bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity));
}

.bg-trapay-secondary\/20 {
    background-color: rgba(30, 64, 175, 0.2);
}

.bg-trapay-dark\/50 {
    background-color: rgba(30, 41, 59, 0.5);
}

.text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity));
}

.text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity));
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250 / var(--tw-text-opacity));
}

.bg-blue-900\/20 {
    background-color: rgba(30, 58, 138, 0.2);
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.bg-blue-700\/20 {
    background-color: rgba(29, 78, 216, 0.2);
}

.bg-blue-600\/20 {
    background-color: rgba(37, 99, 235, 0.2);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.placeholder-white\/70::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Additional utility classes if needed */
.border-t {
    border-top-width: 1px;
}

.border-slate-700 {
    --tw-border-opacity: 1;
    border-color: rgb(51 65 85 / var(--tw-border-opacity));
}

.border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59 / var(--tw-border-opacity));
}

.bg-slate-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}

.hover\:bg-blue-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.hover\:bg-blue-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}

.hover\:bg-pink-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity));
}

.hover\:bg-blue-500:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.rounded-r-lg {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.rounded-l-lg {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.placeholder-slate-500::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(100 116 139 / var(--tw-placeholder-opacity));
}

.focus\:border-blue-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity));
}

.text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity));
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.h-12 {
    height: 3rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.sm\:px-6 {
    @media (min-width: 640px) {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.lg\:px-8 {
    @media (min-width: 1024px) {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.lg\:col-span-1 {
    @media (min-width: 1024px) {
        grid-column: span 1 / span 1;
    }
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    @media (min-width: 640px) {
        flex-direction: row;
    }
}

.gap-3 {
    gap: 0.75rem;
}

.gap-12 {
    gap: 3rem;
}

/* TraPay Navigation Classes */
.trapay-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.trapay-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .trapay-container {
        padding: 0 2rem;
    }
}

/* TraPay Text Colors */
.text-trapay-dark {
    color: var(--trapay-dark);
}

.text-trapay-primary {
    color: var(--trapay-primary);
}

.text-trapay-accent {
    color: var(--trapay-accent);
}

.text-trapay-secondary {
    color: var(--trapay-secondary);
}

/* TraPay Background Colors */
.bg-trapay-primary {
    background-color: var(--trapay-primary);
}

.bg-trapay-secondary {
    background-color: var(--trapay-secondary);
}

.bg-trapay-accent {
    background-color: var(--trapay-accent);
}

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

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

/* TraPay Hover Colors */
.hover\:text-trapay-primary:hover {
    color: var(--trapay-primary);
}

.hover\:text-trapay-accent:hover {
    color: var(--trapay-accent);
}

.hover\:text-trapay-secondary:hover {
    color: var(--trapay-secondary);
}

.hover\:bg-trapay-primary:hover {
    background-color: var(--trapay-primary);
}

.hover\:bg-trapay-secondary:hover {
    background-color: var(--trapay-secondary);
}

.hover\:bg-trapay-light:hover {
    background-color: var(--trapay-light);
}

/* TraPay Border Colors */
.border-trapay-primary {
    border-color: var(--trapay-primary);
}

.border-trapay-secondary {
    border-color: var(--trapay-secondary);
}

/* TraPay Navbar Styles - removed duplicate */

.trapay-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .trapay-container {
        padding: 0 2rem;
    }
}

/* Navigation Link Colors */
.text-trapay-dark {
    color: var(--trapay-dark);
}

.text-trapay-primary {
    color: var(--trapay-primary);
}

.text-trapay-accent {
    color: var(--trapay-accent);
}

.bg-trapay-primary {
    background-color: var(--trapay-primary);
}

.bg-trapay-secondary {
    background-color: var(--trapay-secondary);
}

.bg-trapay-accent {
    background-color: var(--trapay-accent);
}

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

.border-trapay-primary {
    border-color: var(--trapay-primary);
}

.hover\:text-trapay-primary:hover {
    color: var(--trapay-primary);
}

.hover\:text-trapay-accent:hover {
    color: var(--trapay-accent);
}

.hover\:bg-trapay-primary:hover {
    background-color: var(--trapay-primary);
}

.hover\:bg-trapay-secondary:hover {
    background-color: var(--trapay-secondary);
}

.hover\:bg-trapay-light:hover {
    background-color: var(--trapay-light);
}

/* Body margin removed - navbar is now relative position */

/* TraPay Gradient Backgrounds */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-trapay-primary {
    --tw-gradient-from: var(--trapay-primary);
    --tw-gradient-to: rgba(13, 62, 126, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-trapay-secondary {
    --tw-gradient-to: var(--trapay-secondary);
}

/* Missing viewport height utilities */
.min-h-\[75vh\] {
    min-height: 75vh;
}

.min-h-\[70vh\] {
    min-height: 70vh;
}

.min-h-\[60vh\] {
    min-height: 60vh;
}

/* Missing text opacity utilities */
.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

/* Missing background opacity utilities */
.bg-white\/15 {
    background-color: rgba(255, 255, 255, 0.15);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/30 {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Missing border opacity utilities */
.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Missing Grid Utilities */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Responsive Grid Classes */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Gap Utilities for better spacing */
.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Missing Padding Utilities */
.p-12 {
    padding: 3rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

/* Additional missing padding classes */
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.p-5 {
    padding: 1.25rem;
}

/* Missing Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Responsive Flex Utilities */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Text Opacity Utilities */
.text-opacity-90 {
    --tw-text-opacity: 0.9;
}

.text-opacity-80 {
    --tw-text-opacity: 0.8;
}

/* Background Opacity Utilities */
.bg-opacity-20 {
    --tw-bg-opacity: 0.2;
}

/* Text color utilities */
.text-white {
    color: white;
}

.text-slate-700 {
    color: rgb(51 65 85);
}

.text-slate-600 {
    color: rgb(71 85 105);
}

.text-red-500 {
    color: rgb(239 68 68);
}

.hover\:text-red-500:hover {
    color: rgb(239 68 68);
}

.hover\:text-red-600:hover {
    color: rgb(220 38 38);
}

/* Background utilities */
.bg-white {
    background-color: white;
}

.bg-transparent {
    background-color: transparent;
}

.hover\:bg-white:hover {
    background-color: white;
}

/* Make sure container classes work */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* GLOBAL LINE-HEIGHT FIX FOR PERSIAN TEXT */
/* Persian text with long compound words needs better line spacing */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4 !important;
}

.text-4xl, .text-5xl, .text-6xl {
    line-height: 1.3 !important;
}

/* Specific fixes for large headings */
.leading-tight {
    line-height: 1.35 !important;
}

.leading-none {
    line-height: 1.25 !important;
}

/* Persian-specific line height adjustments */
[lang="fa"], [dir="rtl"], 
.persian-text,
.text-persian {
    line-height: 1.6 !important;
}

[lang="fa"] h1, [lang="fa"] h2, [lang="fa"] h3,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
.persian-text h1, .persian-text h2, .persian-text h3 {
    line-height: 1.4 !important;
    word-spacing: 0.05em;
}

/* Fix for compound Persian words in large text */
.text-4xl[dir="rtl"], .text-5xl[dir="rtl"], .text-6xl[dir="rtl"],
.text-4xl.persian-text, .text-5xl.persian-text, .text-6xl.persian-text {
    line-height: 1.3 !important;
    word-break: keep-all;
    hyphens: auto;
}

/* Better spacing for Persian content sections */
.trapay-container h2,
.trapay-container h3 {
    line-height: 1.35 !important;
}

/* Mobile responsive line height */
@media (max-width: 768px) {
    h1, h2, h3 {
        line-height: 1.4 !important;
    }
    
    .text-4xl, .text-5xl {
        line-height: 1.35 !important;
    }
}

/* Lazy Load Image Transitions - Optimized for Service Icons */
img.lazy {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

img.lazy.loaded {
    opacity: 1;
}

/* REMOVED: Blur effect disabled for crisp icons and service logos */
/* Service icons and logos should load crisp without blur effect */

/* ========================================
   Mega Menu Styles
   ======================================== */

/* Mega Menu Wrapper Hover Effect with Delay */
.mega-menu-wrapper:hover .mega-menu-dropdown,
.mega-menu-wrapper.is-open .mega-menu-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transition-delay: 0s, 0s, 0s !important;
}

/* Mega Menu Dropdown Base Styles */
.mega-menu-dropdown {
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transition-delay: 0s, 150ms;
}

.mega-menu-wrapper:hover .mega-menu-dropdown,
.mega-menu-wrapper.is-open .mega-menu-dropdown {
    pointer-events: auto;
}

/* Add padding area for easier mouse movement */
.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

/* ========================================
   Mobile Menu Styles
   ======================================== */

/* Mobile Menu Base */
[data-mobile-menu] {
    display: none;
}

[data-mobile-menu].open {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove Conflicting Mobile Menu Styles */
[data-mobile-menu] {
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

[data-mobile-menu] .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Ensure Mobile Menu is Hidden on Large Screens */
@media (min-width: 1024px) {
    [data-mobile-menu] {
        display: none !important;
    }
}

/* ========================================
   Enhanced Navbar Scroll Effect
   ======================================== */

.trapay-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.trapay-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trapay-navbar.scrolled .trapay-container > div {
    padding: 16px 0;
}

/* Smooth Navbar Animation with Backdrop Filter Support */
@supports (backdrop-filter: blur(20px)) {
    .trapay-navbar.scrolled {
        backdrop-filter: blur(20px);
    }
}

/* ========================================
   Form & Notification Styles (from contact-us.scss)
   ======================================== */

/* Alert & Notification Styling */
.alert-danger {
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    margin-bottom: 1rem;
}

.alert-success {
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #16a34a;
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-form {
    box-shadow: 0 0 16px rgba(159, 171, 180, 0.16);
    background: #fff;
    padding: 20px;
    display: inline-block;
    border-radius: 12px;
}

/* Form Input & Textarea Styles */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    /* margin: 10px auto; */
    border-radius: 8px;
    outline: none;
    border: 2px solid #e1e1e1;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease-in;
    background: #f8fafc;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    font-size: 14px !important;
    color: #c4c4c4;
}

.form-control:focus,
input:focus,
textarea:focus {
    border: 2px solid var(--trapay-accent, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
    transition: all 0.3s ease-in;
}

textarea {
    resize: none;
    overflow: hidden;
    min-height: 200px;
}

/* Submit Button Styles */
.shutter-out,
.btn-submit {
    width: 100%;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 17px;
    border-radius: 8px;
    display: inline-block;
    background-image: linear-gradient(to top, var(--trapay-primary, #0d3e7e), var(--trapay-secondary, #1e40af));
    color: white;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 62, 126, 0.2);
}

.shutter-out:hover,
.btn-submit:hover {
    box-shadow: 0 8px 20px rgba(13, 62, 126, 0.3);
    color: white;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.shutter-out:focus,
.btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Float Shadow Effect */
.float-shadow {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #949494;
    font-size: 14px;
    margin: 0 2px;
    backface-visibility: hidden;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
}

.float-shadow::before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    transition-duration: 0.3s;
    transition-property: transform, opacity;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
}

.float-shadow:hover,
.float-shadow:focus,
.float-shadow:active {
    transform: translateY(-5px);
}

.float-shadow:hover::before,
.float-shadow:focus::before,
.float-shadow:active::before {
    opacity: 1;
    transform: translateY(5px);
}



/* Modern Notification Styles */
#notification-area {
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
    padding: 20px 20px 0 20px;
}

.notification-container {
    width: 100%;
}

.alert-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    animation: slideInDown 0.4s var(--ease-out-cubic);
    position: relative;
    border-right: 4px solid;
}

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

.alert-modern .alert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

.alert-modern .alert-content {
    flex: 1;
}

.alert-modern .alert-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: 'Vazirmatn', sans-serif;
}

.alert-modern .alert-message {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
}

.alert-modern .alert-messages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-modern .alert-messages li {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-family: 'Vazirmatn', sans-serif;
}

.alert-modern .alert-messages li:before {
    content: "•";
    margin-left: 0.5rem;
    font-weight: bold;
}

.alert-modern .alert-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}

.alert-modern .alert-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Success Alert */
.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-right-color: #10b981;
    color: #065f46;
}

.alert-success .alert-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.alert-success .alert-close {
    color: #065f46;
}

/* Error Alert */
.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-right-color: #ef4444;
    color: #991b1b;
}

.alert-error .alert-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.alert-error .alert-close {
    color: #991b1b;
}

/* Warning Alert */
.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-right-color: #f59e0b;
    color: #92400e;
}

.alert-warning .alert-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.alert-warning .alert-close {
    color: #92400e;
}

/* Info Alert */
.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-right-color: #3b82f6;
    color: #1e40af;
}

.alert-info .alert-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.alert-info .alert-close {
    color: #1e40af;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .alert-modern {
        padding: 1rem;
        gap: 0.75rem;
    }

    .alert-modern .alert-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .alert-modern .alert-title {
        font-size: 1rem;
    }

    .alert-modern .alert-message,
    .alert-modern .alert-messages li {
        font-size: 0.875rem;
    }
}

/* Removed .hidden rule - Tailwind CSS already provides this utility class */
/* Using custom .hidden class causes conflicts with JavaScript toggling */


.hero-bg{
    background: url("/assets-modern/images/hero-bg.webp");
    background-size: cover;
    width: 120%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.15;
}

/* Hero background for large screens */
@media (min-width: 1800px) {
    .hero-bg {
        width: 100%;
    }
}