/* Custom Styles for Internations Frontend */

/* Global background and text */
body {
    background-color: #f9f6f4 !important;
    color: #000000 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
}

p, span, div {
    color: #000000 !important;
}



/* Hero Section */
.hero-section {
    background: white;
    color: #000000;
    padding: 4rem 0;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 1.5rem !important;
    padding: 0.5rem 1rem;
}

.navbar-brand {
    color: #000000 !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

/* Active Navigation Link */
.navbar-nav .nav-link.active {
    color: #000000 !important;
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -10px;
    width: calc(100% + 20px);
    height: 6px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    z-index: 1;
}

.navbar-nav .nav-link:hover::after {
    background-color: #ffc107;
}

/* Dropdown Styles */
.dropdown-menu {
    border: 1px solid #dee2e6;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    color: #212529;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ffc107;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Active dropdown item styles */
.dropdown-item.active {
    background-color: #ffc107 !important;
    color: #000000 !important;
    font-weight: 600;
}

/* Operations dropdown specific styles */
#operationsDropdown + .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

#operationsDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: #fff3cd;
    color: #856404;
}

/* Frontend Pagination Styles */
.pagination-lg .page-link {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    border: 2px solid #dee2e6;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.pagination-lg .page-link:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(255, 193, 7, 0.3);
}

.pagination-lg .page-item.active .page-link {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000000;
    font-weight: 700;
    box-shadow: 0 0.25rem 0.5rem rgba(255, 193, 7, 0.4);
}

.pagination-lg .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    opacity: 0.6;
}

.pagination-lg .page-item.disabled .page-link:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::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="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer h5, .footer h6 {
    color: #ffffff;
    font-weight: 600;
}



.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: #ffc107;
    opacity: 1;
    text-decoration: none;
    transform: translateX(5px);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: #ffc107;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 0.5rem rgba(255, 193, 7, 0.3);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffc107;
    opacity: 1;
}

.newsletter-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 0.5rem 0 0 0.5rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.newsletter-form .btn {
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(255, 193, 7, 0.3);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .input-group {
        max-width: 100% !important;
    }
    
    .newsletter-form .btn {
        border-radius: 0.5rem;
        margin-top: 1rem;
    }
}

/* Home CTA Section Styles */
.home-cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.home-cta-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.home-cta-content {
    position: relative;
    z-index: 1;
}

.home-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.home-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
}

.home-cta-features {
    margin-top: 1.5rem;
}

.home-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #333333;
}

.home-feature-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.home-cta-buttons {
    margin-top: 2rem;
}

.home-cta-buttons .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.home-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.home-cta-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.home-cta-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-cta-image-container:hover .home-cta-image {
    transform: scale(1.05);
}

.home-cta-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.home-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.home-overlay-content h5 {
    font-weight: 600;
    margin: 0;
}

/* Home CTA Responsive Design */
@media (max-width: 768px) {
    .home-cta-title {
        font-size: 2rem;
    }
    
    .home-cta-description {
        font-size: 1rem;
    }
    
    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .home-cta-buttons .btn {
        width: 100%;
    }
    
    .home-cta-image {
        height: 300px;
    }
}

