/* Custom CSS for Linch Stock Market Ltd. */

/* Root Variables */
:root {
    --primary-color: #ffc107;
    --primary-hover: #ffca2c;
    --secondary-color: #2F85C7;
    --secondary-hover-color: #215c89;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0e27;
    --text-light: #495057;
    --text-dark: #e9ecef;
    --border-light: #dee2e6;
    --border-dark: #343a40;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-light);
    overflow-x: hidden;
    margin-top: 80px;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

html {
    scroll-behavior: smooth;
}

.hero-section .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-section .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: highlightGlow 2s ease-in-out infinite;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: transform 0.3s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar.shadow-sm {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

body.dark-mode .navbar {
    background-color: rgba(10, 14, 39, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    background-color: rgba(10, 14, 39, 0.98) !important;
}

body.dark-mode .navbar.shadow-sm {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-wrapper {
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    filter: brightness(1.1);
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #495057;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 193, 7, 0.1);
}



.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

body.dark-mode .navbar-nav .nav-link {
    color: var(--text-dark);
}

body.dark-mode .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 193, 7, 0.15);
}

/* Navigation Icons */
.nav-icon {
    font-size: 20px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: scale(1.15);
}

/* Dropdown Styles */
.dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown Hover Functionality */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    margin-top: 0.25rem;
    background-color: #fff;
    animation: fadeInDown 0.3s ease;
}

body.dark-mode .dropdown-menu-custom {
    background-color: #1a1f2e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Bridge gap between nav item and dropdown */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-item {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item .material-icons-outlined {
    font-size: 20px;
    color: var(--primary-color);
}

body.dark-mode .dropdown-item {
    color: var(--text-dark);
}

body.dark-mode .dropdown-item:hover {
    background-color: rgba(255, 193, 7, 0.15);
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #ffca2c 0%, #ffa726 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #fff;
}

.btn-primary-custom .btn-icon {
    font-size: 20px;
    vertical-align: middle;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.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='rgba(73, 80, 87, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.dark-mode .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='rgba(233, 236, 239, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    body.dark-mode .navbar-collapse {
        background: rgba(26, 31, 46, 0.98);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu-custom {
        border: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 1.5rem;
    }

    body.dark-mode .dropdown-menu-custom {
        background-color: transparent;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-primary-custom {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-item.ms-lg-3 {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 36px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
    }

    .nav-icon {
        font-size: 18px;
    }

    .dropdown-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .dropdown-item .material-icons-outlined {
        font-size: 18px;
    }
}

/* Sticky Header Enhancement */
.navbar.sticky-top {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;

    /* color: #212529; */
}

.z-9 {
    position: relative;
    z-index: 99;
}


.brand-text h1 .highlight {
    color: #0dcaf0;
}

.brand-text p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6c757d;
    margin: 0;
}

body.dark-mode .brand-text p {
    color: #adb5bd;
}

.nav-link {
    color: #6c757d !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

body.dark-mode .nav-link {
    color: #adb5bd !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: #212529;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}



.hero-section .highlight {
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.25rem;
    color: #e2e2e2;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    border: none;
    color: #000000;
}

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

.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}


.btn-hero-secondary:hover {

    background-color: var(--primary-hover);
}


/* Market Data Section */
.market-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

body.dark-mode .market-section {
    background-color: rgba(10, 14, 39, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .section-title h2 {
    color: #fff;
}

.section-title p {
    font-size: 1.125rem;
    color: #6c757d;
}

body.dark-mode .section-title p {
    color: #adb5bd;
}

.market-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

body.dark-mode .market-card {
    background: var(--bg-dark);
    border-color: var(--border-dark);
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.market-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

body.dark-mode .market-card h5 {
    color: #fff;
}

.market-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin: 0.5rem 0;
}

body.dark-mode .market-card .value {
    color: #e9ecef;
}

.market-card .change {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.change.positive {
    color: #198754;
}

.change.negative {
    color: #dc3545;
}

.change.neutral {
    color: #6c757d;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

body.dark-mode .service-card {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .service-card h5 {
    color: #fff;
}

.service-card p {
    color: #6c757d;
    margin: 0;
}

body.dark-mode .service-card p {
    color: #adb5bd;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

body.dark-mode .pricing-section {
    background-color: rgba(10, 14, 39, 0.5);
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

body.dark-mode .pricing-card {
    background: var(--bg-dark);
    border-color: var(--border-dark);
}

/* .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffca2c);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.pricing-card.featured::before {
    opacity: 1;
}

body.dark-mode .pricing-card.featured {
    border-color: var(--primary-color);
}

.pricing-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 202, 44, 0.3));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 202, 44, 0.4));
}

.pricing-amount {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6c757d;
}

body.dark-mode .pricing-amount .currency {
    color: #adb5bd;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

body.dark-mode .pricing-amount .price {
    color: #fff;
}

.pricing-type {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.pricing-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

body.dark-mode .pricing-description {
    border-top-color: var(--border-dark);
}

.pricing-description p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

body.dark-mode .pricing-description p {
    color: #adb5bd;
}

/* ================================
   Services Page Styles
   ================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #dee2e6;
}

body.dark-mode .breadcrumb-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, var(--bg-dark) 100%);
    border-bottom-color: var(--border-dark);
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 202, 240, 0.04) 0%, transparent 50%);
    animation: breadcrumbGlow 8s ease-in-out infinite alternate;
}

@keyframes breadcrumbGlow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.7;
    }
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            rgba(255, 193, 7, 0.5) 50%,
            transparent 100%);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

body.dark-mode .breadcrumb {
    background: rgba(10, 14, 39, 0.6);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #495057;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

body.dark-mode .breadcrumb-item a {
    color: #adb5bd;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

body.dark-mode .breadcrumb-item a:hover {
    background: rgba(255, 193, 7, 0.15);
}

.breadcrumb-item a .material-icons-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover .material-icons-outlined {
    transform: scale(1.1);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 202, 44, 0.15));
    border-radius: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";

}

body.dark-mode .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 193, 7, 0.5);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    animation: titleSlideIn 0.6s ease-out;
}

body.dark-mode .page-title {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 400;
    animation: titleSlideIn 0.6s ease-out 0.2s backwards;
}

body.dark-mode .page-subtitle {
    color: #adb5bd;
}

/* Services Hero Section */
.services-hero-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

body.dark-mode .services-hero-section {
    background: rgba(10, 14, 39, 0.3);
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 202, 44, 0.15));
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.services-hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .services-hero-section h2 {
    color: #fff;
}

.services-hero-section p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

body.dark-mode .services-hero-section p {
    color: #adb5bd;
}

/* Main Services Section */
.main-services-section {
    padding: 4rem 0;
    background: #fff;
}

body.dark-mode .main-services-section {
    background: var(--bg-dark);
}

.service-detail-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

body.dark-mode .service-detail-card {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02), rgba(13, 202, 240, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.dark-mode .service-detail-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-icon-large {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

.service-icon-large svg {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    position: relative;
}

.service-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 193, 7, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

body.dark-mode .service-number {
    color: rgba(255, 193, 7, 0.08);
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .service-content h3 {
    color: #fff;
}

.service-content>p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

body.dark-mode .service-content>p {
    color: #adb5bd;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #495057;
}

body.dark-mode .service-features li {
    color: #e9ecef;
}

.service-features li .material-icons-outlined {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-service-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-service-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
    gap: 1rem;
}

.btn-service-learn .material-icons-outlined {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-service-learn:hover .material-icons-outlined {
    transform: translateX(5px);
}

/* Reverse Layout */
.service-detail-card.reverse .service-content {
    text-align: right;
}

.service-detail-card.reverse .service-features li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .why-choose-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, var(--bg-dark) 100%);
}

.why-choose-card {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

body.dark-mode .why-choose-card {
    background: var(--bg-dark);
    border-color: var(--border-dark);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

body.dark-mode .why-choose-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 202, 44, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 202, 44, 0.25));
}

.why-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.why-choose-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .why-choose-card h5 {
    color: #fff;
}

.why-choose-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

body.dark-mode .why-choose-card p {
    color: #adb5bd;
}

/* Services CTA Section */
.services-cta-section {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%); */
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%); */
}

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

.services-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ================================
   Service Detail Page Styles
   ================================ */

/* Service Detail Hero */
.service-detail-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-detail-hero {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, var(--bg-dark) 100%);
}

.detail-hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 202, 44, 0.15));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

.hero-badge .material-icons-outlined {
    font-size: 1.25rem;
}

.detail-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

body.dark-mode .detail-hero-content h2 {
    color: #fff;
}

.detail-hero-content>p {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

body.dark-mode .detail-hero-content>p {
    color: #adb5bd;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

body.dark-mode .stat-label {
    color: #adb5bd;
}

.detail-hero-image {
    padding: 2rem;
}

.detail-hero-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Services Offered Section */
.services-offered-section {
    padding: 5rem 0;
    background: #ffffff;
}

body.dark-mode .services-offered-section {
    background: var(--bg-dark);
}

.service-offering-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode .service-offering-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-color: var(--border-dark);
}

.service-offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-offering-card:hover::before {
    transform: scaleX(1);
}

.service-offering-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-mode .service-offering-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 202, 44, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-offering-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 202, 44, 0.25));
    transform: scale(1.1) rotate(-5deg);
}

.service-card-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-offering-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

body.dark-mode .service-offering-card h4 {
    color: #fff;
}

.service-offering-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .service-offering-card p {
    color: #adb5bd;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 193, 7, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.service-offering-card:hover .card-number {
    color: rgba(255, 193, 7, 0.15);
    transform: scale(1.2);
}

/* Margin Trading Section */
.margin-trading-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .margin-trading-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.3) 0%, var(--bg-dark) 100%);
}

.margin-trading-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.dark-mode .margin-trading-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-color: var(--border-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.margin-trading-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(25, 135, 84, 0.05) 0%, transparent 50%);
}

.margin-content {
    position: relative;
    z-index: 2;
}

.margin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.15), rgba(32, 201, 151, 0.15));
    border: 2px solid rgba(25, 135, 84, 0.3);
    border-radius: 30px;
    color: #198754;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.margin-badge .material-icons-outlined {
    font-size: 1.25rem;
}

.margin-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1.5rem;
}

body.dark-mode .margin-content h2 {
    color: #fff;
}

.margin-content>p {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

body.dark-mode .margin-content>p {
    color: #adb5bd;
}

.margin-features {
    margin-bottom: 2.5rem;
}

.margin-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(25, 135, 84, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.margin-feature-item:hover {
    background: rgba(25, 135, 84, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #198754, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .material-icons-outlined {
    font-size: 1.75rem;
    color: #ffffff;
}

.feature-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

body.dark-mode .feature-content h5 {
    color: #fff;
}

.feature-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

body.dark-mode .feature-content p {
    color: #adb5bd;
}

.btn-margin-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 36px;
    background: linear-gradient(135deg, #198754, #20c997);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(25, 135, 84, 0.3);
}

.btn-margin-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(25, 135, 84, 0.5);
    gap: 1rem;
}

.btn-margin-cta .material-icons-outlined {
    transition: transform 0.3s ease;
}

.btn-margin-cta:hover .material-icons-outlined {
    transform: translateX(5px);
}

.margin-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: #ffffff;
}

body.dark-mode .benefits-section {
    background: var(--bg-dark);
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

body.dark-mode .benefit-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-color: var(--border-dark);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

body.dark-mode .benefit-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 202, 44, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 202, 44, 0.25));
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.benefit-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .benefit-card h5 {
    color: #fff;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

body.dark-mode .benefit-card p {
    color: #adb5bd;
}

/* Detail CTA Section */
.detail-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    position: relative;
    overflow: hidden;
}

.detail-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.detail-cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0a0e27;
    margin-bottom: 1rem;
}

.detail-cta-section p {
    font-size: 1.25rem;
    color: rgba(10, 14, 39, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-cta-section .btn-hero-primary {
    background: #0a0e27;
    color: var(--primary-color);
    border: 2px solid #0a0e27;
}

.detail-cta-section .btn-hero-primary:hover {
    background: #1a1f3a;
    border-color: #1a1f3a;
    color: #ffffff;
}

.detail-cta-section .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 14, 39, 0.3);
    color: #0a0e27;
}

.detail-cta-section .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #0a0e27;
}

/* ========================================
   NOTICE DETAIL PAGE STYLES
   ======================================== */

/* Notice Detail Hero Section */
.notice-detail-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .notice-detail-hero {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
}

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

.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: noticeBadgePulse 2s ease-in-out infinite;
}

.notice-badge .material-icons-outlined {
    font-size: 1.2rem;
}

@keyframes noticeBadgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    }
}

.notice-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

body.dark-mode .notice-title {
    color: #ffffff;
}

.notice-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.95rem;
}

body.dark-mode .meta-item {
    color: #a0a0a0;
}

.meta-item .material-icons-outlined {
    font-size: 1.2rem;
}

/* Notice Content Section */
.notice-content-section {
    padding: 4rem 0;
    background: #ffffff;
}

body.dark-mode .notice-content-section {
    background: #0a0e27;
}

.notice-content-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.dark-mode .notice-content-wrapper {
    background: #1a1d2e;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.notice-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0e27;
    margin-bottom: 1.5rem;
}

body.dark-mode .lead-text {
    color: #ffffff;
}

.notice-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

body.dark-mode .notice-content-wrapper p {
    color: #b8b8b8;
}

.notice-content-wrapper strong {
    color: #0a0e27;
    font-weight: 600;
}

body.dark-mode .notice-content-wrapper strong {
    color: #ffc107;
}

/* Notice Features Section */
.notice-features {
    margin: 3rem 0;
    padding: 2rem 0;
}

.notice-features h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 2rem;
}

body.dark-mode .notice-features h2 {
    color: #ffffff;
}

