/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-green: #10B981;
    --primary-red: #EF4444;
    --dark-green: #059669;
    --light-green: #D1FAE5;
    --gold: #F59E0B;
    --dark-gold: #D97706;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.bank-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.language-switcher {
    display: flex;
    background: var(--gray-100);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid var(--gray-200);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.lang-btn.active {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.lang-btn:hover:not(.active) {
    background: var(--gray-200);
    color: var(--gray-800);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 20px;
    color: var(--gray-500);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background: var(--gray-100);
    color: var(--primary-green);
}

.search-input {
    position: absolute;
    left: 45px;
    width: 0;
    padding: 12px 16px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    background: var(--white);
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s ease;
    outline: none;
}

.search-input.active {
    width: 280px;
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.header-item:hover {
    background: var(--gray-100);
    color: var(--primary-green);
}

.header-item i {
    font-size: 16px;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

/* Enhanced Language Switcher with Globe Dropdown */
.language-switcher-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 85px;
}

.lang-dropdown-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.lang-dropdown-btn i.fa-globe {
    font-size: 16px;
    color: var(--primary-green);
}

.current-lang {
    font-weight: 600;
    min-width: 20px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
    transition: all 0.3s ease;
    text-align: left;
}

.lang-option:hover {
    background: var(--gray-50);
    color: var(--primary-green);
}

.lang-option.active {
    background: var(--light-green);
    color: var(--primary-green);
    font-weight: 600;
}

.lang-flag {
    font-size: 16px;
}

/* Desktop/Mobile specific elements */
.desktop-only {
    display: flex;
}

.mobile-header-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-login-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    min-width: 80px;
}

.mobile-login-btn span {
    display: inline !important;
    font-size: 13px;
    font-weight: 600;
}

.mobile-login-btn i {
    font-size: 14px;
}

.mobile-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--gray-200);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mobile-sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.mobile-sidebar-close:hover {
    background: var(--gray-200);
    color: var(--primary-red);
}

.mobile-sidebar-content {
    padding: 1.5rem;
}

.mobile-sidebar-section {
    margin-bottom: 2rem;
}

.mobile-sidebar-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.mobile-sidebar-item:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    transform: translateX(4px);
}

.mobile-sidebar-item i {
    font-size: 16px;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-sidebar-item span {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

/* Mobile Navigation Menu in Sidebar */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item:hover {
    background: var(--light-green);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    transform: translateX(4px);
}

.mobile-nav-item i {
    font-size: 16px;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

.mobile-nav-item span {
    flex: 1;
    font-size: 14px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Toggle Enhanced */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: var(--gray-100);
    border-color: var(--primary-green);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span {
    background: var(--primary-green);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sub Header - Desktop Only */
.sub-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.nav-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    white-space: nowrap;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
    background: var(--light-green);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--gray-900);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.slide-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('images/banking.jpg');
}

.slide-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                      url('images/invest-in-gold.jpg');
}

.slide-bg-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('images/islam-banking.jpg');
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

/* Glass Card Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.glass-card-premium {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
}

/* Quick Services */
.quick-services {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Investment Section */
.investment-section {
    background: var(--white);
}

.investment-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.investment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.investment-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.investment-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.investment-stats {
    padding: 1rem;
    background: var(--light-green);
    border-radius: 15px;
    border: 1px solid var(--primary-green);
}

.stat {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 1.1rem;
}

/* Digital Banking Section */
.digital-banking {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/online-pay.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.digital-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.digital-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: var(--gray-900);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 2rem 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.app-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.app-header h4 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.3;
}

.app-header span {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    line-height: 1.2;
}

.app-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-actions button {
    padding: 15px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
}

/* Tabbed Services */
.tabbed-services {
    background: var(--gray-50);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Credit Cards Section */
.credit-cards {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/atm-cards.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.credit-cards .section-title {
    color: var(--white);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credit-card {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(5, 150, 105, 0.1) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 500px;
}

.credit-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%);
}

.gold-card {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1) 0%, 
        rgba(217, 119, 6, 0.1) 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 8px;
    position: relative;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.3) 2px,
        rgba(255, 255, 255, 0.3) 4px
    );
    border-radius: 4px;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-benefits {
    margin-bottom: 2rem;
}

.card-benefits ul {
    list-style: none;
    padding: 0;
}

.card-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.apply-card-btn {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    color: var(--gray-800);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-left p {
    color: var(--gray-400);
    line-height: 1.6;
    font-size: 14px;
}

.footer-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-section li:has(i) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 14px;
}

.footer-section i {
    color: var(--primary-green);
    width: 16px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.regulatory-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Login Modal */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
}

.glass-modal {
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.85) 0%, rgba(34, 139, 34, 0.9) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 3rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(34, 139, 34, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(50px);
    transition: transform 0.3s ease;
    position: relative;
}

.glass-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.02) 100%);
    border-radius: 25px;
    pointer-events: none;
    z-index: -1;
}

.login-overlay.active .glass-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.login-logo {
    margin-bottom: 1rem;
}

.modal-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
}

