/*
 * The Homeware Expo 2026 - Homepage Specific Styles
 * Modern Figma-Inspired Design
 * File: assets/css/index.css
 */

/* ===================================
   HERO SECTION - GLASSMORPHISM STYLE
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0B1F2C 0%, #1B4965 50%, #2A5F7E 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated Background Pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(95, 168, 211, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(98, 182, 183, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 31, 44, 0.3);
    z-index: 1;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
}

/* Hero Badge */
.badge-hero {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-hero i {
    color: #62B6B7;
}

/* Hero Title */
.hero-title {
    font-size: 68px;
    font-weight: 800;
    color: #ffffff;
    margin: 28px 0 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Location Badge */
.hero-location {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}

.hero-location i {
    color: #62B6B7;
    font-size: 18px;
}

/* ===================================
   GLASSMORPHISM COUNTDOWN TIMER
   =================================== */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 48px 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 28px 36px;
    min-width: 130px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-value {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.countdown-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* ===================================
   HERO CTA BUTTONS
   =================================== */
.hero-cta {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #5FA8D3 0%, #1B4965 100%);
    border: none;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(27, 73, 101, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 73, 101, 0.4);
    color: #ffffff;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 1);
    color: #0B1F2C;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    animation: bounce-smooth 2.5s infinite;
}

.scroll-indicator i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes bounce-smooth {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background-color: #ffffff;
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #E8EEF2;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(11, 31, 44, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B4965 0%, #62B6B7 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 31, 44, 0.12);
    border-color: #5FA8D3;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.08) 0%, rgba(95, 168, 211, 0.08) 100%);
    border-radius: 50%;
    color: #1B4965;
    font-size: 32px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #1B4965 0%, #5FA8D3 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #0B1F2C;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #0B1F2C 0%, #1B4965 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #6B7B8C;
    margin: 0;
    font-weight: 600;
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background-color: #F8F9FA;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.08) 0%, rgba(95, 168, 211, 0.08) 100%);
    color: #1B4965;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(27, 73, 101, 0.15);
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0B1F2C;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 18px;
    color: #6B7B8C;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1a3a4a;
    margin-bottom: 16px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11, 31, 44, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    font-size: 16px;
    color: #0B1F2C;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.feature-item i {
    font-size: 20px;
    margin-right: 12px;
    color: #62B6B7;
}

/* ===================================
   HIGHLIGHT CARDS
   =================================== */
.highlight-card {
    background: #ffffff;
    border: 1px solid #E8EEF2;
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(11, 31, 44, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B4965 0%, #62B6B7 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(11, 31, 44, 0.12);
    border-color: #5FA8D3;
}

.highlight-card:hover::after {
    transform: scaleX(1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.08) 0%, rgba(98, 182, 183, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1B4965;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, #1B4965 0%, #62B6B7 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(27, 73, 101, 0.25);
}

.highlight-title {
    font-size: 21px;
    font-weight: 700;
    color: #0B1F2C;
    margin-bottom: 14px;
    line-height: 1.3;
}

.highlight-text {
    font-size: 15px;
    color: #6B7B8C;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CATEGORY CARDS
   =================================== */
.category-card {
    background: #ffffff;
    border: 1px solid #E8EEF2;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(11, 31, 44, 0.04);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(11, 31, 44, 0.1);
    border-color: #1B4965;
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(95, 168, 211, 0.12) 0%, rgba(98, 182, 183, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #1B4965;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #1B4965 0%, #62B6B7 100%);
    color: #ffffff;
    transform: rotateY(180deg);
}

.category-title {
    font-size: 17px;
    font-weight: 700;
    color: #0B1F2C;
    margin-bottom: 10px;
}

.category-desc {
    font-size: 14px;
    color: #6B7B8C;
    margin: 0;
    line-height: 1.5;
}

/* ===================================
   PARTICIPATE BOXES
   =================================== */
.participate-box {
    background: #ffffff;
    border: 2px solid #1B4965;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(27, 73, 101, 0.08);
}

.participate-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(27, 73, 101, 0.15);
}

.participate-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.participate-icon {
    font-size: 40px;
    color: #1B4965;
}

.participate-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0B1F2C;
    margin: 0;
}

.participate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participate-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #0B1F2C;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.participate-list i {
    color: #62B6B7;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================
   VIDEO CARDS
   =================================== */
.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 31, 44, 0.08);
    transition: all 0.3s ease;
    background: #ffffff;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(11, 31, 44, 0.15);
}

.video-card iframe {
    display: block;
    border-radius: 16px;
}

/* ===================================
   SPONSORS GRID
   =================================== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.sponsor-item {
    background: #ffffff;
    border: 1px solid #E8EEF2;
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(11, 31, 44, 0.04);
    cursor: pointer;
}

.sponsor-item:hover {
    border-color: #5FA8D3;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(11, 31, 44, 0.08);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================
   ACCORDION / FAQ
   =================================== */
.accordion-item {
    background: #ffffff;
    border: 1px solid #E8EEF2;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 31, 44, 0.04);
}

.accordion-button {
    background: #ffffff;
    color: #0B1F2C;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(27, 73, 101, 0.05) 0%, rgba(95, 168, 211, 0.05) 100%);
    color: #1B4965;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 20px 24px;
    color: #1a3a4a;
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #0B1F2C 0%, #1B4965 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(95, 168, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(98, 182, 183, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    background: #ffffff;
    color: #1B4965;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: #F8F9FA;
    color: #0B1F2C;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn-outline-light:hover {
    background: #ffffff;
    color: #1B4965;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ===================================
   NEWSLETTER FORM
   =================================== */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 8px 32px rgba(11, 31, 44, 0.12);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 28px;
    font-size: 15px;
    background: #ffffff;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .btn {
    padding: 18px 36px;
    border: none;
    white-space: nowrap;
    border-radius: 50px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 58px;
    }
    
    .countdown-item {
        min-width: 115px;
        padding: 24px 30px;
    }
    
    .countdown-value {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .countdown-timer {
        gap: 16px;
        margin: 36px 0;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 20px 24px;
    }
    
    .countdown-value {
        font-size: 38px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .stats-section {
        margin-top: 0;
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .participate-box {
        margin-bottom: 30px;
    }
    
    .cta-title {
        font-size: 32px;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 18px 20px;
    }
    
    .countdown-value {
        font-size: 32px;
    }
    
    .countdown-label {
        font-size: 11px;
        margin-top: 8px;
        letter-spacing: 1.5px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 16px 16px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .badge-hero {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .hero-location {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 12px !important;
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 12px;
    }
}

/* ===================================
   ADDITIONAL BUTTON STYLES
   =================================== */
.btn-light-custom {
    background: #F8F9FA;
    border: 1px solid #E8EEF2;
    color: #0B1F2C;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    background: #1B4965;
    color: #ffffff;
    border-color: #1B4965;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 73, 101, 0.2);
}