.notice-features h2 .material-icons-outlined {
    font-size: 2rem;
    color: #ffc107;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-mode .feature-card {
    background: linear-gradient(135deg, #1f2333 0%, #1a1d2e 100%);
    border-color: #2a2d3e;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.feature-icon .material-icons-outlined {
    font-size: 2rem;
    color: #0a0e27;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .feature-card h3 {
    color: #ffffff;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .feature-card p {
    color: #a0a0a0;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(25, 135, 84, 0.3);
}

/* Get Started Section */
.notice-get-started {
    margin: 3rem 0;
}

.get-started-card {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    border-radius: 15px;
    padding: 2.5rem;
    color: #ffffff;
    text-align: center;
}

.get-started-card h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.get-started-card h2 .material-icons-outlined {
    font-size: 2rem;
}

.get-started-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.website-link .material-icons-outlined {
    font-size: 1.5rem;
}

.website-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.website-link a:hover {
    color: #ffc107;
}

/* Contact Information Section */
.notice-contact {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e9ecef;
}

body.dark-mode .notice-contact {
    border-color: #2a2d3e;
}

.notice-contact h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1.5rem;
}

body.dark-mode .notice-contact h2 {
    color: #ffffff;
}

.notice-contact h2 .material-icons-outlined {
    font-size: 2rem;
    color: #ffc107;
}

.contact-details {
    background: #f8f9fa;
    border-radius: 15px;
    color: #000;
    padding: 2rem;
    margin-top: 1.5rem;
}

body.dark-mode .contact-details {
    background: #1f2333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

body.dark-mode .contact-item {
    border-color: #2a2d3e;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .material-icons-outlined {
    font-size: 1.5rem;
    color: #ffc107;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

/* Closing Message Section */
.notice-closing {
    margin: 3rem 0 2rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
}

body.dark-mode .notice-closing {
    background: linear-gradient(135deg, #1f2333 0%, #1a1d2e 100%);
}

/* Motivational Banner */
.notice-banner {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
    border: 3px solid #ffc107;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
}

body.dark-mode .notice-banner {
    background: linear-gradient(135deg, #1f2333 0%, #0a0e27 100%);
}

.notice-banner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    margin: 0;
    letter-spacing: 3px;
}

.banner-divider {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1rem 0;
    letter-spacing: 5px;
}

/* Other Notices Section */
.other-notices-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

body.dark-mode .other-notices-section {
    background: #0f1117;
}

.other-notices-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .other-notices-section .section-header h2 {
    color: #ffffff;
}

.other-notices-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

body.dark-mode .other-notices-section .section-header p {
    color: #a0a0a0;
}

.notice-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

body.dark-mode .notice-card {
    background: #1a1d2e;
    border-color: #2a2d3e;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffc107;
}

body.dark-mode .notice-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.notice-card:hover::before {
    transform: scaleX(1);
}

.notice-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-badge-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: #ffffff;
}

.notice-badge-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: #ffffff;
}

.notice-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
    line-height: 1.4;
}

body.dark-mode .notice-card h3 {
    color: #ffffff;
}

.notice-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.dark-mode .notice-card p {
    color: #a0a0a0;
}

.notice-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

body.dark-mode .notice-card-meta {
    color: #888;
}

.notice-card-meta .material-icons-outlined {
    font-size: 1rem;
}

.btn-notice-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-notice-view:hover {
    gap: 1rem;
    color: #ff9800;
}

.btn-notice-view .material-icons-outlined {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-notice-view:hover .material-icons-outlined {
    transform: translateX(5px);
}

/* Notice CTA Section */
.notice-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    position: relative;
    overflow: hidden;
}

.notice-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.notice-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

.notice-cta-section p {
    font-size: 1.2rem;
    color: rgba(10, 14, 39, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.notice-cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.notice-cta-section .btn-light {
    background: #ffffff;
    color: #0a0e27;
    border: none;
}

.notice-cta-section .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notice-cta-section .btn-outline-light {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.notice-cta-section .btn-outline-light:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design for Notice Detail */
@media (max-width: 991px) {
    .notice-title {
        font-size: 2rem;
    }

    .notice-meta {
        gap: 1rem;
    }

    .notice-content-wrapper {
        padding: 2rem;
    }

    .notice-features h2,
    .notice-contact h2 {
        font-size: 1.75rem;
    }

    .notice-banner h3 {
        font-size: 2rem;
    }

    .notice-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .notice-detail-hero {
        padding: 2rem 0;
    }

    .notice-title {
        font-size: 1.75rem;
    }

    .notice-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .notice-content-wrapper {
        padding: 1.5rem;
    }

    .notice-content-wrapper p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .get-started-card {
        padding: 2rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .notice-banner h3 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .banner-divider {
        font-size: 1.2rem;
    }

    .notice-cta-section {
        padding: 3rem 0;
    }

    .notice-cta-section h2 {
        font-size: 1.75rem;
    }

    .notice-cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .notice-cta-section .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FORMS PAGE STYLES
   ======================================== */

/* Featured Form Section */
.featured-form-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .featured-form-section {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
}

.featured-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffc107;
    position: relative;
    overflow: hidden;
}

body.dark-mode .featured-form-card {
    background: #1a1d2e;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.featured-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: formGlow 8s ease-in-out infinite;
}

@keyframes formGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.2);
    }
}

.featured-form-content {
    position: relative;
    z-index: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.featured-badge .material-icons-outlined {
    font-size: 1.2rem;
}

.featured-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .featured-form-content h2 {
    color: #ffffff;
}

.featured-form-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

body.dark-mode .featured-form-content p {
    color: #b8b8b8;
}

.featured-form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-featured-primary,
.btn-featured-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-featured-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    border: none;
}

.btn-featured-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    color: #0a0e27;
}

.btn-featured-secondary {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

body.dark-mode .btn-featured-secondary {
    color: #ffc107;
}

.btn-featured-secondary:hover {
    background: #ffc107;
    color: #0a0e27;
    transform: translateY(-3px);
}

.featured-form-illustration {
    position: relative;
    z-index: 1;
}

.featured-form-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

body.dark-mode .featured-form-illustration svg rect[fill="#ffffff"] {
    fill: #1f2333;
}

body.dark-mode .featured-form-illustration svg line[stroke="#e9ecef"] {
    stroke: #2a2d3e;
}

/* Documents Info Section */
.documents-info-section {
    padding: 2rem 0;
    background: #ffffff;
}

body.dark-mode .documents-info-section {
    background: #0a0e27;
}

.documents-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    color: #ffffff;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon .material-icons-outlined {
    font-size: 2rem;
}

.info-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* All Forms Section */
.all-forms-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

body.dark-mode .all-forms-section {
    background: #0f1117;
}

.all-forms-section .section-header {
    margin-bottom: 3rem;
}

.all-forms-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .all-forms-section .section-header h2 {
    color: #ffffff;
}

.all-forms-section .section-header h2 .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffc107;
}

.all-forms-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

body.dark-mode .all-forms-section .section-header p {
    color: #a0a0a0;
}

/* Forms Category */
.forms-category {
    margin-bottom: 4rem;
}

.forms-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ffc107;
}

body.dark-mode .category-title {
    color: #ffffff;
}

.category-title .material-icons-outlined {
    font-size: 2rem;
    color: #ffc107;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

body.dark-mode .form-card {
    background: #1a1d2e;
    border-color: #2a2d3e;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

body.dark-mode .form-card:hover {
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.form-card:hover::before {
    transform: scaleX(1);
}

.form-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.form-icon .material-icons-outlined {
    font-size: 2rem;
    color: #0a0e27;
}

.form-icon-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.form-icon-primary .material-icons-outlined {
    color: #ffffff;
}

.form-icon-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.form-icon-success .material-icons-outlined {
    color: #ffffff;
}

.form-icon-warning {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
}

.form-icon-warning .material-icons-outlined {
    color: #ffffff;
}

.form-icon-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #17a2b8 100%);
}

.form-icon-info .material-icons-outlined {
    color: #ffffff;
}

.form-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 193, 7, 0.2);
}

body.dark-mode .form-number {
    color: rgba(255, 193, 7, 0.1);
}

.form-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
    line-height: 1.4;
}

body.dark-mode .form-card h4 {
    color: #ffffff;
}

.form-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

body.dark-mode .form-card p {
    color: #a0a0a0;
}

/* Form Tags */
.form-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: #ff9800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

body.dark-mode .form-tag {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

body.dark-mode .form-actions {
    border-color: #2a2d3e;
}

.btn-form-view,
.btn-form-download,
.btn-form-docs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-form-view {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: #ffffff;
}

.btn-form-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: #ffffff;
}

.btn-form-download {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
}

.btn-form-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    color: #0a0e27;
}

.btn-form-docs {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: #ffffff;
}

.btn-form-docs:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    color: #ffffff;
}

.btn-form-view .material-icons-outlined,
.btn-form-download .material-icons-outlined,
.btn-form-docs .material-icons-outlined {
    font-size: 1.1rem;
}

/* Forms Help Section */
.forms-help-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.help-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    color: #0a0e27;
}

.help-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.help-card p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.btn-help-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0a0e27;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-help-contact:hover {
    background: #1a1d2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 14, 39, 0.3);
    color: #ffffff;
}

.btn-help-contact .material-icons-outlined {
    font-size: 1.3rem;
}

/* Required Documents Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.dark-mode .modal-content {
    background: #1a1d2e;
    color: #ffffff;
}

.modal-header {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 20px 20px 0 0;
    border: none;
    padding: 1.5rem 2rem;
}

body.dark-mode .modal-header {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0e27;
}

.modal-title .material-icons-outlined {
    font-size: 1.75rem;
}

.modal-header .btn-close {
    background-color: rgba(10, 14, 39, 0.1);
    border-radius: 50%;
    opacity: 1;
    padding: 0.75rem;
}

.modal-header .btn-close:hover {
    background-color: rgba(10, 14, 39, 0.2);
}

.modal-body {
    padding: 2rem;
}

body.dark-mode .modal-body {
    color: #b8b8b8;
}

.required-docs-header {
    margin-bottom: 1.5rem;
}

.required-docs-header h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 0.75rem;
}

body.dark-mode .required-docs-header h6 {
    color: #ffffff;
}

.required-docs-header p {
    color: #6c757d;
    margin: 0;
}

body.dark-mode .required-docs-header p {
    color: #a0a0a0;
}

.required-docs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.required-docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

body.dark-mode .required-docs-list li {
    background: #1f2333;
    border-left-color: #ffc107;
}

.required-docs-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.doc-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.doc-text {
    flex: 1;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
}

body.dark-mode .doc-text {
    color: #b8b8b8;
}

.docs-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

body.dark-mode .docs-note {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(25, 135, 84, 0.1) 100%);
    border-color: rgba(13, 110, 253, 0.3);
}

.docs-note .material-icons-outlined {
    color: #0d6efd;
    font-size: 1.5rem;
    flex-shrink: 0;
}

body.dark-mode .docs-note .material-icons-outlined {
    color: #0dcaf0;
}

.docs-note p {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

body.dark-mode .docs-note p {
    color: #b8b8b8;
}

.modal-footer {
    border-top: 2px solid #e9ecef;
    padding: 1.25rem 2rem;
    border-radius: 0 0 20px 20px;
}

body.dark-mode .modal-footer {
    border-color: #2a2d3e;
}

.modal-footer .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    border: none;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.modal-footer .btn .material-icons-outlined {
    font-size: 1.2rem;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Responsive Design for Forms Page */
