/* Modern Site Styling - Navy Blue & Cream Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-color: rgb(18, 45, 72);
    --primary-dark: rgb(12, 30, 48);
    --primary-light: rgb(25, 60, 95);
    --cream: #f5f5dc;
    --cream-light: #fafafa;
    --cream-dark: #e8e8d0;
    --gold: #ffd700;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --shadow: 0 4px 20px rgba(18, 45, 72, 0.15);
    --shadow-hover: 0 8px 30px rgba(18, 45, 72, 0.25);
}

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

body {
    font-family: 'montserrat', serif;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'montserrat', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(18, 45, 72, 0.3);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Header & Navigation */
#header_menu_top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

#header_menu_top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.topbar-texts,
.topbar-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.topbar-texts i {
    color: var(--gold);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.topbar-texts span {
    color: var(--cream-light);
    font-weight: 600;
    transition: color 0.3s ease;
}

.topbar-texts:hover span {
    color: var(--gold);
}

.topbar-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-link:hover {
    color: var(--gold);
    text-decoration: none;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.topbar-link i {
    font-size: 12px;
}

/* Language Selector Styling */
.language-selector .nav-link {
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.language-selector .btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-selector .flag-icon {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-selector .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    margin-top: 8px;
    animation: dropdownSlide 0.3s ease-out;
}

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

.language-selector .dropdown-item {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.language-selector .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
    transform: translateX(5px);
}

.language-selector .dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
    font-weight: 600;
}

.language-selector .dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Language Selector Wrapper */
.language-selector-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-selector .btn i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector .dropdown.show .btn i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Top Bar Container Enhancements */
#header_menu_top .container {
    position: relative;
    z-index: 2;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 40px;
    gap: 15px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Desktop styles - show text */
.topbar-item span {
    display: inline !important;
    color: var(--cream-light);
    font-weight: 600;
    transition: color 0.3s ease;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-item:hover span {
    color: var(--gold);
}

.topbar-item i {
    color: var(--gold);
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Specific item adjustments for desktop */
.topbar-address {
    flex: 1;
    min-width: 0;
}

.topbar-phone {
    flex: 0 0 auto;
}

.topbar-language {
    flex: 0 0 auto;
}

.topbar-signin {
    flex: 0 0 auto;
}

/* Text Alignment Utilities */
.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

/* Enhanced Spacing */
.topbar-texts {
    padding: 4px 0;
}

.topbar-link {
    margin: 4px 0;
}

/* Header Container */
#header {
    margin-bottom: 0;
}

.navbar-wrap {
    margin-bottom: 0;
}

/* Main Navigation */
#navbar_top {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand:hover {
    color: var(--primary-light) !important;
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    border-radius: 0;

}

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

    background: transparent;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 8px;
    padding: 12px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 45, 72, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 45, 72, 0.25);
}

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

/* Hero Slider */
.headerSlider {
    position: relative;
    overflow: hidden;
}

/* Hero Slider - Clean and Responsive (replaced old slide_class) */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    height: 56vh;
    min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(18, 45, 72, 0.4) 0%, 
        rgba(255, 193, 7, 0.2) 50%, 
        rgba(12, 30, 48, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    animation: heroFadeInUp 1.2s ease-out;
}

.hero-title {
    color: var(--cream);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: heroTitleSlide 1s ease-out 0.3s both;
}

.hero-subtitle {
    color: var(--cream-light);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    animation: heroSubtitleSlide 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: heroButtonSlide 1s ease-out 0.9s both;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
    border: 2px solid var(--cream);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(18, 45, 72, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
    text-decoration: none;
}

.hero-btn::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.6s ease;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(18, 45, 72, 0.4);
    background: var(--cream);
    color: var(--primary-color);
    text-decoration: none;
}

.hero-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.scroll-arrow i {
    color: var(--cream);
    font-size: 1.2rem;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(18, 45, 72, 0.8);
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(18, 45, 72, 0.3);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(18, 45, 72, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(18, 45, 72, 0.4);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--cream);
    transform: scale(1.3);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(245, 245, 220, 0.5);
}

/* Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-prev { left: 20px; }
    .hero-next { right: 20px; }
}

@media (max-width: 992px) {
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-prev { left: 15px; }
    .hero-next { right: 15px; }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 160px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
    
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Top Bar Extra Small Mobile Styles */
    .topbar-content {
        gap: 3px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .topbar-item {
        font-size: 9px;
        gap: 2px;
    }
    
    .topbar-item i {
        font-size: 11px;
    }
    
    .topbar-language .btn {
        padding: 2px 4px;
        font-size: 8px;
    }
    
    .topbar-language .flag-icon {
        font-size: 9px;
    }
    
    .topbar-signin .topbar-link {
        padding: 2px 4px;
        font-size: 8px;
    }
    
    /* Hero section extra small adjustments */
    .hero-slide {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
}

/* Performance optimizations */
.hero-slide {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-content {
    will-change: opacity, transform;
}

.hero-btn {
    will-change: transform;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Remove any existing scroll animations that might cause lag */
.owl-carousel {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.owl-item {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Enhanced button styling for slider */
.hero-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.jumbotron {
    position: relative;
    z-index: 2;
    background: transparent !important;
    text-align: center;
    animation: slideInUp 1.2s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jumbotron h1 {
    color: var(--cream);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.jumbotron h4 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.jumbotron p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-light {
    background: var(--cream);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--cream);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--cream);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    background: var(--cream-light);
    padding: 30px;
    border-radius: 0 0 20px 20px;
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Montserrat', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 45, 72, 0.25);
    outline: none;
}

.form-control:read-only {
    background: var(--cream);
    color: var(--primary-color);
    font-weight: 600;
}

/* Featured Services */
.featured_services {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Override Bootstrap my-5 class for featured services */
.featured_services.my-5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.featured_services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--cream-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-image {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-title {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Gallery */
#gallery {
    background: var(--cream-light);
    padding: 80px 0;
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}

.gallery-item {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--cream);
    padding: 60px 0 30px;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--cream-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
}

#footer h6 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

#footer p {
    color: var(--cream);
    line-height: 1.8;
}

#footer address {
    color: var(--cream);
    font-style: normal;
}

#footer address strong {
    color: var(--gold);
    font-weight: 600;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    color: var(--primary-color) !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon a::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;
}

.social-icon a:hover::before {
    left: 100%;
}

.social-icon a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #d4af37 0%, var(--gold) 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon a i {
    font-size: 16px;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
}

.social-icon a:hover i {
    transform: scale(1.2);
}

/* Social Media Specific Colors - Enhanced with Gold Theme */
.social-icon a[href*="facebook"]:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    color: var(--primary-color) !important;
}

.social-icon a[href*="google"]:hover,
.social-icon a[href*="googleplus"]:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    color: var(--primary-color) !important;
}

.social-icon a[href*="twitter"]:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    color: var(--primary-color) !important;
}

.social-icon a[href*="youtube"]:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .jumbotron h1 {
        font-size: 2.5rem;
    }
    
    .jumbotron h4 {
        font-size: 1.4rem;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 45, 72, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-image {
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 45, 72, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-title {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 100%;
}

.service-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Enhanced Gallery */
.gallery-item {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 45, 72, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--cream);
    font-size: 2rem;
    z-index: 2;
    transition: transform 0.3s ease;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Enhanced Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.5s ease-out;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--cream);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 20px 30px;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modal-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23modal-grain)"/></svg>');
    opacity: 0.3;
}

.modal-body {
    background: var(--cream-light);
    padding: 30px;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Montserrat', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 45, 72, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.form-control:read-only {
    background: var(--cream);
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Buttons */
.btn {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--cream);
    box-shadow: var(--shadow);
}

.btn::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;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-light {
    background: var(--cream);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--cream);
}