.login-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header p {
    opacity: 0.8;
    font-size: 16px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    width: 100%;
    box-sizing: border-box;
    height: 52px; /* Ensure consistent height */
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    border-color: rgba(34, 139, 34, 0.8);
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.3),
                0 4px 12px rgba(34, 139, 34, 0.2);
    color: var(--white);
    transform: translateY(-1px);
}

/* Browser autofill styling */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.8) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: var(--white) !important;
}

.form-group input:-moz-autofill {
    background: rgba(0, 0, 0, 0.8) !important;
    color: var(--white) !important;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px !important; /* Extra space for toggle button */
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.toggle-password:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 14px;
}

.checkbox-container input {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--white);
}

.login-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 14px;
}

.login-footer a {
    color: var(--primary-green);
    text-decoration: none;
}

.login-footer a:hover {
    color: var(--white);
}

/* Loading Modal */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-modal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-modal p {
    font-size: 18px;
    font-weight: 500;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .digital-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        margin: 0 auto;
    }
    
    .app-interface {
        padding: 1.5rem 1rem;
    }
    
    .app-header h4 {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    }
    
    .app-header span {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-right {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .header-left {
        flex: 1;
        gap: 1rem;
    }

    .bank-logo {
        height: 36px;
    }

    /* Hide desktop elements */
    .desktop-only {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-header-right {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Language dropdown adjustments */
    .lang-dropdown-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 75px;
    }

    .lang-dropdown-menu {
        min-width: 140px;
    }

    /* Sub header - hide on mobile, content moved to sidebar */
    .sub-header {
        display: none;
    }

    /* Adjust hero slider */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-text h1 {
        font-size: 2.5rem;
    }

    .slide-text p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-slider {
        padding: 0 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-center {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .app-downloads {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .glass-modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
        padding: 2rem;
    }
    
    .password-input input {
        padding-right: 40px !important;
    }
    
    .toggle-password {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .login-header h3 {
        font-size: 1.5rem;
    }

    .modal-logo {
        height: 40px;
        max-width: 160px;
    }

    /* Mobile login button - show text on all mobile screens */
    .mobile-login-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        min-width: auto;
    }

    .mobile-login-btn span {
        display: inline !important; /* Ensure text is always visible on mobile */
        font-size: 13px;
    }

    .mobile-login-btn i {
        font-size: 14px;
    }

    /* Mobile login form adjustments */
    .form-group input {
        padding: 12px 15px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.8) !important;
        color: var(--white) !important;
    }

    .form-group input:focus {
        background: rgba(0, 0, 0, 0.9) !important;
        color: var(--white) !important;
    }

    .search-input.active {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.875rem 1rem;
    }

    .bank-logo {
        height: 32px;
    }

    .lang-dropdown-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 65px;
        gap: 6px;
    }

    .lang-dropdown-btn i.fa-globe {
        font-size: 14px;
    }

    .current-lang {
        font-size: 12px;
    }

    .mobile-login-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 5px;
        min-width: auto;
    }

    .mobile-login-btn span {
        display: inline !important; /* Always show text on all mobile screens */
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-login-btn i {
        font-size: 12px;
    }

    .mobile-menu-toggle {
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }

    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .service-card,
    .investment-card {
        padding: 1.5rem;
    }

    .credit-card {
        margin: 0 1rem;
    }

    .glass-modal {
        margin: 0.5rem;
        padding: 2rem 1.5rem;
    }

    .modal-logo {
        height: 36px;
        max-width: 140px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .app-interface {
        padding: 1.25rem 0.875rem;
    }
    
    .app-header {
        margin-bottom: 1rem;
    }
    
    .app-header h4 {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        margin-bottom: 0.375rem;
    }
    
    .app-header span {
        font-size: clamp(0.9rem, 4.5vw, 1.1rem);
    }
    
    .app-actions button {
        padding: 12px;
        font-size: 0.875rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Smaller mobile login form adjustments */
    .form-group input {
        padding: 14px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.85) !important;
        color: var(--white) !important;
        border-radius: 12px;
    }

    .form-group input:focus {
        background: rgba(0, 0, 0, 0.95) !important;
        color: var(--white) !important;
    }

    .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    70% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }
}

/* Print styles */
@media print {
    .main-header,
    .sub-header,
    .hero-slider,
    .login-overlay,
    .loading-overlay,
    .back-to-top,
    .mobile-sidebar,
    .mobile-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-padding {
        padding: 1rem 0 !important;
    }
}

/* Custom Notification Styles */
.auth-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    font-size: 14px;
}

.auth-notification.success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.auth-notification.error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.auth-notification.show {
    transform: translateX(0);
}

/* Enhanced Form Error States */
.form-group input.error {
    border-color: #EF4444 !important;
    color: var(--white) !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

.form-group input.success {
    border-color: #10B981 !important;
    color: var(--white) !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* Loading overlay enhancements */
.loading-overlay {
    backdrop-filter: blur(20px) !important;
}

.loading-modal {
    backdrop-filter: blur(30px) !important;
}