@media (max-width: 991px) {
    .featured-form-card {
        padding: 2rem;
    }

    .featured-form-content h2 {
        font-size: 2rem;
    }

    .featured-form-illustration {
        margin-top: 2rem;
    }

    .all-forms-section .section-header h2 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .form-card {
        padding: 1.75rem;
    }

    .help-card h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .btn-help-contact {
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .featured-form-section {
        padding: 2rem 0 3rem;
    }

    .featured-form-card {
        padding: 1.5rem;
    }

    .featured-form-content h2 {
        font-size: 1.75rem;
    }

    .featured-form-content p {
        font-size: 1rem;
    }

    .featured-form-actions {
        flex-direction: column;
    }

    .btn-featured-primary,
    .btn-featured-secondary {
        width: 100%;
        justify-content: center;
    }

    .documents-info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .all-forms-section .section-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
    }

    .category-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-card h4 {
        font-size: 1.2rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-form-view,
    .btn-form-download,
    .btn-form-docs {
        width: 100%;
    }

    .forms-help-section {
        padding: 3rem 0;
    }

    .help-card {
        padding: 2rem;
        text-align: center;
    }

    .help-card h3 {
        font-size: 1.5rem;
    }

    .help-card p {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .contact-hero-section {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1117 100%);
}

.quick-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffc107;
    position: relative;
    overflow: hidden;
}

body.dark-mode .quick-contact-card {
    background: #1a1d2e;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: contactGlow 10s ease-in-out infinite;
}

@keyframes contactGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.quick-contact-content {
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.contact-badge .material-icons-outlined {
    font-size: 1.2rem;
}

.quick-contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .quick-contact-content h2 {
    color: #ffffff;
}

.quick-contact-content>p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

body.dark-mode .quick-contact-content>p {
    color: #b8b8b8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

body.dark-mode .contact-method-item {
    background: #1f2333;
}

.contact-method-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.contact-method-item .material-icons-outlined {
    font-size: 2rem;
    color: #ffc107;
    flex-shrink: 0;
}

.contact-method-item strong {
    display: block;
    font-size: 1.1rem;
    color: #0a0e27;
    margin-bottom: 0.25rem;
}

body.dark-mode .contact-method-item strong {
    color: #ffffff;
}

.contact-method-item p {
    font-size: 1rem;
    color: #495057;
    margin: 0;
}

body.dark-mode .contact-method-item p {
    color: #a0a0a0;
}

.contact-illustration {
    position: relative;
    z-index: 1;
}

.contact-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

body.dark-mode .contact-illustration svg rect[fill="#ffffff"] {
    fill: #1f2333;
}

body.dark-mode .contact-illustration svg rect[fill="#e9ecef"] {
    fill: #2a2d3e;
}

/* Departments Section */
.contact-departments-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

body.dark-mode .contact-departments-section {
    background: #0f1117;
}

.contact-departments-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .contact-departments-section .section-header h2 {
    color: #ffffff;
}

.contact-departments-section .section-header h2 .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffc107;
}

.contact-departments-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

body.dark-mode .contact-departments-section .section-header p {
    color: #a0a0a0;
}

.department-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

body.dark-mode .department-card {
    background: #1a1d2e;
    border-color: #2a2d3e;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

body.dark-mode .department-card:hover {
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.department-card:hover::before {
    transform: scaleX(1);
}

.department-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.department-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: #0a0e27;
}

.department-icon-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.department-icon-primary .material-icons-outlined {
    color: #ffffff;
}

.department-icon-success {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.department-icon-success .material-icons-outlined {
    color: #ffffff;
}

.department-icon-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #17a2b8 100%);
}

.department-icon-info .material-icons-outlined {
    color: #ffffff;
}

.department-icon-warning {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
}

.department-icon-warning .material-icons-outlined {
    color: #ffffff;
}

.department-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 0.5rem;
}

body.dark-mode .department-card h3 {
    color: #ffffff;
}

.department-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

body.dark-mode .department-subtitle {
    color: #a0a0a0;
}

.department-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.department-contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

body.dark-mode .department-contacts .contact-item {
    background: #1f2333;
}

.department-contacts .contact-item .material-icons-outlined {
    font-size: 1.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.department-contacts .contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

body.dark-mode .department-contacts .contact-item strong {
    color: #888;
}

.department-contacts .contact-item a {
    color: #0a0e27;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.dark-mode .department-contacts .contact-item a {
    color: #ffc107;
}

.department-contacts .contact-item a:hover {
    color: #ffc107;
}

body.dark-mode .department-contacts .contact-item a:hover {
    color: #ff9800;
}

.contact-apps {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
    margin-top: 0.25rem;
}

body.dark-mode .contact-apps {
    color: #888;
}

.contact-divider {
    color: #6c757d;
    margin: 0 0.25rem;
}

.department-card-featured {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-color: #ff9800;
}

body.dark-mode .department-card-featured {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.department-card-featured h3,
.department-card-featured .department-subtitle {
    color: #0a0e27;
}

.department-card-featured .department-contacts .contact-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.department-card-featured .department-contacts .contact-item a {
    color: #0a0e27;
}

.department-card-featured .department-contacts .contact-item a:hover {
    color: #ffffff;
}

.department-contacts-horizontal {
    flex-direction: row;
    gap: 2rem;
}

/* Map & Address Section */
.contact-map-section {
    padding: 4rem 0;
    background: #ffffff;
}

body.dark-mode .contact-map-section {
    background: #0a0e27;
}

.map-card,
.address-card,
.social-connect-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

body.dark-mode .map-card,
body.dark-mode .address-card,
body.dark-mode .social-connect-card {
    background: #1a1d2e;
}

.map-card h3,
.address-card h3,
.social-connect-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1.5rem;
}

body.dark-mode .map-card h3,
body.dark-mode .address-card h3,
body.dark-mode .social-connect-card h3 {
    color: #ffffff;
}

.map-card h3 .material-icons-outlined,
.address-card h3 .material-icons-outlined,
.social-connect-card h3 .material-icons-outlined {
    font-size: 1.75rem;
    color: #ffc107;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

body.dark-mode .address-item {
    background: #1f2333;
}

.address-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.address-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon .material-icons-outlined {
    font-size: 1.75rem;
    color: #0a0e27;
}

.address-item strong {
    display: block;
    font-size: 1.1rem;
    color: #0a0e27;
    margin-bottom: 0.5rem;
}

body.dark-mode .address-item strong {
    color: #ffffff;
}

.address-item p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

body.dark-mode .address-item p {
    color: #a0a0a0;
}

.social-connect-card {
    margin-bottom: 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    color: #0a0e27;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.dark-mode .social-link {
    background: #1f2333;
    color: #ffffff;
}

.social-link:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: #ffc107;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body.dark-mode .contact-form-section {
    background: linear-gradient(135deg, #0f1117 0%, #1a1d2e 100%);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

body.dark-mode .contact-form-card {
    background: #1a1d2e;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.form-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 1rem;
}

body.dark-mode .form-header h2 {
    color: #ffffff;
}

.form-header h2 .material-icons-outlined {
    font-size: 2.25rem;
    color: #ffc107;
}

.form-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

body.dark-mode .form-header p {
    color: #a0a0a0;
}

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

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0a0e27;
    margin-bottom: 0.5rem;
}

body.dark-mode .contact-form label {
    color: #ffffff;
}

.contact-form label .material-icons-outlined {
    font-size: 1.2rem;
    color: #ffc107;
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .contact-form .form-control {
    background: #1f2333;
    border-color: #2a2d3e;
    color: #ffffff;
}

.contact-form .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.15);
}

body.dark-mode .contact-form .form-control:focus {
    background: #1f2333;
    border-color: #ffc107;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form select.form-control {
    cursor: pointer;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #0a0e27;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-contact-submit .material-icons-outlined {
    font-size: 1.5rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .quick-contact-card {
        padding: 2rem;
    }

    .quick-contact-content h2 {
        font-size: 2rem;
    }

    .contact-illustration {
        margin-top: 2rem;
    }

    .contact-departments-section .section-header h2 {
        font-size: 2rem;
    }

    .department-contacts-horizontal {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 2rem 0;
    }

    .quick-contact-card {
        padding: 1.5rem;
    }

    .quick-contact-content h2 {
        font-size: 1.75rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method-item {
        padding: 1rem;
    }

    .contact-departments-section {
        padding: 3rem 0;
    }

    .contact-departments-section .section-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
    }

    .department-card {
        padding: 1.75rem;
    }

    .department-icon {
        width: 60px;
        height: 60px;
    }

    .department-icon .material-icons-outlined {
        font-size: 2rem;
    }

    .contact-map-section {
        padding: 3rem 0;
    }

    .map-card,
    .address-card,
    .social-connect-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .form-header p {
        font-size: 1rem;
    }
}

/* ============================================
   Stock & Portfolio Page Styles
   ============================================ */

/* Portfolio Hero Section */
.portfolio-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .portfolio-hero-section {
    background: linear-gradient(135deg, #1a1d23 0%, #212529 100%);
}

.portfolio-intro-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.4s ease;
}

body.dark-mode .portfolio-intro-card {
    background: #1a1d23;
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.15);
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: portfolioPulse 2s ease-in-out infinite;
}

@keyframes portfolioPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}

.portfolio-badge .material-icons-outlined {
    font-size: 1.25rem;
}

.portfolio-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
}

body.dark-mode .portfolio-intro-content h2 {
    color: #f8f9fa;
}

.portfolio-intro-content p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

body.dark-mode .portfolio-intro-content p {
    color: #adb5bd;
}

.portfolio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.portfolio-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

body.dark-mode .portfolio-features .feature-item {
    background: #212529;
}

.portfolio-features .feature-item:hover {
    background: #ffc107;
    transform: translateX(5px);
}

body.dark-mode .portfolio-features .feature-item:hover {
    background: #ffc107;
}

.portfolio-features .feature-item .material-icons-outlined {
    color: #198754;
    font-size: 1.5rem;
}

.portfolio-features .feature-item:hover .material-icons-outlined {
    color: #000;
}

.portfolio-features .feature-item span:last-child {
    font-weight: 500;
    color: #212529;
}

body.dark-mode .portfolio-features .feature-item span:last-child {
    color: #f8f9fa;
}

.portfolio-features .feature-item:hover span:last-child {
    color: #000;
}

.portfolio-illustration {
    animation: portfolioFloat 3s ease-in-out infinite;
}

@keyframes portfolioFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

body.dark-mode .portfolio-illustration svg rect[fill="#ffffff"] {
    fill: #212529;
}

body.dark-mode .portfolio-illustration svg rect[stroke="#e9ecef"] {
    stroke: #495057;
}

/* Portfolio Tools Section */
.portfolio-tools-section {
    padding: 4rem 0 2rem;
    background: #ffffff;
}

body.dark-mode .portfolio-tools-section {
    background: #212529;
}

.tool-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.4s ease;
    height: 100%;
}

body.dark-mode .tool-card {
    background: #1a1d23;
    border-color: #343a40;
}

.tool-card:hover {
    border-color: #ffc107;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.tool-icon .material-icons-outlined {
    font-size: 2rem;
    color: #000;
}

.tool-icon-success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.tool-icon-success .material-icons-outlined {
    color: #fff;
}

.tool-icon-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.tool-icon-info .material-icons-outlined {
    color: #000;
}

.tool-icon-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.tool-icon-warning .material-icons-outlined {
    color: #fff;
}

.tool-card:hover .tool-icon {
    transform: rotateY(360deg);
}

.tool-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
}

body.dark-mode .tool-card h4 {
    color: #f8f9fa;
}

.tool-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

body.dark-mode .tool-card p {
    color: #adb5bd;
}

/* Portfolio Content Section */
.portfolio-content-section {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
}

body.dark-mode .portfolio-content-section {
    background: #1a1d23;
}