/* Loading and Animation Enhancements */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Typography */
.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .featured_services {
        padding: 40px 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .social-icon {
        gap: 12px;
        margin: 20px 0;
    }
    
    .social-icon a {
        width: 40px;
        height: 40px;
    }
    
    .social-icon a i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .featured_services {
        padding: 30px 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .social-icon {
        gap: 10px;
        margin: 15px 0;
    }
    
    .social-icon a {
        width: 35px;
        height: 35px;
    }
    
    .social-icon a i {
        font-size: 14px;
    }
}

/* Responsive Top Bar */
@media (max-width: 992px) {
    #header_menu_top {
        padding: 10px 0;
    }
    
    .topbar-texts {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .topbar-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .language-selector .btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile Styles - Inline Layout */
    #header_menu_top {
        padding: 8px 0;
    }
    
    .topbar-content {
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .topbar-item {
        font-size: 11px;
        gap: 4px;
        flex-shrink: 0;
        margin: 0;
    }
    
    .topbar-item span {
        display: none; /* Hide text on mobile, show only icons */
    }
    
    .topbar-item i {
        font-size: 14px;
    }
    
    /* Language selector mobile adjustments */
    .topbar-language .btn {
        padding: 4px 8px;
        font-size: 11px;
        width: auto;
        justify-content: center;
    }
    
    .topbar-language .btn span {
        display: none;
    }
    
    .topbar-language .flag-icon {
        font-size: 12px;
    }
    
    /* Sign in link mobile adjustments */
    .topbar-signin .topbar-link {
        padding: 4px 8px;
        font-size: 11px;
        width: auto;
        justify-content: center;
        margin: 0;
    }
    
    .topbar-signin .topbar-link span {
        display: none;
    }
    
    .topbar-texts {
        font-size: 11px;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .topbar-texts i {
        font-size: 12px;
    }
    
    .topbar-link {
        font-size: 11px;
        padding: 5px 10px;
        justify-content: center;
        width: auto;
        margin: 0;
    }
    
    .language-selector .btn {
        font-size: 10px;
        padding: 5px 10px;
        justify-content: center;
        width: auto;
    }
    
    .language-selector .dropdown-menu {
        width: auto;
        margin-top: 5px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 15px !important;
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    /* Top Bar Small Mobile Styles - Maintain Inline Layout */
    #header_menu_top {
        padding: 6px 0;
    }
    
    .topbar-content {
        gap: 6px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .topbar-item {
        font-size: 10px;
        gap: 3px;
        flex-shrink: 0;
    }
    
    .topbar-item span {
        display: none; /* Keep text hidden on small screens */
    }
    
    .topbar-item i {
        font-size: 12px;
    }
    
    /* Language selector small mobile adjustments */
    .topbar-language .btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .topbar-language .flag-icon {
        font-size: 10px;
    }
    
    /* Sign in link small mobile adjustments */
    .topbar-signin .topbar-link {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .topbar-texts {
        font-size: 10px;
        flex-direction: row; /* Keep inline, not column */
        gap: 3px;
        text-align: center;
    }
    
    .topbar-link {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .language-selector .btn {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 12px !important;
        margin: 0 3px;
    }
}

/* Custom Scrollbar Enhancement */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Service Dropdown Styling */
.searchable-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.selected-value {
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

.selected-value:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(18, 45, 72, 0.1);
}

.selected-value::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.searchable-dropdown.active .selected-value::after {
    transform: rotate(180deg);
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(18, 45, 72, 0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-list.show {
    max-height: 300px;
    overflow-y: auto;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    outline: none;
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
}

.search-input:focus {
    border-bottom-color: var(--primary-color);
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

.dropdown-items {
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--cream-light);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
}

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

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--cream);
    transform: translateX(5px);
}

.dropdown-item.selected {
    background: var(--primary-light);
    color: var(--cream);
    font-weight: 600;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-item:hover::before,
.dropdown-item.selected::before {
    transform: scaleY(1);
}

.no-results {
    padding: 12px 16px;
    color: #999;
    font-style: italic;
    text-align: center;
    background: var(--cream-light);
}

/* Modal Form Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-body {
    padding: 30px;
    background: var(--cream-light);
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 45, 72, 0.1);
    outline: none;
}

.form-control:read-only {
    background: var(--cream-light);
    color: var(--text-dark);
    cursor: not-allowed;
}

/* Modern Input Styling */
.modern-input {
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(18, 45, 72, 0.05);
}

.modern-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(18, 45, 72, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.modern-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Form Check Styling */
.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 45, 72, 0.2);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(18, 45, 72, 0.2);
    outline: none;
}

.form-check-label {
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.form-check-label:hover {
    color: var(--primary-color);
}

/* Mobile Money Section Styling */
.mobile-money-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(18, 45, 72, 0.1);
}

.mobile-money-section h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-money-section .alert {
    border-radius: 10px;
    border: none;
    background: rgba(18, 45, 72, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.mobile-money-section .alert i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Payment Method Radio Buttons */
.form-check-inline {
    margin-right: 20px;
}

.form-check-inline .form-check-input {
    margin-right: 8px;
}

.form-check-inline .form-check-label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-check-inline .form-check-label:hover {
    color: var(--primary-color);
}

.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--cream);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--cream);
}