/* Event Cards Styles for Dashboard */
.event-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0.5rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.event-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-status-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.event-status-overlay .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.event-detail-item i {
    margin-right: 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.event-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.event-actions .btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.event-actions .btn i {
    margin-right: 0.25rem;
}

/* Event Cards Responsive Design */
@media (max-width: 768px) {
    .event-image-container {
        height: 150px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Button Styles for Frontend */
.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

.btn-outline-primary:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-outline-light {
    background-color: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.btn-outline-light:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

.btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

.btn-light:hover {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    color: #000000 !important;
}

.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
    color: #ffffff !important;
}

.btn-success {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-success:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

/* Nation Card */
.nation-card {
    background: white;
    color: #000000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* City Card */
.city-card {
    background: white;
    color: #000000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Village Card */
.village-card {
    background: white;
    color: #000000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Event Card */
.event-card {
    background: white;
    color: #000000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Information Card */
.info-card {
    background: white;
    color: #000000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Gradient Success Background */
.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Feature Cards */
.feature-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.feature-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.feature-card-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.feature-card-dark .card-body {
    position: relative;
    z-index: 2;
}

.feature-card-light {
    background: #ffffff;
    color: #000000;
    border: 1px solid #e9ecef;
}

.feature-card .card-body {
    padding: 2rem;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2.25rem;
}

.feature-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0.25rem;
    color: #28a745;
    font-weight: bold;
}

.feature-card-dark ul li:before {
    color: #ffffff;
}

/* Feature Card Buttons */
.feature-card .btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.feature-card-dark .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

.feature-card-dark .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
}

.feature-card-light .btn-outline-primary {
    border-color: #000000;
    color: #000000;
}

.feature-card-light .btn-outline-primary:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-top: 1px solid #dee2e6;
    padding: 2rem 0;
}

.footer h5,
.footer p,
.footer span,
.footer div {
    color: #000000 !important;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile Optimizations */
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-section .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Hero Cards Mobile Layout */
    .hero-section .row {
        margin: 0 -0.5rem;
    }
    
    .hero-section .col-md-3 {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .card {
        padding: 1rem !important;
    }
    
    .hero-section .card i {
        font-size: 1.5rem !important;
    }
    
    .hero-section .card h5 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-section .card p {
        font-size: 0.9rem !important;
    }
    
    /* Navigation Mobile Optimizations */
    .navbar {
        padding: 0.5rem 0.75rem !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .navbar-brand i {
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
        border: 2px solid #000000;
        border-radius: 0.375rem;
        position: relative;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 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%280, 0, 0, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: opacity 0.3s ease;
    }
    
    .navbar-toggler-close {
        position: absolute;
        font-size: 1.5rem;
        color: #000000;
        transition: opacity 0.3s ease;
    }
    
    .navbar-toggler-close i {
        font-weight: bold;
    }
    
    /* When menu is open, hide hamburger and show X */
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        opacity: 0;
    }
    
    .navbar-toggler:not(.collapsed) .navbar-toggler-close {
        display: block !important;
    }
    
    .navbar-toggler.collapsed .navbar-toggler-icon {
        opacity: 1;
    }
    
    .navbar-toggler.collapsed .navbar-toggler-close {
        display: none !important;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        padding-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0.75rem !important;
        font-size: 1rem !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-link i {
        font-size: 1.2rem;
        margin-right: 0.75rem;
        width: 24px;
        text-align: center;
    }
    
    /* Mobile Active Navigation */
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 193, 7, 0.1);
        border-left: 4px solid #ffc107;
        padding-left: calc(0.75rem - 4px) !important;
    }
    
    /* Mobile Dropdown Styles */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 0.875rem 1.5rem !important;
        padding-left: 3rem !important;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        min-height: 48px;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 193, 7, 0.15);
        padding-left: 3.25rem !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item.active {
        background-color: rgba(255, 193, 7, 0.2);
        border-left: 4px solid #ffc107;
        padding-left: calc(3rem - 4px) !important;
    }
    
    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    /* User dropdown mobile */
    .navbar-nav .dropdown-menu.dropdown-menu-end {
        right: auto;
        left: 0;
    }
    
    /* Content Mobile Optimizations */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Card Mobile Optimizations */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Button Mobile Optimizations */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Statistics Section Mobile */
    .card .row .col-md-3 {
        margin-bottom: 1.5rem;
    }
    
    .card .row .col-md-3:last-child {
        margin-bottom: 0;
    }
    
    .card .fa-3x {
        font-size: 2rem !important;
    }
    
    .card h4 {
        font-size: 1.5rem !important;
    }
    
    /* Call to Action Mobile */
    .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .d-flex.justify-content-center.gap-3 .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Modal Mobile Optimizations */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    /* Footer Mobile */
    .footer .row {
        text-align: center;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    /* Section Headers Mobile */
    .d-flex.justify-content-between.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between.align-items-center h2 {
        text-align: center;
        margin-bottom: 0;
    }
    
    .d-flex.justify-content-between.align-items-center .btn {
        width: 100%;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .modal-dialog {
        margin: 0.25rem;
    }
    
    /* Navbar Extra Small */
    .navbar {
        padding: 0.5rem 0.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-brand i {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.95rem !important;
        padding: 0.875rem 0.5rem !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 0.75rem 1rem !important;
        padding-left: 2.5rem !important;
        font-size: 0.9rem;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        padding-left: 2.75rem !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item.active {
        padding-left: calc(2.5rem - 4px) !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .card {
        cursor: pointer;
    }
    
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .btn {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Improve modal scrolling */
    .modal-body {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Frontend page specific mobile optimizations */
    .display-4 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    /* Card mobile optimizations */
    .card-body.p-5 {
        padding: 1.5rem !important;
    }
    
    .card-body.p-4 {
        padding: 1rem !important;
    }
    
    /* Form mobile optimizations */
    .form-control, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Button mobile optimizations */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Text mobile optimizations */
    .text-center {
        text-align: center !important;
    }
    
    /* Image mobile optimizations */
    .card-img-top {
        height: 150px !important;
    }
    
    /* Badge mobile optimizations */
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Icon mobile optimizations */
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .fa-2x {
        font-size: 1.5rem !important;
    }
    
    /* Modal mobile optimizations */
    .modal-dialog.modal-lg {
        max-width: calc(100% - 2rem);
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    /* Statistics cards mobile */
    .card .row .col-6 {
        margin-bottom: 1rem;
    }
    
    .card .row .col-6:last-child {
        margin-bottom: 0;
    }
    
    /* Contact form mobile */
    .col-lg-8.col-12.mb-4 {
        margin-bottom: 2rem !important;
    }
    
    /* Who we are page mobile */
    .col-lg-4.col-md-6.col-12.mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .col-lg-6.col-12.mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Feature Cards Mobile */
    .feature-card .card-body {
        padding: 1.5rem !important;
    }
    
    .feature-card h4 {
        font-size: 1.25rem !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
    }
    
    .feature-card ul li {
        font-size: 0.85rem !important;
        padding: 0.4rem 0;
    }
    
    .feature-card .fa-3x {
        font-size: 2rem !important;
    }
}

/* Feature Icon Responsive Styles */
.feature-icon {
    display: block;
    width: 100%;
}

/* Mobile first - smaller icons and spacing */
.feature-icon {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem;
}

/* Tablet and up */
@media (min-width: 576px) {
    .feature-icon {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .feature-icon {
        font-size: 3rem !important;
        margin-bottom: 1.5rem;
    }
} 

/* Google Login Button */
.btn-google {
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #dadce0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f8f9fa;
    color: #5f6368;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.btn-google .bi-google {
    color: #4285f4;
    margin-right: 8px;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: #fff;
    padding: 0 15px;
    color: #757575;
    font-size: 14px;
}

/* Meeting Hosting Alert Styles */
.alert {
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-left: 5px solid #ffc107;
    animation: slideInDown 0.5s ease-out;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 5px solid #17a2b8;
    animation: slideInDown 0.6s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 5px solid #28a745;
    animation: slideInDown 0.7s ease-out;
}

.alert .alert-heading {
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.alert hr {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.alert .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
}

/* Meeting Hosting Alert Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Icon Styling */
.alert .flex-shrink-0 i {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Alert Button Styling */
.alert .btn {
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* Meeting Hosting Alert Responsive */
@media (max-width: 768px) {
    .alert {
        padding: 1rem;
    }
    
    .alert .flex-shrink-0 i {
        font-size: 2rem;
        margin-right: 0.5rem !important;
    }
    
    .alert .alert-heading {
        font-size: 1.1rem;
    }
    
    .alert .row {
        flex-direction: column;
    }
    
    .alert .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   YOU'RE NOT ALONE BANNER (Footer Background Style)
   ============================================ */

.not-alone-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.not-alone-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.not-alone-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.not-alone-banner .card-body {
    position: relative;
    z-index: 2;
}

/* ============================================
   MODERN FOOTER STYLES
   ============================================ */

.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.footer-brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-brand-title:hover {
    transform: translateX(5px);
}

.footer-brand-title i {
    font-size: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.8));
    }
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Social Links Modern */
.social-links-modern {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Footer Links Section */
.footer-links-section {
    margin-bottom: 1.5rem;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffc107 0%, transparent 100%);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link-item {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link-item::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #ffc107;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-link-item:hover {
    color: #ffc107;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-link-item:hover::before {
    opacity: 1;
    left: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.footer-contact {
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    margin-top: 0.25rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Newsletter Section */
.footer-newsletter {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 193, 7, 0.03) 100%);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.newsletter-wrapper {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.newsletter-content {
    margin-bottom: 2rem;
}

.newsletter-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.newsletter-icon-bg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.newsletter-icon-bg i {
    font-size: 2.5rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.newsletter-icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.newsletter-icon-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 193, 7, 0.6);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.newsletter-icon-particles .particle:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.newsletter-icon-particles .particle:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.newsletter-icon-particles .particle:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(0, -20px) scale(1.2);
        opacity: 1;
    }
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.newsletter-subtitle {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .newsletter-subtitle {
        margin: 0;
    }
}

.newsletter-features {
    margin-top: 1.5rem;
}

.newsletter-feature-item {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-feature-item span {
    color: #ffffff !important;
}

.newsletter-feature-item:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.newsletter-feature-item i {
    font-size: 0.85rem;
}

.newsletter-form-modern {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-container {
    position: relative;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.newsletter-input-wrapper:focus-within {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.15), 0 12px 40px rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.newsletter-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within .newsletter-input-icon {
    color: #ffc107;
    transform: scale(1.1);
}

.newsletter-input-icon i {
    font-size: 1.1rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.875rem 0.5rem;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
}

.newsletter-input:focus::placeholder {
    opacity: 0.6;
}

.newsletter-button {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border: none;
    color: #000000;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.newsletter-button:hover::before {
    width: 300px;
    height: 300px;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffc107 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

.newsletter-button:active {
    transform: translateY(-1px) scale(0.98);
}

.newsletter-button .button-text,
.newsletter-button .button-loader {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.newsletter-button i {
    transition: transform 0.3s ease;
}

.newsletter-button:hover .button-text i {
    transform: translateX(5px) rotate(-15deg);
}

.newsletter-message {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    animation: slideDown 0.4s ease-out;
    display: none;
}

.newsletter-message.show {
    display: block;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #4ade80;
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f87171;
}

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

/* Footer Bottom Bar */
.footer-bottom-bar {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-location-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.footer-location-text i {
    color: #ffc107;
    font-size: 0.85rem;
}

/* Footer Responsive Design */
@media (max-width: 992px) {
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.95rem;
    }
    
    .newsletter-form-modern {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        margin-top: 3rem;
    }
    
    .footer-main {
        padding: 2rem 0 !important;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links-modern {
        justify-content: center;
    }
    
    .footer-links-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-links-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link-item::before {
        display: none;
    }
    
    .footer-link-item:hover {
        padding-left: 0;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
    }
    
    .newsletter-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .newsletter-icon-bg i {
        font-size: 2rem;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .newsletter-feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .newsletter-input-icon {
        padding: 0;
        order: -1;
    }
    
    .newsletter-input {
        text-align: center;
        padding: 0.875rem 1rem;
    }
    
    .newsletter-button {
        width: 100%;
        border-radius: 16px;
        padding: 1rem 2rem;
    }
    
    .footer-location-text {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom-bar .row {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-brand-title {
        font-size: 1.25rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 1.25rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.85rem;
    }
    
    .newsletter-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-icon-bg i {
        font-size: 1.75rem;
    }
    
    .newsletter-feature-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .newsletter-input-wrapper {
        padding: 0.5rem;
    }
    
    .newsletter-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}