.portfolio-frame-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.dark-mode .portfolio-frame-wrapper {
    background: #212529;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

body.dark-mode .iframe-container {
    background: #1a1d23;
    border-color: #343a40;
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 10;
    border-radius: 15px;
}

body.dark-mode .iframe-loader {
    background: #212529;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ffc107;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

body.dark-mode .loader-spinner {
    border-color: #343a40;
    border-top-color: #ffc107;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.iframe-loader p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

body.dark-mode .iframe-loader p {
    color: #adb5bd;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Portfolio Help Section */
.portfolio-help-section {
    padding: 4rem 0;
    background: #ffffff;
}

body.dark-mode .portfolio-help-section {
    background: #212529;
}

.help-banner {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 20px;
    padding: 3rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    animation: helpGlow 3s ease-in-out infinite;
}

@keyframes helpGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    }
}

.help-banner h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.help-banner h3 .material-icons-outlined {
    font-size: 2rem;
}

.help-banner p {
    font-size: 1.125rem;
    margin: 0;
    opacity: 0.9;
}

.btn-help-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000;
    color: #ffc107;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-help-primary:hover {
    background: #212529;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-help-primary .material-icons-outlined {
    font-size: 1.5rem;
}

/* Responsive Design for Portfolio Page */
@media (max-width: 991px) {
    .portfolio-hero-section {
        padding: 3rem 0;
    }

    .portfolio-intro-card {
        padding: 2rem;
    }

    .portfolio-intro-content h2 {
        font-size: 2rem;
    }

    .portfolio-intro-content p {
        font-size: 1rem;
    }

    .portfolio-features {
        grid-template-columns: 1fr;
    }

    .portfolio-illustration {
        margin-top: 2rem;
    }

    .portfolio-tools-section {
        padding: 3rem 0 1rem;
    }

    .tool-card {
        margin-bottom: 1rem;
    }

    .portfolio-frame-wrapper {
        padding: 1.5rem;
    }

    .help-banner {
        padding: 2rem;
    }

    .help-banner h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .help-banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

@media (max-width: 767px) {
    .portfolio-intro-card {
        padding: 1.5rem;
    }

    .portfolio-intro-content h2 {
        font-size: 1.75rem;
    }

    .portfolio-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .portfolio-features .feature-item {
        font-size: 0.875rem;
    }

    .tool-icon {
        width: 60px;
        height: 60px;
    }

    .tool-icon .material-icons-outlined {
        font-size: 1.75rem;
    }

    .tool-card h4 {
        font-size: 1.125rem;
    }

    .iframe-container {
        padding-bottom: 100%;
        /* Make it more square on mobile */
    }

    .help-banner {
        padding: 1.5rem;
    }

    .help-banner h3 {
        font-size: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .help-banner p {
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Responsive Design for Service Detail */
@media (max-width: 991px) {
    .service-detail-hero {
        padding: 4rem 0;
    }

    .detail-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .detail-hero-content h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .margin-trading-card {
        padding: 3rem 2rem;
    }

    .margin-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .service-detail-hero {
        padding: 3rem 0;
    }

    .detail-hero-content h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-offered-section,
    .margin-trading-section,
    .benefits-section {
        padding: 3rem 0;
    }

    .service-offering-card {
        padding: 2rem 1.5rem;
    }

    .margin-trading-card {
        padding: 2rem 1.5rem;
    }

    .margin-feature-item {
        padding: 1rem;
    }

    .detail-cta-section {
        padding: 3rem 0;
    }

    .detail-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .breadcrumb-section {
        padding: 1.5rem 0 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .service-detail-card.reverse .service-content {
        text-align: left;
    }

    .service-detail-card.reverse .service-features li {
        flex-direction: row;
        justify-content: flex-start;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 1rem 0 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .services-hero-section {
        padding: 3rem 0;
    }

    .services-hero-section h2 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-icon-large {
        max-width: 250px;
        margin-bottom: 2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .why-choose-section,
    .services-cta-section {
        padding: 3rem 0;
    }

    .services-cta-section h2 {
        font-size: 2rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: #fff;
    color: var(--secondary-color);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--secondary-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Account Options Section */
.account-options-section {
    padding: 5rem 0;
    background-color: #fff;
}

body.dark-mode .account-options-section {
    background-color: var(--bg-dark);
}

.account-option-card {
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.dark-mode .account-option-card {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.account-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(13, 202, 240, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.account-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 7, 0.5);
}

.account-option-card:hover::before {
    opacity: 1;
}

body.dark-mode .account-option-card:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.account-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.account-option-card:hover .account-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
}

.account-option-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3rem;
    position: relative;
}

body.dark-mode .account-option-card h5 {
    color: #fff;
}

.account-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .account-description {
    color: #adb5bd;
}

.btn-account-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    align-self: flex-start;
}

.btn-account-learn .material-icons-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-account-learn:hover {
    color: var(--primary-hover);
    gap: 0.75rem;
}

.btn-account-learn:hover .material-icons-outlined {
    transform: translateX(4px);
}

/* Responsive adjustments for account options */
@media (max-width: 991px) {
    .account-option-card h5 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .account-options-section {
        padding: 3rem 0;
    }

    .account-option-card {
        padding: 1.5rem;
    }
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

body.dark-mode .team-section {
    background-color: rgba(10, 14, 39, 0.5);
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
    animation: teamBackgroundMove 20s ease-in-out infinite;
}

@keyframes teamBackgroundMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(25%);
    }
}

.team-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.dark-mode .team-card {
    background: var(--bg-dark);
    border-color: var(--border-dark);
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

body.dark-mode .team-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    padding-top: 100%;
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 202, 44, 0.9));
    transition: all 0.4s ease;
}

.team-image .material-icons-outlined {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-card:hover .team-image .material-icons-outlined {
    transform: scale(1.2) rotate(5deg);
    color: rgba(255, 255, 255, 1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.social-link .material-icons-outlined {
    font-size: 1.125rem;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

body.dark-mode .team-info h5 {
    color: #fff;
}

.team-card:hover .team-info h5 {
    color: var(--primary-color);
}

.team-position {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .team-bio {
    color: #adb5bd;
}

/* Team card staggered animation on page load */
.team-card {
    animation: teamCardFadeIn 0.6s ease-out backwards;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes teamCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for team section */
@media (max-width: 991px) {
    .team-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 3rem 0;
    }

    .team-info {
        padding: 1.25rem;
    }

    .team-image .material-icons-outlined {
        font-size: 4rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

body.dark-mode .contact-card {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.contact-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

body.dark-mode .contact-card h5 {
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #6c757d;
}

body.dark-mode .contact-info-item {
    color: #adb5bd;
}

.contact-info-item .material-icons-outlined {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 2px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-light);
    padding: 12px;
}

body.dark-mode .form-control {
    background-color: rgba(52, 58, 64, 0.5);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .payment-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.5) 0%, var(--bg-dark) 100%);
}

.payment-card {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.dark-mode .payment-card {
    background: var(--bg-dark);
    border-color: var(--border-dark);
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

body.dark-mode .payment-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-header {
    background: linear-gradient(135deg, var(--primary-hover), #ffd54f);
}

/* Bank Logo Styles */
.bank-logo {

    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.bank-logo img {
    width: 80px !important;
    height: 80px;
    border-radius: 10px !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    display: block;
}

.payment-card:hover .bank-logo {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.payment-header .material-icons-outlined {
    font-size: 2rem;
    color: #212529;
}

.payment-header h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.payment-details {
    padding: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .detail-item {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

body.dark-mode .detail-label {
    color: #adb5bd;
}

.detail-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

body.dark-mode .detail-value {
    color: #e9ecef;
}

.highlight-account {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 193, 7, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

/* Digital Payments */
.digital-payments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

body.dark-mode .digital-payments {
    border-top-color: var(--border-dark);
}

.digital-payments-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 2rem;
}

body.dark-mode .digital-payments-title {
    color: #fff;
}

.digital-payment-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

body.dark-mode .digital-payment-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-color: var(--border-dark);
}

.digital-payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

body.dark-mode .digital-payment-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.digital-payment-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.digital-payment-card:hover .digital-payment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.5);
}

.digital-payment-icon .material-icons-outlined {
    font-size: 2rem;
    color: #212529;
}

.digital-payment-content {
    flex: 1;
}

.digital-payment-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-mode .digital-payment-content h5 {
    color: #fff;
}

.payment-steps {
    margin: 0;
    padding-left: 1.5rem;
    color: #6c757d;
}

body.dark-mode .payment-steps {
    color: #adb5bd;
}

.payment-steps li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 0.5rem;
}

.payment-steps li:last-child {
    margin-bottom: 0;
}

.payment-steps strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Payment card animation on scroll */
.payment-card {
    animation: paymentCardFadeIn 0.6s ease-out backwards;
}

.payment-card:nth-child(1) {
    animation-delay: 0.1s;
}

.payment-card:nth-child(2) {
    animation-delay: 0.2s;
}

.payment-card:nth-child(3) {
    animation-delay: 0.3s;
}

.payment-card:nth-child(4) {
    animation-delay: 0.4s;
}

.payment-card:nth-child(5) {
    animation-delay: 0.5s;
}

.payment-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes paymentCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for payment section */
@media (max-width: 991px) {
    .payment-section {
        padding: 4rem 0;
    }

    .digital-payment-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .payment-steps {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .payment-section {
        padding: 3rem 0;
    }

    .payment-card {
        margin-bottom: 1rem;
    }

    .digital-payments {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .digital-payments-title {
        font-size: 1.5rem;
    }

    .digital-payment-card {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1d3a 0%, #0a0e27 100%);
    border-top: 3px solid var(--primary-color);
    color: #e0e0e0;
}

body.dark-mode footer {
    background: linear-gradient(135deg, #0f1124 0%, #05070f 100%);
    border-top: 3px solid var(--primary-color);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h6 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-widget h6 i {
    color: var(--primary-color);
    font-size: 1rem;
}

body.dark-mode footer h6 {
    color: #fff;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-info h6 {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-contact-info h6::after {
    display: none;
}

.contact-details p {
    color: #c0c0c0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-details i {
    color: var(--primary-color);
    width: 20px;
    font-size: 0.85rem;
}

.contact-details a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
}

.social-title::after {
    display: none !important;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

/* Individual social media colors */
.social-icon.facebook:hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-icon.facebook::before {
    background: #1877F2;
}

.social-icon.twitter:hover {
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

.social-icon.twitter::before {
    background: #1DA1F2;
}

.social-icon.instagram:hover {
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.social-icon.instagram::before {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.linkedin:hover {
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

.social-icon.linkedin::before {
    background: #0077B5;
}

.social-icon.youtube:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.social-icon.youtube::before {
    background: #FF0000;
}

/* Responsive social media */
@media (max-width: 767px) {
    .social-media-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.7rem;
    padding-left: 0;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.footer-list li i.fas.fa-chevron-right,
.footer-list li i.fas.fa-external-link-alt {
    color: var(--primary-color);
    font-size: 0.7rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-list li:hover i.fas.fa-chevron-right,
.footer-list li:hover i.fas.fa-external-link-alt {
    transform: translateX(3px);
}

.footer-list.representative-list li {
    position: relative;
    padding: 0.5rem 0;
}

.footer-list.representative-list li span {
    color: #d0d0d0;
    font-weight: 500;
}

.footer-list.representative-list li small {
    color: var(--primary-color);
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

.business-hours {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-block {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-block:last-child {
    border-bottom: none;
}

.hours-block p {
    color: #c0c0c0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.hours-block strong {
    color: #fff;
    font-size: 0.9rem;
}

.hours-block i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.communication-officer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.communication-officer p {
    color: #d0d0d0;
    font-size: 0.85rem;
}

.communication-officer strong {
    color: #fff;
}

.communication-officer small {
    color: var(--primary-color);
}

/* Branch Contact Boxes - Optimized */
.branches-container {
    margin-top: 2rem;
}

.branch-contact-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.branch-contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branch-contact-box:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.branch-contact-box:hover::before {
    opacity: 1;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.branch-icon {
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.branch-title {
    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-title::after {
    display: none !important;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    /* background: rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info p {
    color: #d0d0d0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
    word-break: break-word;
}

.contact-info p:last-of-type {
    margin-bottom: 0;
}

.contact-info a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.contact-info a:hover::after {
    width: 100%;
}

.badge-contact {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Responsive optimizations */
@media (max-width: 991px) {
    .branch-contact-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .branch-icon {
        font-size: 1.75rem;
    }

    .branch-title {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 767px) {
    .branches-container {
        margin-top: 1.5rem;
    }

    .branch-contact-box {
        padding: 1.25rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.875rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-info strong {
        font-size: 0.85rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }
}


footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

body.dark-mode footer a {
    color: #b0b0b0;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.services-list li a i,
.footer-list a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.services-list li:hover a i,
.footer-list li:hover a i {
    transform: scale(1.2);
}

footer p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

body.dark-mode footer p {
    color: #b0b0b0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-copyright p {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
}

body.dark-mode .footer-copyright {
    border-top: none;
}

body.dark-mode .footer-copyright p {
    color: #888;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-widget {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }

    .footer-widget h6 {
        font-size: 0.9rem;
    }

    .footer-contact-info,
    .business-hours {
        padding: 1rem;
    }
}


/* Dark Mode Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

body.dark-mode .theme-toggle {
    color: var(--primary-color);
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

body.dark-mode .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===============================================
   About Page Specific Styles
   =============================================== */

/* Logo SVG for About Page */
.logo-svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

body.dark-mode .brand-name {
    color: #fff;
}

/* About Hero Section */
.about-hero-section {
    padding: 4rem 0;
}

.about-hero-banner {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
}

.hero-content-about {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-content-about h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-content-about h2 {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-content-about h1 {
        font-size: 3rem;
    }

    .hero-content-about h2 {
        font-size: 1.25rem;
    }
}

/* About Mission Section */
.about-mission-section {
    padding: 4rem 0;
}

.value-card-about {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

body.dark-mode .value-card-about {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.value-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon-about {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.value-card-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

body.dark-mode .value-card-about h3 {
    color: #fff;
}

.value-card-about p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

body.dark-mode .value-card-about p {
    color: #adb5bd;
}

/* Timeline Section */
.about-timeline-section {
    padding: 4rem 0;
}

.about-timeline-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

body.dark-mode .about-timeline-section h2 {
    color: #fff;
}

.timeline-container-about {
    position: relative;
    margin-top: 3rem;
}

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

body.dark-mode .timeline-line-about {
    background: var(--border-dark);
}

.timeline-content-about {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: #fff;
    width: 100%;
    max-width: 400px;
}

body.dark-mode .timeline-content-about {
    background: rgba(10, 14, 39, 0.5);
    border-color: var(--border-dark);
}

.timeline-year {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-content-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark-mode .timeline-content-about h3 {
    color: #fff;
}

.timeline-content-about p:not(.timeline-year) {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

body.dark-mode .timeline-content-about p:not(.timeline-year) {
    color: #adb5bd;
}

.timeline-dot-about {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    position: relative;
    z-index: 1;
    margin: 1rem 0;
}

body.dark-mode .timeline-dot-about {
    border-color: var(--bg-dark);
}

@media (min-width: 768px) {
    .timeline-dot-about {
        margin: 0;
    }
}

/* Team Section */
.about-team-section {
    padding: 4rem 0;
}

.team-member-about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-about .team-img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member-about h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

body.dark-mode .team-member-about h3 {
    color: #fff;
}

.team-member-about p {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin: 0;
}

/* CTA Section - About Page */
.about-cta-section {
    padding: 4rem 0;
}

.about-cta-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

body.dark-mode .about-cta-box {
    background: rgba(10, 14, 39, 0.8);
}

.about-cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

body.dark-mode .about-cta-box h2 {
    color: #fff;
}

.about-cta-box p {
    font-size: 1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .about-cta-box p {
    color: #adb5bd;
}

.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-light);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

body.dark-mode .btn-outline-secondary {
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.btn-outline-secondary:hover {
    background-color: #e9ecef;
}

body.dark-mode .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.footer-logo h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 700;
}

/* ===================================
   NOTICE PAGE STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

body.dark-mode .page-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.notice-stats .stat-item {
    padding: 10px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

body.dark-mode .notice-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.notice-stats .stat-item:hover {
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb-section {
    border-bottom: 1px solid var(--border-light);
}

body.dark-mode .breadcrumb-section {
    background-color: rgba(10, 14, 39, 0.5) !important;
    border-bottom: 1px solid var(--border-dark);
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.breadcrumb-item.active {
    color: var(--text-light);
}

body.dark-mode .breadcrumb-item.active {
    color: var(--text-dark);
}

/* Search & Filter Section */
.search-filter-section {
    border-bottom: 1px solid var(--border-light);
}

body.dark-mode .search-filter-section {
    background-color: rgba(10, 14, 39, 0.3) !important;
    border-bottom: 1px solid var(--border-dark);
}

.search-filter-section .form-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark-mode .search-filter-section .form-label {
    color: var(--text-dark);
}

.search-filter-section .input-group-text {
    border-right: none;
    background-color: white;
}

body.dark-mode .search-filter-section .input-group-text {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.search-filter-section .form-control {
    border-left: none;
    padding: 0.625rem 1rem;
}

.search-filter-section .input-group:focus-within .input-group-text,
.search-filter-section .input-group:focus-within .form-control {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

body.dark-mode .search-filter-section .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .search-filter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-filter-section input[type="date"] {
    color: var(--text-light);
}

body.dark-mode .search-filter-section input[type="date"] {
    color: var(--text-dark);
    color-scheme: dark;
}

/* Category Filter Chips */
.category-filter {
    border-bottom: 1px solid var(--border-light);
    background-color: white;
}

body.dark-mode .category-filter {
    background-color: rgba(10, 14, 39, 0.5);
    border-bottom: 1px solid var(--border-dark);
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-chip:hover {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-chip.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.category-chip .material-symbols-outlined {
    font-size: 18px;
}

body.dark-mode .category-chip {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .category-chip:hover {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .category-chip.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Notice Cards */
.notices-section {
    background-color: var(--bg-light);
}

body.dark-mode .notices-section {
    background-color: var(--bg-dark);
}

.notice-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

body.dark-mode .notice-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
}

body.dark-mode .notice-card:hover {
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2) !important;
}

.notice-card .card-title {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.notice-card:hover .card-title {
    color: var(--primary-color);
}

body.dark-mode .notice-card .card-title {
    color: var(--text-dark);
}

body.dark-mode .notice-card:hover .card-title {
    color: var(--primary-color);
}

/* Notice Badges */
.notice-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-regulatory {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.badge-maintenance {
    background-color: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.badge-market {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge-corporate {
    background-color: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

body.dark-mode .badge-regulatory {
    background-color: rgba(13, 110, 253, 0.2);
    color: #6ea8fe;
}

body.dark-mode .badge-maintenance {
    background-color: rgba(253, 126, 20, 0.2);
    color: #fd9843;
}

body.dark-mode .badge-market {
    background-color: rgba(25, 135, 84, 0.2);
    color: #75b798;
}

body.dark-mode .badge-corporate {
    background-color: rgba(111, 66, 193, 0.2);
    color: #a98eda;
}

/* Notice Date */
.notice-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

.notice-date .material-symbols-outlined {
    font-size: 16px;
}

/* Notice Card Buttons */
.notice-card .btn-outline-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    white-space: nowrap;
}

.notice-card .btn-outline-warning .material-symbols-outlined {
    font-size: 18px;
}

.notice-card .btn-link {
    text-decoration: none;
    padding: 0;
    font-weight: 500;
}

.notice-card .btn-link .material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.notice-card .btn-link:hover .material-symbols-outlined {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    gap: 8px;
}

.pagination .page-link {
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--text-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: var(--border-light);
    color: var(--text-light);
    opacity: 0.5;
}

.pagination .page-link .material-symbols-outlined {
    font-size: 20px;
}

body.dark-mode .pagination .page-link {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .pagination .page-link:hover {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

body.dark-mode .pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: var(--border-dark);
    color: var(--text-dark);
    opacity: 0.5;
}

/* Responsive Adjustments for Notice Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .notice-stats {
        justify-content: center !important;
    }

    .category-chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .notice-card .card-body {
        padding: 1rem;
    }

    .notice-card .card-title {
        font-size: 1.1rem;
    }

    .notice-card .btn-outline-warning {
        width: 100%;
        justify-content: center;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }

    .pagination .page-link {
        padding: 6px 10px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .page-header .lead {
        font-size: 1rem;
    }

    .notice-stats .stat-item {
        padding: 8px 16px;
    }

    .notice-stats .h3 {
        font-size: 1.5rem;
    }

    .search-filter-section .col-lg-1 .btn {
        padding: 0.625rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .lead {
        font-size: 1rem;
    }

    .cta-section form {
        flex-direction: column;
    }

    .cta-section .btn-dark {
        width: 100%;
    }
}

/* Material Symbols Outlined - Notice Page Icons */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    vertical-align: middle;
}

/* Smooth Transitions */
.notice-card,
.category-chip,
.pagination .page-link,
.notice-card .btn-link,
.notice-stats .stat-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   NEWSLETTER PAGE STYLES
   =================================== */

/* Newsletter Hero Section */
.newsletter-hero {
    background: linear-gradient(135deg, #0a1928 0%, #1a2f42 100%);
    position: relative;
}

body.dark-mode .newsletter-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2f42 100%);
}

.newsletter-hero .hero-content {
    background: linear-gradient(135deg,
            rgba(10, 25, 40, 0.7) 0%,
            rgba(10, 25, 40, 0.9) 100%),
        url('https://lh3.googleusercontent.com/aida-public/AB6AXuBCNlVJrJv3CB5IWxR4xQT2EQAZN9JaEdIvDoxlvGsvlzcgWKpKgjo3s_QCk6MT094U17RwnX7zfrvumCcQP6jSvGBtKIwrrXk9RvM-SJXg0TM9A2lKpG8iSQGFdN8LXfiPnLJMrGGGnsqvGCcrQHqGFis76gsK3WSpPZ7_xq4L9Zv10tD1yFqQiKAqz0CMETgtu1beeg_nb5kSElo5A9A4SmQYdZkCmrAzG-Jv0T6yBroft8NNiFqed2ND1j78w8RuRqtttXXrqJqP');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-hero h1,
.newsletter-hero h2,
.newsletter-hero p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Newsletter Subscribe Form */
.newsletter-subscribe-form .input-group-text {
    border-right: none;
    background-color: white;
}

body.dark-mode .newsletter-subscribe-form .input-group-text {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-subscribe-form .form-control {
    border-left: none;
    border-right: none;
}

body.dark-mode .newsletter-subscribe-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

body.dark-mode .newsletter-subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-subscribe-form .input-group:focus-within .input-group-text,
.newsletter-subscribe-form .input-group:focus-within .form-control {
    border-color: var(--primary-color);
}

.newsletter-subscribe-form .btn-warning {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Newsletter Archive Section */
.newsletter-archive {
    background-color: var(--bg-light);
    min-height: 60vh;
}

body.dark-mode .newsletter-archive {
    background-color: var(--bg-dark);
}

/* Newsletter Cards */
.newsletter-card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.newsletter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

body.dark-mode .newsletter-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
}

body.dark-mode .newsletter-card:hover {
    box-shadow: 0 12px 28px rgba(255, 193, 7, 0.2) !important;
}

.newsletter-image {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.newsletter-card:hover .newsletter-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.newsletter-card .card-body {
    padding: 1.5rem;
}

.newsletter-card .card-title {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 2.8rem;
}

.newsletter-card:hover .card-title {
    color: var(--primary-color);
}

body.dark-mode .newsletter-card .card-title {
    color: var(--text-dark);
}

body.dark-mode .newsletter-card:hover .card-title {
    color: var(--primary-color);
}

/* Newsletter Badge */
.newsletter-badge {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

body.dark-mode .newsletter-badge {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
}

/* Newsletter Date */
.newsletter-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

.newsletter-date .material-symbols-outlined {
    font-size: 16px;
}

/* Newsletter Card Text */
.newsletter-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .newsletter-card .card-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Newsletter Read More Link */
.newsletter-card .btn-link {
    text-decoration: none;
    padding: 0;
    font-weight: 600;
}

.newsletter-card .btn-link .material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.newsletter-card .btn-link:hover .material-symbols-outlined {
    transform: translateX(5px);
}

/* Search and Filter Controls */
.newsletter-archive .input-group-text {
    background-color: white;
    border-right: none;
}

body.dark-mode .newsletter-archive .input-group-text {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.newsletter-archive .form-control {
    border-left: none;
}

body.dark-mode .newsletter-archive .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .newsletter-archive .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-archive .btn-outline-secondary {
    border-color: var(--border-light);
}

body.dark-mode .newsletter-archive .btn-outline-secondary {
    border-color: var(--border-dark);
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .newsletter-archive .btn-outline-secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Newsletter Item Animations */
.newsletter-item {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* No Results Message */
#noResults.d-none {
    display: none !important;
}

#noResults .material-symbols-outlined {
    display: block;
    margin: 0 auto;
}

/* Pagination Styling */
.newsletter-archive .pagination .page-link {
    border-radius: 8px;
    padding: 8px 14px;
    color: var(--text-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-archive .pagination .page-link:hover {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.newsletter-archive .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.newsletter-archive .pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: var(--border-light);
    color: var(--text-light);
    opacity: 0.5;
}

.newsletter-archive .pagination .page-link .material-symbols-outlined {
    font-size: 20px;
}

body.dark-mode .newsletter-archive .pagination .page-link {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .newsletter-archive .pagination .page-link:hover {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .newsletter-archive .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

body.dark-mode .newsletter-archive .pagination .page-item.disabled .page-link {
    background-color: transparent;
    border-color: var(--border-dark);
    color: var(--text-dark);
    opacity: 0.5;
}

/* Responsive Adjustments for Newsletter Page */
@media (max-width: 768px) {
    .newsletter-hero h1 {
        font-size: 2rem;
    }

    .newsletter-hero .lead {
        font-size: 1rem;
    }

    .newsletter-subscribe-form .input-group {
        flex-direction: column;
    }

    .newsletter-subscribe-form .input-group-text,
    .newsletter-subscribe-form .form-control,
    .newsletter-subscribe-form .btn {
        border-radius: 0.5rem !important;
        border: 1px solid var(--border-light) !important;
    }

    body.dark-mode .newsletter-subscribe-form .input-group-text,
    body.dark-mode .newsletter-subscribe-form .form-control,
    body.dark-mode .newsletter-subscribe-form .btn {
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    .newsletter-subscribe-form .btn {
        margin-top: 0.5rem;
    }

    .newsletter-card .card-title {
        font-size: 1rem;
        min-height: auto;
    }

    .newsletter-archive .row.align-items-center {
        text-align: center;
    }

    .newsletter-archive .d-flex.gap-2 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-hero .hero-content {
        padding: 2rem 1rem !important;
        min-height: 300px;
    }

    .newsletter-hero h1 {
        font-size: 1.75rem;
    }

    .newsletter-hero .lead {
        font-size: 0.9rem;
    }

    .newsletter-card .card-body {
        padding: 1rem;
    }

    .newsletter-archive .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }

    .newsletter-archive .pagination .page-link {
        padding: 6px 10px;
        font-size: 0.875rem;
    }
}

/* Smooth Transitions */
.newsletter-card,
.newsletter-card .newsletter-image,
.newsletter-card .btn-link,
.newsletter-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading State (Optional) */
.newsletter-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.newsletter-card.skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===================================
   COMMISSION PAGE STYLES
   =================================== */

/* Commission Page Header */
.commission-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

body.dark-mode .commission-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.commission-header h1 {
    color: var(--text-light);
}

body.dark-mode .commission-header h1 {
    color: var(--text-dark);
}

/* Highlight Card */
.commission-highlight-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-left: 4px solid var(--primary-color) !important;
    transition: all 0.3s ease;
}

.commission-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2) !important;
}

body.dark-mode .commission-highlight-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.08) 100%);
    border-left: 4px solid var(--primary-color) !important;
}

body.dark-mode .commission-highlight-card:hover {
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3) !important;
}

.commission-highlight-card .card-body h3 {
    color: var(--text-light);
}

body.dark-mode .commission-highlight-card .card-body h3 {
    color: var(--text-dark);
}

/* Commission Tables */
.commission-table-card {
    overflow: hidden;
    border-radius: 12px;
}

body.dark-mode .commission-table-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
}

.commission-table {
    margin-bottom: 0;
}

.commission-table thead {
    background-color: #f8f9fa;
}

body.dark-mode .commission-table thead {
    background-color: rgba(255, 255, 255, 0.05);
}

.commission-table thead th {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
    border: none;
}

body.dark-mode .commission-table thead th {
    color: var(--text-dark);
}

.commission-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text-light);
    vertical-align: middle;
}

body.dark-mode .commission-table tbody td {
    color: rgba(255, 255, 255, 0.7);
    border-color: var(--border-dark);
}

.commission-table tbody tr {
    transition: all 0.2s ease;
}

.commission-table tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.05);
}

body.dark-mode .commission-table tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.commission-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

body.dark-mode .commission-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.commission-table .fw-semibold {
    color: var(--text-light);
}

body.dark-mode .commission-table .fw-semibold {
    color: var(--text-dark);
}

/* Responsive Table */
.table-responsive {
    border-radius: 12px;
}

@media (max-width: 768px) {

    .commission-table thead th,
    .commission-table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .commission-table thead th {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {

    .commission-table thead th,
    .commission-table tbody td {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .commission-table thead th {
        font-size: 0.7rem;
    }
}

/* Accordion Styles */
.commission-accordion {
    --bs-accordion-border-color: var(--border-light);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

body.dark-mode .commission-accordion {
    --bs-accordion-border-color: var(--border-dark);
    --bs-accordion-bg: rgba(255, 255, 255, 0.05);
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.05);
    --bs-accordion-active-bg: rgba(255, 193, 7, 0.1);
    --bs-accordion-active-color: var(--text-dark);
}

.commission-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-mode .commission-accordion .accordion-item {
    border-color: var(--border-dark);
    background-color: rgba(255, 255, 255, 0.05);
}

.commission-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .commission-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.commission-accordion .accordion-button {
    font-weight: 600;
    color: var(--text-light);
    padding: 1.25rem 1.5rem;
    background-color: white;
    border: none;
}

body.dark-mode .commission-accordion .accordion-button {
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.05);
}

.commission-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

body.dark-mode .commission-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--primary-color);
}

.commission-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    border-color: var(--primary-color);
}

.commission-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

body.dark-mode .commission-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e9ecef'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.commission-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

body.dark-mode .commission-accordion .accordion-body {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.02);
}


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

body.dark-mode section.bg-light {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Responsive Adjustments for Commission Page */
@media (max-width: 768px) {
    .commission-header h1 {
        font-size: 2rem;
    }

    .commission-highlight-card .card-body {
        padding: 1rem;
    }

    .commission-highlight-card h3 {
        font-size: 1.1rem;
    }

    .commission-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .commission-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .commission-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .commission-header h1 {
        font-size: 1.75rem;
    }

    .commission-highlight-card .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .commission-highlight-card .material-symbols-outlined {
        font-size: 48px !important;
    }

    .commission-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
}

/* Smooth Transitions */
.commission-highlight-card,
.commission-table tbody tr,
.commission-accordion .accordion-item,
.cta-section .btn-dark {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Table Striping Enhancement */
.commission-table tbody tr:nth-child(odd) {
    position: relative;
}

.commission-table tbody tr:nth-child(odd)::before {
    /* content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 3px;
    background: transparent;
    transition: background 0.3s ease; */
}

.commission-table tbody tr:nth-child(odd):hover::before {
    background: var(--primary-color);
}

/* Free Badge Styling */
.commission-table .text-success {
    font-weight: 700;
    color: #198754 !important;
}

body.dark-mode .commission-table .text-success {
    color: #75b798 !important;
}

/* Print Styles */
@media print {

    .navbar,
    .cta-section,
    footer,
    #themeToggle {
        display: none !important;
    }

    .commission-table {
        page-break-inside: avoid;
    }

    .commission-accordion .accordion-collapse {
        display: block !important;
        height: auto !important;
    }

    .commission-accordion .accordion-button::after {
        display: none;
    }
}

/* =================================================
   Events Page Styles
   ================================================= */

/* Events Header Section */
.events-header {
    background-color: #fff;
}

body.dark-mode .events-header {
    background-color: #1a1f3a;
}

/* Featured Event Section */
.featured-event {
    background-color: var(--bg-light);
}

body.dark-mode .featured-event {
    background-color: var(--bg-dark);
}

.featured-event-card {
    position: relative;
    min-height: 400px;
    background-color: #000;
}

.featured-event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.featured-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.featured-event-content {
    z-index: 3;
}

.event-featured-badge {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 6px 16px;
    font-size: 0.875rem;
    display: inline-block;
}

.featured-event-content h2 {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .featured-event-content h2 {
        font-size: 2.5rem;
    }
}

/* Events Filter Section */
.events-filters {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

body.dark-mode .events-filters {
    background-color: #1a1f3a !important;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.event-tabs {
    box-shadow: none;
}

.event-tabs .btn {
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.event-tabs .btn.active {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.event-tabs .btn:not(.active) {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

body.dark-mode .event-tabs .btn:not(.active) {
    color: var(--primary-color);
}

.event-tabs .btn:not(.active):hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Events Section */
.events-section {
    background-color: #fff;
}

body.dark-mode .events-section {
    background-color: #1a1f3a;
}

/* Event Card Styles - Enhanced */
.event-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd54f);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.event-card:hover::before {
    opacity: 1;
}

body.dark-mode .event-card {
    background-color: #0d1228;
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .event-card:hover {
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2) !important;
}

.event-image-wrapper {
    position: relative;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.event-card:hover .event-image {
    transform: scale(1.08);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #ffd54f);
    color: #fff;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    min-width: 60px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.event-category {
    display: flex;
    align-items: center;
}

.event-badge-custom {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    color: var(--primary-color);
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-mode .event-badge-custom {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 193, 7, 0.4);
}

.event-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}

.badge-webinar {
    background-color: #e3f2fd;
    color: #1976d2;
}

body.dark-mode .badge-webinar {
    background-color: rgba(25, 118, 210, 0.2);
    color: #64b5f6;
}

.badge-seminar {
    background-color: #e8f5e9;
    color: #2e7d32;
}

body.dark-mode .badge-seminar {
    background-color: rgba(46, 125, 50, 0.2);
    color: #81c784;
}

.event-card .card-body {
    padding: 1.5rem;
}

.event-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #1a1f3a;
    font-weight: 700;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card:hover .card-title {
    color: var(--primary-color);
}

body.dark-mode .event-card .card-title {
    color: #fff;
}

body.dark-mode .event-card:hover .card-title {
    color: var(--primary-color);
}

.event-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .event-card .card-text {
    color: #adb5bd;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.875rem;
}

.event-meta .material-symbols-outlined {
    font-size: 18px;
}

.event-card .card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.btn-event-detail {
    background: linear-gradient(135deg, var(--primary-color), #ffd54f);
    color: #1a1f3a;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-event-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd54f, var(--primary-color));
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-event-detail:hover::before {
    left: 0;
}

.btn-event-detail span,
.btn-event-detail i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-event-detail:hover {
    color: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-event-detail:hover i {
    transform: translateX(5px);
}

body.dark-mode .btn-event-detail {
    color: #1a1f3a;
}

body.dark-mode .btn-event-detail:hover {
    color: #1a1f3a;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

/* Animation for Event Items */
.event-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.event-item:nth-child(1) {
    animation-delay: 0.1s;
}

.event-item:nth-child(2) {
    animation-delay: 0.2s;
}

.event-item:nth-child(3) {
    animation-delay: 0.3s;
}

.event-item:nth-child(4) {
    animation-delay: 0.4s;
}

.event-item:nth-child(5) {
    animation-delay: 0.5s;
}

.event-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Input */
#eventSearch {
    border-left: none;
    padding: 10px 16px;
}

#eventSearch:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.input-group-text {
    border-right: none;
}

body.dark-mode #eventSearch {
    background-color: #0d1228;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode .input-group-text {
    background-color: #0d1228;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

/* No Events Message */
#noEvents .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-event-card {
        min-height: 350px;
    }

    .featured-event-content {
        padding: 2rem 1.5rem !important;
    }

    .featured-event-content h2 {
        font-size: 1.5rem;
    }

    .event-tabs {
        width: 100%;
    }

    .event-tabs .btn {
        font-size: 0.875rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .events-header h1 {
        font-size: 2rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 4px;
    }
}

/* =================================================
   Event Detail Page Styles
   ================================================= */

/* Event Detail Hero */
.event-detail-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.event-detail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.event-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.event-detail-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.event-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
}

.event-detail-content h1 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.event-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.meta-item .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
    padding: 0.5rem;
    border-radius: 10px;
}

.meta-item div {
    flex: 1;
}

.meta-item strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffc107;
    margin-bottom: 0.25rem;
}

.meta-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/* Event Info Section */
.event-info-section {
    background: #f8f9fa;
}

body.dark-mode .event-info-section {
    background: #0d1228;
}

.event-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-mode .event-content-card {
    background: #1a1f3a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.event-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.event-content-card h2 {
    color: #212529;
}

body.dark-mode .event-content-card h2 {
    color: #f8f9fa;
}

.event-content-card p {
    color: #6c757d;
    line-height: 1.8;
}

body.dark-mode .event-content-card p {
    color: #adb5bd;
}

.event-details-list {
    list-style: none;
    padding: 0;
}

.event-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

body.dark-mode .event-details-list li {
    border-bottom-color: #343a40;
}

.event-details-list li:last-child {
    border-bottom: none;
}

.event-details-list .material-icons-outlined {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Learning Items */
.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

body.dark-mode .learning-item {
    background: #0d1228;
}

.learning-item:hover {
    background: #ffc107;
    transform: translateX(10px);
}

body.dark-mode .learning-item:hover {
    background: #ffc107;
}

.learning-item:hover h5,
.learning-item:hover p {
    color: #000;
}

.learning-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learning-icon .material-icons-outlined {
    font-size: 1.75rem;
    color: #000;
}

.learning-icon-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.learning-icon-success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.learning-icon-success .material-icons-outlined {
    color: #fff;
}

.learning-icon-danger {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
}

.learning-icon-danger .material-icons-outlined {
    color: #fff;
}

.learning-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

body.dark-mode .learning-item h5 {
    color: #f8f9fa;
}

/* Speaker Cards */
.speaker-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

body.dark-mode .speaker-card {
    background: #0d1228;
}

.speaker-card:hover {
    background: #fff8e1;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

body.dark-mode .speaker-card:hover {
    background: #1a1f3a;
}

.speaker-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 3px solid #ffc107;
}

.speaker-info h5 {
    color: #212529;
}

body.dark-mode .speaker-info h5 {
    color: #f8f9fa;
}

.speaker-info .text-warning {
    color: #ffc107 !important;
}

/* Agenda Timeline */
.agenda-timeline {
    position: relative;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ffc107 0%, #ffc107 100%);
}

body.dark-mode .agenda-timeline::before {
    background: linear-gradient(to bottom, #ffc107 0%, #ffc107 100%);
}

.agenda-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.agenda-item:last-child {
    margin-bottom: 0;
}

.agenda-time {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    color: #ffc107;
    font-size: 1.125rem;
    position: relative;
}

.agenda-time::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc107;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

body.dark-mode .agenda-time::after {
    border-color: #1a1f3a;
}

.agenda-content {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

body.dark-mode .agenda-content {
    background: #0d1228;
}

.agenda-content:hover {
    background: #fff8e1;
    transform: translateX(10px);
}

body.dark-mode .agenda-content:hover {
    background: #212529;
}

.agenda-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

body.dark-mode .agenda-content h5 {
    color: #f8f9fa;
}

/* Sidebar */
.event-sidebar-card {
    top: 100px;
}

.registration-info {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

body.dark-mode .registration-info {
    border-color: #343a40;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.info-row .material-icons-outlined {
    font-size: 1.5rem;
}

.info-row span:last-child {
    font-weight: 500;
    color: #212529;
}

body.dark-mode .info-row span:last-child {
    color: #f8f9fa;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.share-btn {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-5px);
}

.share-btn-facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn-facebook:hover {
    background: #0d63d8;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.share-btn-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn-twitter:hover {
    background: #0d8dd8;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.share-btn-linkedin {
    background: #0a66c2;
    color: #fff;
}

.share-btn-linkedin:hover {
    background: #084f99;
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

.share-btn-email {
    background: #6c757d;
    color: #fff;
}

.share-btn-email:hover {
    background: #5a6268;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Related Events */
.related-event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

body.dark-mode .related-event-item {
    border-bottom-color: #343a40;
}

.related-event-item:last-of-type {
    border-bottom: none;
}

.related-event-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.related-event-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

body.dark-mode .related-event-content h6 {
    color: #f8f9fa;
}

.related-event-content .badge-sm {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Event CTA Section */
.event-cta-section {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

.event-cta-section h2,
.event-cta-section p {
    color: #000;
}

.event-cta-section .btn-dark {
    background: #000;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-cta-section .btn-dark:hover {
    background: #212529;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Event Detail */
@media (max-width: 991px) {
    .event-detail-hero {
        min-height: 450px;
        padding: 3rem 0;
    }

    .event-detail-content h1 {
        font-size: 2.5rem;
    }

    .event-detail-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .event-content-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .event-sidebar-card {
        position: static !important;
    }

    .agenda-timeline::before {
        left: 55px;
    }

    .agenda-time {
        width: 80px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .event-detail-hero {
        min-height: 400px;
        padding: 2rem 0;
    }

    .event-detail-content h1 {
        font-size: 1.75rem;
    }

    .event-detail-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .event-detail-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .meta-item .material-icons-outlined {
        font-size: 2rem;
        padding: 0.4rem;
    }

    .event-content-card {
        padding: 1.5rem;
    }

    .event-content-card h2 {
        font-size: 1.5rem;
    }

    .learning-item {
        padding: 1rem;
    }

    .learning-icon {
        width: 40px;
        height: 40px;
    }

    .learning-icon .material-icons-outlined {
        font-size: 1.5rem;
    }

    .speaker-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .speaker-image {
        width: 120px;
        height: 120px;
    }

    .agenda-timeline::before {
        display: none;
    }

    .agenda-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .agenda-time {
        width: 100%;
    }

    .agenda-time::after {
        display: none;
    }

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

    .event-cta-section h2 {
        font-size: 1.5rem;
    }

    .event-cta-section .btn-dark {
        width: 100%;
    }
}

/* =================================================
   Blog Page Styles
   ================================================= */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .blog-header {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1228 100%);
}

.blog-header h1 {
    color: #212529;
}

body.dark-mode .blog-header h1 {
    color: #f8f9fa;
}

.blog-header-illustration {
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

body.dark-mode .blog-header-illustration svg rect[fill="#ffffff"] {
    fill: #212529;
}

body.dark-mode .blog-header-illustration svg rect[fill="#f8f9fa"] {
    fill: #1a1f3a;
}

body.dark-mode .blog-header-illustration svg rect[fill="#e9ecef"] {
    fill: #495057;
}

/* Featured Blog Section */
.featured-blog-section {
    background: #ffffff;
}

body.dark-mode .featured-blog-section {
    background: #0d1228;
}

.featured-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 193, 7, 0.1);
}

body.dark-mode .featured-blog-card {
    background: #1a1f3a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.2);
}

.featured-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2);
}

.featured-blog-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-blog-content {
    padding: 3rem;
}

.blog-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

.featured-blog-content h2 {
    color: #212529;
    line-height: 1.3;
}

body.dark-mode .featured-blog-content h2 {
    color: #f8f9fa;
}

.featured-blog-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
}

body.dark-mode .featured-blog-content p {
    color: #adb5bd;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.95rem;
}

body.dark-mode .meta-item {
    color: #adb5bd;
}

.meta-item .material-icons-outlined {
    font-size: 1.25rem;
    color: #ffc107;
}

/* Blog Filters Section */
.blog-filters-section {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

body.dark-mode .blog-filters-section {
    background: #1a1f3a !important;
    border-bottom-color: #343a40;
}

.blog-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-category-tabs .btn {
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #ffc107;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-category-tabs .btn.active {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.blog-category-tabs .btn:not(.active) {
    background: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.blog-category-tabs .btn:not(.active):hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-2px);
}

.blog-search .input-group-text {
    border-right: none;
}

.blog-search .form-control {
    border-left: none;
    padding: 0.65rem 1rem;
}

.blog-search .form-control:focus {
    box-shadow: none;
    border-color: #ffc107;
}

.blog-search .input-group-text {
    background: #fff;
}

body.dark-mode .blog-search .form-control,
body.dark-mode .blog-search .input-group-text {
    background: #0d1228;
    border-color: #343a40;
    color: #f8f9fa;
}

/* Blog Grid Section */
.blog-grid-section {
    background: #ffffff;
}

body.dark-mode .blog-grid-section {
    background: #0d1228;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

body.dark-mode .blog-card {
    background: #1a1f3a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
}

.blog-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-tutorial {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
}

.badge-guide {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    color: #fff;
}

.badge-tips {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-date,
.meta-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6c757d;
    font-size: 0.875rem;
}

body.dark-mode .meta-date,
body.dark-mode .meta-read-time {
    color: #adb5bd;
}

.meta-date .material-icons-outlined,
.meta-read-time .material-icons-outlined {
    font-size: 1rem;
    color: #ffc107;
}

.blog-card-title {
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: #212529;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

body.dark-mode .blog-card-title a {
    color: #f8f9fa;
}

.blog-card-title a:hover {
    color: #ffc107;
}

.blog-card-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .blog-card-excerpt {
    color: #adb5bd;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

body.dark-mode .blog-card-footer {
    border-top-color: #343a40;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: #ffb300;
    transform: translateX(5px);
}

.btn-read-more .material-icons-outlined {
    font-size: 1.25rem;
}

.blog-engagement {
    display: flex;
    gap: 1rem;
}

.engagement-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6c757d;
    font-size: 0.875rem;
}

body.dark-mode .engagement-item {
    color: #adb5bd;
}

.engagement-item .material-icons-outlined {
    font-size: 1.1rem;
    color: #ffc107;
}

/* Blog Item Animation */
.blog-item {
    animation: fadeInUp 0.6s ease-out;
}

.blog-item:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-item:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-item:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-item:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-item:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Blog Newsletter Section */
.blog-newsletter-section {
    background: #f8f9fa;
}

body.dark-mode .blog-newsletter-section {
    background: #1a1f3a;
}

.blog-newsletter-card {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    }

    50% {
        box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    }
}

.blog-newsletter-card h2,
.blog-newsletter-card p {
    color: #000;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    background: #000;
    border: none;
    color: #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #212529;
    color: #fff;
    transform: translateY(-2px);
}

.newsletter-form .btn .material-icons-outlined {
    font-size: 1.25rem;
}

/* Responsive Design for Blog Page */
@media (max-width: 991px) {
    .blog-header {
        padding: 3rem 0 !important;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-header-illustration {
        margin-top: 2rem;
    }

    .featured-blog-image {
        height: 300px;
    }

    .featured-blog-content {
        padding: 2rem;
    }

    .blog-category-tabs {
        width: 100%;
        justify-content: center;
    }

    .blog-newsletter-card {
        padding: 2rem;
    }

    .blog-newsletter-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .featured-blog-image {
        height: 250px;
    }

    .featured-blog-content {
        padding: 1.5rem;
    }

    .featured-blog-content h2 {
        font-size: 1.5rem;
    }

    .featured-blog-content p {
        font-size: 1rem;
    }

    .blog-meta {
        gap: 1rem;
    }

    .blog-category-tabs .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-title a {
        font-size: 1.15rem;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .blog-newsletter-card {
        padding: 1.5rem;
    }

    .blog-newsletter-card h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .newsletter-form .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =================================================
   Blog Detail Page Styles
   ================================================= */

/* Blog Detail Hero */
.blog-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body.dark-mode .blog-detail-hero {
    background: linear-gradient(135deg, #0d1228 0%, #1a1f3a 100%);
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-header h1 {
    color: #212529;
    line-height: 1.2;
}

body.dark-mode .blog-detail-header h1 {
    color: #f8f9fa;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #ffc107;
}

.author-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-details strong {
    color: #212529;
    font-size: 1rem;
}

body.dark-mode .author-details strong {
    color: #f8f9fa;
}

.author-details span {
    color: #6c757d;
    font-size: 0.875rem;
}

body.dark-mode .author-details span {
    color: #adb5bd;
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: #dee2e6;
}

body.dark-mode .meta-divider {
    background: #495057;
}

.meta-info-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.95rem;
}

body.dark-mode .meta-info-item {
    color: #adb5bd;
}

.meta-info-item .material-icons-outlined {
    font-size: 1.25rem;
    color: #ffc107;
}

/* Featured Image */
.blog-featured-image-section {
    background: #ffffff;
}

body.dark-mode .blog-featured-image-section {
    background: #0d1228;
}

.blog-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .blog-featured-image {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Blog Content Section */
.blog-content-section {
    background: #ffffff;
}

body.dark-mode .blog-content-section {
    background: #0d1228;
}

.blog-article-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.dark-mode .blog-article-content {
    background: #1a1f3a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.article-section .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #495057;
    font-weight: 400;
}

body.dark-mode .article-section .lead {
    color: #adb5bd;
}

.article-section p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

body.dark-mode .article-section p {
    color: #adb5bd;
}

/* Article Headings */
.article-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #212529;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

body.dark-mode .article-heading {
    color: #f8f9fa;
}

.heading-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    margin: 2rem 0;
}

body.dark-mode .info-box {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.info-box .material-icons-outlined {
    color: #ffc107;
    font-size: 2rem;
    flex-shrink: 0;
}

.info-box strong {
    color: #212529;
    display: block;
    margin-bottom: 0.5rem;
}

body.dark-mode .info-box strong {
    color: #f8f9fa;
}

.info-box p {
    margin: 0;
    color: #495057;
}

body.dark-mode .info-box p {
    color: #adb5bd;
}

/* Article List */
.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #495057;
    font-size: 1.05rem;
}

body.dark-mode .article-list li {
    color: #adb5bd;
}

.article-list .material-icons-outlined {
    color: #198754;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Step Cards */
.step-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

body.dark-mode .step-card {
    background: #0d1228;
    border-left-color: #ffc107;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-content h4 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

body.dark-mode .step-content h4 {
    color: #f8f9fa;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0.75rem;
}

body.dark-mode .step-content p {
    color: #adb5bd;
}

.step-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.step-content ul li {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

body.dark-mode .step-content ul li {
    color: #adb5bd;
}

/* Accordion Customization */
.accordion-item {
    border: none;
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

body.dark-mode .accordion-item {
    background: #0d1228;
}

.accordion-button {
    background: #f8f9fa;
    color: #212529;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

body.dark-mode .accordion-button {
    background: #0d1228;
    color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background: #ffc107;
    color: #000;
}

body.dark-mode .accordion-button:not(.collapsed) {
    background: #ffc107;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0);
}

body.dark-mode .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    background: #fff;
    color: #6c757d;
}

body.dark-mode .accordion-body {
    background: #1a1f3a;
    color: #adb5bd;
}

/* Tip Cards */
.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

body.dark-mode .tip-card {
    background: #0d1228;
}

.tip-card:hover {
    background: #fff8e1;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

body.dark-mode .tip-card:hover {
    background: rgba(255, 193, 7, 0.1);
}

.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon .material-icons-outlined {
    font-size: 1.75rem;
    color: #000;
}

.tip-icon-success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.tip-icon-success .material-icons-outlined {
    color: #fff;
}

.tip-icon-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.tip-icon-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.tip-icon-warning .material-icons-outlined {
    color: #fff;
}

.tip-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

body.dark-mode .tip-card h5 {
    color: #f8f9fa;
}

.tip-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Article Tags */
.article-tags {
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

body.dark-mode .article-tags {
    border-top-color: #343a40;
}

.article-tags h6 {
    color: #212529;
    font-weight: 700;
}

body.dark-mode .article-tags h6 {
    color: #f8f9fa;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-badge {
    padding: 0.5rem 1.25rem;
    background: #f8f9fa;
    color: #495057;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.dark-mode .tag-badge {
    background: #0d1228;
    color: #adb5bd;
}

.tag-badge:hover {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

body.dark-mode .article-share {
    border-top-color: #343a40;
}

.article-share h6 {
    color: #212529;
    font-weight: 700;
}

body.dark-mode .article-share h6 {
    color: #f8f9fa;
}

.share-buttons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-btn-article {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn-article:hover {
    transform: translateY(-3px);
}

.share-btn-facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn-facebook:hover {
    background: #0d63d8;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.share-btn-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn-twitter:hover {
    background: #0d8dd8;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.share-btn-linkedin {
    background: #0a66c2;
    color: #fff;
}

.share-btn-linkedin:hover {
    background: #084f99;
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

.share-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.share-btn-copy {
    background: #6c757d;
    color: #fff;
}

.share-btn-copy:hover {
    background: #5a6268;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Sidebar */
.sidebar-card {
    position: relative;
    /* top: 100px; */
}

.sidebar-card .card {
    transition: all 0.3s ease;
}

.sidebar-card .card:hover {
    transform: translateY(-5px);
}

body.dark-mode .sidebar-card .card {
    background: #1a1f3a;
}

body.dark-mode .sidebar-card .card-body {
    color: #f8f9fa;
}

/* Author Card */
.author-card-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #ffc107;
}

.author-card h5 {
    color: #212529;
}

body.dark-mode .author-card h5 {
    color: #f8f9fa;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

body.dark-mode .toc-list a {
    color: #adb5bd;
}

.toc-list a:hover {
    color: #ffc107;
    border-left-color: #ffc107;
    padding-left: 1.5rem;
}

/* Related Posts */
.related-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

body.dark-mode .related-post-item {
    border-bottom-color: #343a40;
}

.related-post-item:last-of-type {
    border-bottom: none;
}

.related-post-image {
    /* width: 80px; */
    height: 250px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.related-post-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h6 a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.dark-mode .related-post-content h6 a {
    color: #f8f9fa;
}

.related-post-content h6 a:hover {
    color: #ffc107;
}

/* Newsletter Card */
.newsletter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.newsletter-icon .material-icons-outlined {
    font-size: 2rem;
    color: #000;
}

.newsletter-mini-form .form-control {
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

body.dark-mode .newsletter-mini-form .form-control {
    background: #0d1228;
    border-color: #343a40;
    color: #f8f9fa;
}

.newsletter-mini-form .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.newsletter-mini-form .btn {
    font-weight: 600;
}

/* Comments Section */
.blog-comments-section {
    background: #f8f9fa;
}

body.dark-mode .blog-comments-section {
    background: #1a1f3a;
}

.blog-comments-section h3 {
    color: #212529;
}

body.dark-mode .blog-comments-section h3 {
    color: #f8f9fa;
}

.comment-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.dark-mode .comment-item {
    background: #0d1228;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 3px solid #ffc107;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.comment-header h6 {
    color: #212529;
    font-weight: 700;
    margin: 0;
}

body.dark-mode .comment-header h6 {
    color: #f8f9fa;
}

.comment-date {
    color: #6c757d;
    font-size: 0.875rem;
}

body.dark-mode .comment-date {
    color: #adb5bd;
}

.comment-content p {
    color: #6c757d;
    line-height: 1.6;
}

body.dark-mode .comment-content p {
    color: #adb5bd;
}

.btn-reply {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #ffc107;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reply:hover {
    color: #ffb300;
    transform: translateX(5px);
}

.btn-reply .material-icons-outlined {
    font-size: 1.125rem;
}

/* Add Comment Form */
.add-comment-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.dark-mode .add-comment-form {
    background: #0d1228;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.add-comment-form h5 {
    color: #212529;
}

body.dark-mode .add-comment-form h5 {
    color: #f8f9fa;
}

.add-comment-form .form-control {
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

body.dark-mode .add-comment-form .form-control {
    background: #1a1f3a;
    border-color: #343a40;
    color: #f8f9fa;
}

.add-comment-form .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* More Articles Section */
.more-articles-section {
    background: #ffffff;
}

body.dark-mode .more-articles-section {
    background: #0d1228;
}

.more-articles-card {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.more-articles-card h2,
.more-articles-card p {
    color: #000;
}

.more-articles-card .btn-dark {
    background: #000;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-articles-card .btn-dark:hover {
    background: #212529;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Blog Detail */
@media (max-width: 991px) {
    .blog-detail-hero {
        padding: 3rem 0 !important;
    }

    .blog-detail-header h1 {
        font-size: 2.5rem;
    }

    .blog-detail-meta {
        gap: 1rem;
    }

    .meta-divider {
        display: none;
    }

    .meta-info-group {
        justify-content: center;
    }

    .blog-article-content {
        padding: 2rem;
    }

    .article-heading {
        font-size: 1.5rem;
    }

    .sidebar-card {
        position: static;
        margin-top: 2rem;
    }

    .more-articles-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .blog-detail-header h1 {
        font-size: 1.75rem;
    }

    .blog-detail-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }

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

    .meta-info-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-article-content {
        padding: 1.5rem;
    }

    .article-section .lead {
        font-size: 1.1rem;
    }

    .article-heading {
        font-size: 1.35rem;
        gap: 0.75rem;
    }

    .heading-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

    .share-buttons-list {
        flex-direction: column;
    }

    .share-btn-article {
        justify-content: center;
    }

    .comment-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .more-articles-card {
        padding: 1.5rem;
    }

    .more-articles-card h2 {
        font-size: 1.5rem;
    }

    .more-articles-card .btn-dark {
        width: 100%;
    }
}

/* =================================================
   Gallery Page Styles
   ================================================= */

/* Gallery Header Section */
.gallery-header {
    background-color: #fff;
}

body.dark-mode .gallery-header {
    background-color: #1a1f3a;
}

/* Gallery Filters Section */
.gallery-filters {
    border-bottom: 1px solid var(--border-light);
}

body.dark-mode .gallery-filters {
    background-color: #1a1f3a !important;
    border-bottom: 1px solid var(--border-dark);
}

.sticky-filters {
    position: sticky;
    top: 83px;
    z-index: 40;
}

.gallery-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-category-tabs .btn {
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.gallery-category-tabs .btn.active {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.gallery-category-tabs .btn:not(.active) {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

body.dark-mode .gallery-category-tabs .btn:not(.active) {
    color: var(--primary-color);
}

.gallery-category-tabs .btn:not(.active):hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
}

body.dark-mode .gallery-section {
    background-color: #1a1f3a;
}

/* Gallery Card Styles */
.gallery-card {
    position: relative;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .gallery-card:hover {
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.25) !important;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-card:hover .gallery-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: white;
    z-index: 2;
}

.gallery-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    line-height: 1.3;
}

.gallery-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
    opacity: 1;
}

.gallery-zoom-icon .material-symbols-outlined {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Gallery Item Animation */
.gallery-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.05s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.15s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.25s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(7) {
    animation-delay: 0.35s;
}

.gallery-item:nth-child(8) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(9) {
    animation-delay: 0.45s;
}

/* Search Input */
#gallerySearch {
    border-left: none;
    padding: 10px 16px;
}

#gallerySearch:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

body.dark-mode #gallerySearch {
    background-color: #0d1228;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

/* Load More Button */
#loadMoreBtn {
    font-weight: 600;
    padding: 12px 40px;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Gallery Lightbox Modal */
#galleryLightbox .modal-content {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

#galleryLightbox .modal-body img {
    max-height: 70vh;
    object-fit: contain;
}

#galleryLightbox .btn-close-white {
    font-size: 1.5rem;
}

#galleryLightbox .modal-footer .btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
}

#galleryLightbox .modal-footer .btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

#galleryLightbox .modal-footer .btn .material-symbols-outlined {
    vertical-align: middle;
    font-size: 20px;
}

/* No Gallery Items Message */
#noGalleryItems .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-category-tabs::-webkit-scrollbar {
        display: none;
    }

    .sticky-filters {
        top: 56px;
    }
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .gallery-card {
        height: 240px;
    }

    .gallery-title {
        font-size: 1rem;
    }

    .gallery-category {
        font-size: 0.8125rem;
    }

    .gallery-zoom-icon .material-symbols-outlined {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .gallery-category-tabs .btn {
        font-size: 0.8125rem;
        padding: 6px 16px;
    }

    .gallery-card {
        height: 220px;
    }

    #galleryLightbox .modal-footer {
        flex-direction: column;
        gap: 8px;
    }

    #galleryLightbox .modal-footer .btn {
        width: 100%;
    }
}
}

/* ========================================
   Clearing & Settlement Page Styles
   ======================================== */

/* Clearing Header */
.clearing-header {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.clearing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.clearing-header h1 {
    color: #fff;
}

.clearing-header .lead {
    color: rgba(255, 255, 255, 0.95);
}

.clearing-header-icon {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

body.dark-mode .clearing-header {
    background: linear-gradient(135deg, #d39e00 0%, #cc7a00 100%);
}

/* Introduction Card */
.clearing-intro-card {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.clearing-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

body.dark-mode .clearing-intro-card {
    background-color: #1a1f2e;
    border-left-color: var(--primary-color);
}

body.dark-mode .clearing-intro-card h2 {
    color: var(--text-dark);
}

body.dark-mode .clearing-intro-card .text-muted {
    color: var(--text-secondary-dark) !important;
}

/* Feature Cards */
.clearing-feature-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease;
}

.clearing-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.clearing-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.clearing-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.clearing-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.clearing-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.clearing-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.clearing-feature-icon .material-icons-outlined {
    font-size: 40px;
    color: #fff;
}

.clearing-feature-card:hover .clearing-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

body.dark-mode .clearing-feature-card {
    background-color: #1a1f2e;
    border-color: var(--border-dark);
}

body.dark-mode .clearing-feature-card h3 {
    color: var(--text-dark);
}

body.dark-mode .clearing-feature-card .text-muted {
    color: var(--text-secondary-dark) !important;
}

/* Process/Step Cards */
.clearing-step-card {
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.clearing-step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.clearing-step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.clearing-step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.clearing-step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.clearing-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.step-icon .material-icons-outlined {
    font-size: 32px;
    color: var(--primary-color);
}

body.dark-mode .clearing-step-card {
    background-color: #1a1f2e;
}

body.dark-mode .clearing-step-card h3 {
    color: var(--text-dark);
}

body.dark-mode .clearing-step-card .text-muted {
    color: var(--text-secondary-dark) !important;
}

/* Settlement Timeline */
.settlement-timeline {
    position: relative;
    padding-left: 30px;
}

.settlement-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, #ff9800 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 50px;
    animation: fadeInRight 0.6s ease;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-color);
    z-index: 2;
}

.timeline-marker.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.2);
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    color: #212529;
}

body.dark-mode .settlement-timeline::before {
    background: linear-gradient(to bottom, var(--primary-color) 0%, #cc7a00 100%);
}

body.dark-mode .timeline-marker {
    background-color: #1a1f2e;
    border-color: var(--primary-color);
}

body.dark-mode .timeline-content h5 {
    color: var(--text-dark);
}

body.dark-mode .timeline-content .text-muted {
    color: var(--text-secondary-dark) !important;
}

/* Settlement Info Box */
.settlement-info-box {
    border-left: 4px solid var(--primary-color);
    animation: fadeInLeft 0.6s ease 0.2s backwards;
}

body.dark-mode .settlement-info-box {
    background-color: #1a1f2e !important;
}

body.dark-mode .settlement-info-box h4 {
    color: var(--text-dark);
}

body.dark-mode .settlement-info-box p {
    color: var(--text-secondary-dark) !important;
}

/* Benefits Section */
.benefit-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon .material-icons-outlined {
    font-size: 32px;
    color: var(--primary-color);
}

body.dark-mode .benefit-item {
    background-color: #1a1f2e;
}

body.dark-mode .benefit-item h4 {
    color: var(--text-dark);
}

body.dark-mode .benefit-item .text-muted {
    color: var(--text-secondary-dark) !important;
}

/* FAQ Accordion */
.clearing-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clearing-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clearing-accordion .accordion-button {
    font-weight: 600;
    color: #212529;
    background-color: #f8f9fa;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.clearing-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.clearing-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.clearing-accordion .accordion-button::after {
    background-size: 1.25rem;
}

.clearing-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
}

body.dark-mode .clearing-accordion .accordion-item {
    border-color: var(--border-dark);
    background-color: #1a1f2e;
}

body.dark-mode .clearing-accordion .accordion-button {
    background-color: #0d1228;
    color: var(--text-dark);
    border-color: var(--border-dark);
}

body.dark-mode .clearing-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

body.dark-mode .clearing-accordion .accordion-body {
    background-color: #1a1f2e;
    color: var(--text-secondary-dark);
}

/* CTA Section */
.clearing-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

body.dark-mode .clearing-cta {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1228 100%);
}

body.dark-mode .clearing-cta h2 {
    color: var(--text-dark);
}

body.dark-mode .clearing-cta .text-muted {
    color: var(--text-secondary-dark) !important;
}

.clearing-cta .btn-warning {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.clearing-cta .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.clearing-cta .btn-outline-dark {
    transition: all 0.3s ease;
}

.clearing-cta .btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .clearing-cta .btn-outline-dark {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

body.dark-mode .clearing-cta .btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: #0d1228;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .clearing-header-icon {
        font-size: 150px;
    }

    .clearing-header h1 {
        font-size: 2.5rem;
    }

    .settlement-timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .clearing-header {
        text-align: center;
    }

    .clearing-header-icon {
        font-size: 120px;
        margin-top: 2rem;
    }

    .clearing-header h1 {
        font-size: 2rem;
    }

    .clearing-feature-icon,
    .step-icon {
        width: 60px;
        height: 60px;
    }

    .clearing-feature-icon .material-icons-outlined {
        font-size: 32px;
    }

    .step-icon .material-icons-outlined {
        font-size: 28px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .settlement-timeline::before {
        left: 15px;
    }

    .settlement-timeline {
        padding-left: 15px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .benefit-item:hover {
        transform: translateX(5px);
    }

    .clearing-accordion .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .clearing-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .clearing-cta h2 {
        font-size: 1.75rem;
    }

    .clearing-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .clearing-header h1 {
        font-size: 1.75rem;
    }

    .clearing-header .lead {
        font-size: 1rem;
    }

    .clearing-intro-card .fs-1 {
        font-size: 2.5rem !important;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }
}

/* ============================================
   CONTACT PAGE - DUAL BRANCH STYLES
   ============================================ */

/* Updated Contact Hero Cards - Side by Side */
.contact-hero-section .quick-contact-card {
    height: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-hero-section .quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-hero-section .quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffc107 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 0 20px 0 100%;
    opacity: 0.5;
}

.contact-hero-section .quick-contact-content {
    position: relative;
    z-index: 2;
}

.contact-hero-section .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-hero-section .contact-badge-secondary {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: white;
}

.contact-hero-section .quick-contact-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-hero-section .quick-contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-hero-section .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-hero-section .contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-hero-section .contact-method-item:hover {
    background: #ffc10710;
    transform: translateX(5px);
}

.contact-hero-section .contact-method-item .material-icons-outlined {
    font-size: 1.75rem;
    color: #ffc107;
    flex-shrink: 0;
}

.contact-hero-section .contact-method-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-hero-section .contact-method-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Butwal Branch Departments */
.branch-departments {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(255, 193, 7, 0.2);
}

.branch-departments h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.dept-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.dept-contact-item:hover {
    background: #0dcaf010;
    transform: translateX(3px);
}

.dept-contact-item .material-icons-outlined {
    font-size: 1.5rem;
    color: #0dcaf0;
    flex-shrink: 0;
}

.dept-contact-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.dept-contact-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.dept-contact-item a {
    color: #0dcaf0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dept-contact-item a:hover {
    color: #0d6efd;
}

/* Map Section Updates */
.contact-map-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.contact-map-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-map-section .section-header .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffc107;
}

.contact-map-section .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.map-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
}

.map-header .material-icons-outlined {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.map-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: #e9ecef;
}

.map-container iframe {
    display: block;
}

.map-footer {
    padding: 1.25rem 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.contact-info-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.contact-info-item .material-icons-outlined {
    font-size: 1.25rem;
    color: #ffc107;
    flex-shrink: 0;
}

.contact-info-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Business Hours Card */
.business-hours-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.business-hours-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hours-info {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: #ffc10710;
    transform: translateX(5px);
}

.hours-row.closed {
    opacity: 0.7;
}

.hours-row.closed:hover {
    background: #dc354510;
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-row .time {
    color: var(--text-secondary);
    font-weight: 500;
}

.hours-row.closed .time {
    color: #dc3545;
}

/* Dark Mode Contact Page */
body.dark-mode .contact-hero-section .contact-method-item:hover {
    background: rgba(255, 193, 7, 0.1);
}

body.dark-mode .dept-contact-item:hover {
    background: rgba(13, 202, 240, 0.1);
}

body.dark-mode .map-header {
    color: #0a0e27;
}

body.dark-mode .map-header h4 {
    color: #0a0e27;
}

body.dark-mode .hours-row:hover {
    background: rgba(255, 193, 7, 0.1);
}

body.dark-mode .hours-row.closed:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-hero-section .quick-contact-card {
        margin-bottom: 2rem;
    }

    .branch-departments {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .business-hours-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 3rem 0;
    }

    .contact-hero-section .quick-contact-card {
        padding: 1.5rem;
    }

    .contact-hero-section .quick-contact-card h2 {
        font-size: 1.5rem;
    }

    .contact-map-section .section-header h2 {
        font-size: 1.75rem;
    }

    .map-header {
        padding: 1rem;
    }

    .map-header h4 {
        font-size: 1.1rem;
    }

    .map-container {
        height: 250px;
    }

    .dept-contact-item {
        padding: 0.6rem;
    }

    .hours-row {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section .quick-contact-card h2 {
        font-size: 1.25rem;
    }

    .contact-hero-section .contact-methods {
        gap: 0.75rem;
    }

    .contact-hero-section .contact-method-item {
        padding: 0.75rem;
    }

    .branch-departments h4 {
        font-size: 1rem;
    }

    .dept-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .map-container {
        height: 200px;
    }

    .contact-map-section .section-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   DP FEES PAGE STYLES
   ============================================ */

/* DP Fees Hero Section */
.dp-fees-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.dp-fees-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dp-fees-hero .hero-content {
    position: relative;
    z-index: 2;
}

.dp-fees-hero .badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.dp-fees-hero .badge-custom .material-icons-outlined {
    font-size: 1.25rem;
}

.dp-fees-hero h2 {
    color: var(--text-primary);
    font-weight: 800;
}

.dp-fees-hero .lead {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-3px);
}

.feature-badge .material-icons-outlined {
    color: #ffc107;
    font-size: 1.5rem;
}

.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.floating-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-icon .material-icons-outlined {
    font-size: 5rem;
    color: var(--dark);
}

/* DP Fees Section */
.dp-fees-section {
    padding: 5rem 0;
}

.bg-light-section {
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

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

/* Table Card */
.table-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* DP Fees Table */
.dp-fees-table {
    margin-bottom: 0;
}

.dp-fees-table thead {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.dp-fees-table thead th {
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 1rem;
    border: none;
}

.dp-fees-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.dp-fees-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.dp-fees-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dp-fees-table tbody tr:hover {
    background: rgba(255, 193, 7, 0.05);
    transform: scale(1.01);
}

.dp-fees-table tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    color: var(--text-primary);
    font-weight: 500;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.service-name .material-icons-outlined {
    color: #0dcaf0;
    font-size: 1.5rem;
}

.fee-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.fee-badge.free {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
}

/* Fee Note */
.fee-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 202, 240, 0.1);
    border-left: 4px solid #0dcaf0;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.fee-note .material-icons-outlined {
    color: #0dcaf0;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.fee-note strong {
    color: var(--text-primary);
}

/* Transfer Card */
.transfer-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.transfer-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.transfer-icon .material-icons-outlined {
    font-size: 3rem;
    color: var(--dark);
}

.transfer-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.transfer-fee {
    margin: 2rem 0;
}

.fee-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.formula-badge {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.or-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.formula-note {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Value Range & Fee Calculation */
.value-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.value-range .material-icons-outlined {
    color: #0dcaf0;
    font-size: 1.5rem;
}

.fee-calculation {
    font-weight: 600;
}

.fee-calculation .percentage {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Info Card */
.info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon .material-icons-outlined {
    font-size: 2.5rem;
    color: #ffc107;
}

.info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.dp-faq-accordion .accordion-item {
    background: var(--card-bg);
    border: none;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dp-faq-accordion .accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.dp-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    color: var(--text-primary);
    box-shadow: none;
}

.dp-faq-accordion .accordion-button:hover {
    background: rgba(255, 193, 7, 0.05);
}

.dp-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.dp-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.dp-faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    background: var(--card-bg);
}

/* CTA Section */
.dp-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.dp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.dp-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.dp-cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: var(--dark);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Dark Mode */
body.dark-mode .dp-fees-hero {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, rgba(13, 202, 240, 0.02) 100%);
}

body.dark-mode .feature-badge {
    border-color: rgba(255, 193, 7, 0.3);
}

body.dark-mode .dp-fees-table tbody tr:hover {
    background: rgba(255, 193, 7, 0.03);
}

body.dark-mode .fee-note {
    background: rgba(13, 202, 240, 0.05);
}

body.dark-mode .info-icon {
    background: rgba(255, 193, 7, 0.05);
}

/* Responsive */
@media (max-width: 991px) {
    .dp-fees-hero {
        padding: 3rem 0;
    }

    .floating-icon {
        width: 150px;
        height: 150px;
        margin-top: 2rem;
    }

    .floating-icon .material-icons-outlined {
        font-size: 3.5rem;
    }

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

    .dp-fees-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .table-card {
        padding: 1.5rem;
    }

    .transfer-card {
        padding: 2rem;
    }

    .fee-formula {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .dp-fees-hero h2 {
        font-size: 1.75rem;
    }

    .dp-fees-hero .lead {
        font-size: 1rem;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .dp-fees-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .fee-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }

    .transfer-icon {
        width: 80px;
        height: 80px;
    }

    .transfer-icon .material-icons-outlined {
        font-size: 2.5rem;
    }

    .formula-badge {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }

    .value-range {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .info-card {
        margin-bottom: 1.5rem;
    }

    .dp-cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .table-card {
        padding: 1rem;
    }

    .dp-fees-table thead th {
        font-size: 0.75rem;
        padding: 1rem 0.5rem;
    }

    .dp-fees-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .service-name .material-icons-outlined {
        font-size: 1.25rem;
    }

    .transfer-card {
        padding: 1.5rem;
    }

    .transfer-card h3 {
        font-size: 1.5rem;
    }

    .fee-note {
        padding: 1rem;
        flex-direction: column;
    }

    .dp-faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .dp-faq-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}