/* Additional CSS for better font integration */
@font-face {
    font-family: 'Inter';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Additional responsive improvements */
html {
    scroll-padding-top: 100px; /* Ensures anchors scroll to correct position with fixed header */
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print styles */
@media print {
    header, footer, .hero, .features, .gallery-section, .calculator-section {
        display: none;
    }
    
    .about, .location, .contact {
        page-break-inside: avoid;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
}

/* Additional accessibility improvements */
:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Additional animation for page elements */
.zoom-in {
    animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Improved button styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Mobile menu defaults - Outside of media query */
/* These will apply globally and then be overridden in the media query */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
}

/* Enhanced mobile navigation */
@media (max-width: 768px) {
    /* Mobile menu button styling - Enhanced */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
    }
    
    .mobile-menu-btn::before {
        display: none;
    }
    
    .mobile-menu-btn::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 50%;
        border: 2px solid var(--gold-light, #d4a84f);
        opacity: 0;
        animation: pulse-border 2s infinite;
    }
    
    @keyframes pulse-border {
        0% { transform: scale(0.95); opacity: 0; }
        50% { opacity: 0.4; }
        100% { transform: scale(1.05); opacity: 0; }
    }
    
    .mobile-menu-btn:hover::before {
        opacity: 1;
    }
    
    .mobile-menu-btn:focus {
        outline: none;
        box-shadow: 0 0 0 2px var(--gold-light, #d4a84f);
    }
    
    .mobile-menu-btn.active {
        background: rgba(212, 168, 79, 0.15);
        box-shadow: 0 0 15px rgba(212, 168, 79, 0.3);
    }
    
    /* Enhanced mobile navigation with fancy styling */
    nav ul {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, var(--background-dark, #1a1a1a) 0%, rgba(42, 42, 42, 0.98) 100%) !important;
        z-index: 9998 !important;
        padding: 90px 25px 30px !important;
        transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
        display: block !important;
        overflow-y: auto !important;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5) !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border-right: 1px solid rgba(212, 168, 79, 0.1) !important;
    }
    
    /* Add decorative pattern overlay */
    .nav-pattern-overlay {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a84f' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E") !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }
    
    /* Add decorative top border */
    nav ul::after {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 3px !important;
        background: linear-gradient(90deg, transparent, var(--gold-light, #d4a84f), transparent) !important;
        opacity: 0.5 !important;
    }
    
    nav ul.show {
        left: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Logo/brand display in menu */
    .nav-menu-title {
        position: absolute !important;
        top: 30px !important;
        left: 25px !important;
        font-size: 28px !important;
        font-weight: bold !important;
        color: var(--gold-light, #d4a84f) !important;
        opacity: 0.7 !important;
        letter-spacing: 1px !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Stylish list items */
    nav ul li {
        display: block !important;
        margin: 0 0 5px 0 !important;
        position: relative !important;
        z-index: 9999 !important;
        transform: translateX(-20px) !important;
        opacity: 0 !important;
        transition: transform 0.4s ease, opacity 0.4s ease !important;
        transition-delay: calc(0.05s * var(--item-index, 0)) !important;
    }
    
    nav ul.show li {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
    
    /* Beautify links */
    nav ul li a {
        display: flex !important;
        align-items: center !important;
        padding: 12px 18px !important;
        font-size: 18px !important;
        color: var(--text-light, #ffffff) !important;
        border-radius: 8px !important;
        background-color: rgba(255, 255, 255, 0.03) !important;
        position: relative !important;
        z-index: 10000 !important;
        pointer-events: auto !important;
        transition: all 0.3s ease !important;
        margin-bottom: 5px !important;
        overflow: hidden !important;
    }
    
    /* Icon styling */
    nav ul li a i {
        margin-left: 12px !important;
        font-size: 18px !important;
        color: var(--gold-light, #d4a84f) !important;
        width: 24px !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }
    
    /* Fancy hover effect */
    nav ul li a:hover {
        background-color: rgba(212, 168, 79, 0.15) !important;
        color: var(--gold-light, #d4a84f) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    nav ul li a:hover i {
        transform: scale(1.2) !important;
    }
    
    /* Active link indicator */
    nav ul li a::after {
        content: "" !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 0% !important;
        height: 2px !important;
        background: linear-gradient(to right, transparent, var(--gold-light, #d4a84f), transparent) !important;
        transition: width 0.3s ease !important;
    }
    
    nav ul li a:hover::after {
        width: 100% !important;
    }
    
    /* Background overlay when menu is open */
    body.menu-open::after {
        content: none !important;
        /* This disables the overlay completely */
    }
    
    /* Add specific styles to make sure there are no other elements overlaying the menu */
    body.menu-open .mobile-menu-btn {
        z-index: 9999 !important;
    }
    
    /* Prevent other elements from intercepting clicks */
    body.menu-open header {
        z-index: 9996 !important;
    }
    
    /* Clear any potential backdrop filter that might cause transparency */
    nav ul {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Enhance visibility of menu items */
    nav ul li a:active {
        background-color: rgba(212, 168, 79, 0.25) !important;
        transform: translateY(0) !important;
    }
}

/* Enhanced paragraph styling for feature boxes with higher specificity */
.features .feature-box p {
    color: #ffe9a7 !important; /* Much brighter gold color for maximum visibility on dark backgrounds */
    font-weight: 500 !important; /* Bolder font weight */
    line-height: 1.6 !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important; /* Stronger text shadow for better contrast */
    letter-spacing: 0.3px !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #0f1a2b;
        --dark-color: #e1e1e1;
    }
    
    .feature-box {
        background-color: #1a2a43;
    }
    
    /* Remove this duplicate styling that might be causing conflicts */
    /* .feature-box p {
        color: #f0e6c8;
        font-weight: 400;
        line-height: 1.6;
        opacity: 1;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        letter-spacing: 0.3px;
    } */
    
    .contact-item {
        background-color: #1a2a43;
    }
}

/* Additional CSS for enhanced features */

/* Hero Button Group */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #0a3d6c);
    color: var(--white-color);
    padding: 4rem 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition-medium);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white-color);
}

.stat-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Enhancements */
.gallery-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

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

.gallery-info {
    color: var(--white-color);
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white-color);
}

.gallery-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-content {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow-md);
    position: relative;
    text-align: right;
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    right: -10px;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--secondary-color);
}

/* Location Section Enhancements */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.3);
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-btn {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-medium);
}

.map-container:hover .map-btn {
    transform: translateY(0);
    opacity: 1;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    max-width: 300px;
    flex: 1;
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-fast);
}

.location-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.location-detail-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-left: 15px;
}

.location-detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.location-detail-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow-md);
    max-width: 500px;
    width: 100%;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: var(--transition-fast);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(10, 25, 47, 0.1);
    outline: none;
}

/* Social Links */
.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.social-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--box-shadow-md);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Newsletter in Footer */
.footer-section.newsletter-section {
    background-color: rgba(26, 42, 80, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-section.newsletter-section:hover {
    background-color: rgba(26, 42, 80, 0.7);
}

.newsletter-section h3 {
    color: #f9c76c;
    margin-bottom: 15px;
}

.newsletter {
    margin-bottom: 20px;
    width: 100%;
}

.newsletter-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.9);
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Newsletter form stacked layout for all resolutions */
.newsletter-form .form-group {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    gap: 15px;
    overflow: visible;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #f5f5f5;
    padding: 12px 20px;
    height: 48px;
    transition: all 0.3s ease;
    outline: none;
    font-size: 0.95rem;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
    background-color: #d4a84f;
    color: #0c1a38;
    border: none;
    border-radius: 30px;
    padding: 0 25px;
    height: 48px;
    min-width: 60px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button span {
    display: inline-block;
    margin-left: 10px;
    font-family: 'Inter', sans-serif;
    position: relative;
    top: 1px;
}

/* Keep only one version of the button icon style */
.newsletter-form button i {
    margin-left: 0;
    font-size: 16px;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: #f9c76c;
}

.newsletter-form button:active {
    transform: scale(0.98);
}

.newsletter-form button:hover i {
    transform: translateX(3px);
}

/* Add validation styling */
.newsletter-form input[type="email"]:valid {
    border-color: rgba(83, 200, 140, 0.4);
}

.newsletter-form input[type="email"]:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 107, 107, 0.4);
}

/* Success message styling */
.newsletter-success {
    display: none;
    background-color: rgba(83, 200, 140, 0.2);
    border: 1px solid rgba(83, 200, 140, 0.4);
    color: #f5f5f5;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
}

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

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.7);
    max-width: 400px;
    text-align: right;
}

.newsletter-consent input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    accent-color: #d4a84f;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    cursor: pointer;
}

.newsletter-consent label {
    cursor: pointer;
    line-height: 1.5;
}

.newsletter-consent a {
    color: #d4a84f;
    text-decoration: none;
    position: relative;
    margin-left: 5px;
    font-weight: 500;
}

.newsletter-consent a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f9c76c;
    transition: width 0.3s ease;
}

.newsletter-consent a:hover {
    color: #f9c76c;
}

.newsletter-consent a:hover:after {
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* JS Scroll Animation */
.js-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

/* Pulse Animation */
.pulse-animation {
    animation: pulse-animation 3s ease-in-out infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(249, 199, 108, 0));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 5px rgba(249, 199, 108, 0.3));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(249, 199, 108, 0));
    }
}

/* Shimmer effect for headings */
.shimmer-text {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

.shimmer-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shimmerEffect 3s infinite;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes shimmerLine {
    0% { background-color: var(--secondary-color); }
    50% { background-color: var(--white-color); }
    100% { background-color: var(--secondary-color); }
}

/* Responsive styles for additional features */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-details {
        flex-direction: column;
        align-items: center;
    }
    
    .location-detail-item {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .social-links {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 10px 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .about-section {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-section {
        align-items: center;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.25rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-left: 1.25rem;
    }
    
    .contact-item-title {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .testimonial-controls {
        gap: 10px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .location-detail-item i {
        font-size: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-consent {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-left: 0;
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
    }
    
    .contact-item div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Calculator Section Enhanced */
.calculator-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, #0a4d8c 0%, #0a192f 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: var(--white-color);
    z-index: 1;
}

.calculator-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
    z-index: 2;
}

.calculator-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-color);
    clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
    z-index: 2;
}

.calculator-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.calculator-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 77, 140, 0.3) 0%, rgba(10, 25, 47, 0.7) 70%);
    z-index: 0;
}

.calculator-container {
    position: relative;
    z-index: 3;
}

.calculator-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.calculator-intro h2 {
    color: var(--white-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-shadow: var(--text-shadow);
}

/* Specific styles for shimmer-text in calculator */
.calculator-intro h2.shimmer-text {
    text-shadow: none;
    background: linear-gradient(90deg, #d4a84f, #f9f9f7, #d4a84f);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

.calculator-intro h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: shimmerLine 2s infinite;
}

/* Make sure the shimmer effect doesn't conflict with the underline effect */
.calculator-intro h2.shimmer-text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: shimmerLine 2s infinite;
}

.calculator-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.calculator-embed {
    position: relative;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-medium);
    height: 800px;
    margin: 0 auto;
    max-width: 1000px;
    background: transparent;
}

.calculator-embed:hover {
    box-shadow: none;
    transform: none;
}

.calculator-embed iframe {
    border-radius: 15px;
    background-color: transparent;
    transition: var(--transition-medium);
    border: none;
    box-shadow: none;
}

/* Handle iframe height responsively */
@media (max-width: 992px) {
    .calculator-section {
        padding: 60px 0;
    }
    
    .calculator-intro h2 {
        font-size: 2rem;
    }
    
    .calculator-intro {
        margin-bottom: 30px;
    }
    
    .calculator-embed {
        height: 900px;
    }
    
    .calculator-embed iframe {
        height: 900px !important;
    }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 50px 0;
    }
    
    .calculator-intro h2 {
        font-size: 1.8rem;
    }
    
    .calculator-intro p {
        font-size: 1rem;
    }
    
    .calculator-embed {
        height: 1100px;
    }
    
    .calculator-embed iframe {
        height: 1100px !important;
    }
}

@media (max-width: 576px) {
    .calculator-section {
        padding: 40px 0;
    }
    
    .calculator-intro h2 {
        font-size: 1.6rem;
    }
    
    .calculator-embed {
        height: 1200px;
        margin: 0;
        border-radius: 0;
    }
    
    .calculator-embed iframe {
        height: 1200px !important;
        border-radius: 0;
    }
}

/* Enhanced Footer Styles */
footer {
    position: relative;
    background: linear-gradient(135deg, #0c1a38 0%, #152345 70%, #1a2a50 100%);
    color: #f5f5f5;
    padding: 60px 0 30px;
    overflow: hidden;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.3);
}

.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: hidden;
    pointer-events: none;
}

.footer-wave-top:before, 
.footer-wave-top:after,
.footer-wave-top .wave-layer-3 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: 50% 100%;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    contain: strict;
}

.footer-wave-top:before {
    background-image: url('../images/wave-footer.svg');
    animation: wave-animation-1 120s linear infinite;
    z-index: 3;
    opacity: 1;
}

.footer-wave-top:after {
    background-image: url('../images/wave-footer-2.svg');
    animation: wave-animation-2 90s linear infinite;
    z-index: 2;
    top: 10px;
}

.footer-wave-top .wave-layer-3 {
    background-image: url('../images/wave-footer-3.svg');
    animation: wave-animation-3 150s linear infinite;
    z-index: 1;
    top: 15px;
}

@keyframes wave-animation-1 {
    0% {
        transform: translateX(0) translateZ(0);
    }
    25% {
        transform: translateX(-10%) translateZ(0);
    }
    50% {
        transform: translateX(-25%) translateZ(0);
    }
    75% {
        transform: translateX(-40%) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

@keyframes wave-animation-2 {
    0% {
        transform: translateX(0) translateZ(0);
    }
    50% {
        transform: translateX(-25%) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

@keyframes wave-animation-3 {
    0% {
        transform: translateX(0) translateZ(0);
    }
    33% {
        transform: translateX(-15%) translateZ(0);
    }
    66% {
        transform: translateX(-35%) translateZ(0);
    }
    100% {
        transform: translateX(-50%) translateZ(0);
    }
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dots.svg');
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section {
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    background-color: rgba(26, 42, 80, 0.3);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(26, 42, 80, 0.5);
    z-index: 3;
}

.footer-section:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 2px;
    background: rgba(249, 199, 108, 0.5);
    transition: transform 0.4s ease;
}

.footer-section:hover:after {
    transform: translateX(-50%) scaleX(1);
}

.footer-section h3 {
    color: #f9c76c;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4a84f, rgba(212, 168, 79, 0.3));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-logo {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(12, 26, 56, 0.4);
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 168, 79, 0.4));
    animation: footer-logo-pulse 3s ease-in-out infinite;
}

@keyframes footer-logo-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 168, 79, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgba(249, 199, 108, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 168, 79, 0.3));
    }
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(212, 168, 79, 0.15);
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    padding: 0;
    text-align: center;
}

.footer-social a:before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d4a84f;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover:before {
    opacity: 0.2;
    transform: scale(1);
}

.footer-social a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.footer-links-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 15px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    transition: transform 0.2s ease;
}

.footer-links li:hover {
    transform: none;
}

.footer-links a {
    color: rgba(245, 245, 245, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 0;
    width: 100%;
    border-radius: 5px;
    position: relative;
    background-color: transparent;
}

.footer-links a:before {
    content: none;
    display: none;
}

.footer-links a:hover {
    color: #ffffff;
    background-color: rgba(26, 42, 80, 0.5);
}

.footer-links a:hover:before {
    width: 0;
    display: none;
}

.footer-links a i {
    margin-left: 10px;
    font-size: 14px;
    color: #d4a84f;
    transition: color 0.3s ease;
}

.footer-links a:hover i {
    color: #f0bc5e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background-color: rgba(26, 42, 80, 0.2);
    height: 50px;
    box-sizing: border-box;
    position: relative;
}

.contact-item i {
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    color: #d4a84f;
    transition: all 0.3s ease;
    font-size: 18px;
    background-color: rgba(212, 168, 79, 0.1);
    border-radius: 50%;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 35px;
}

.contact-item:hover {
    background-color: rgba(26, 42, 80, 0.5);
    transform: translateX(5px);
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item:hover p {
    color: #ffffff;
}

.footer-divider {
    display: flex;
    align-items: center;
    margin: 40px 0;
}

.footer-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.01));
}

.divider-icon {
    margin: 0 20px;
    color: #f9c76c;
    font-size: 22px;
    animation: gentle-pulse 3s infinite ease-in-out;
}

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

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright p {
    position: relative;
    transition: color 0.3s ease;
}

.copyright p:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 0;
}

.footer-bottom-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #f9c76c;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f9c76c;
}

.footer-bottom-links a:hover:after {
    width: 100%;
}

/* Responsive adjustments for footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section {
        min-height: 280px;
    }
    
    .about-section {
        order: 1;
    }
    
    .links-section {
        order: 2;
    }
    
    .contact-section {
        order: 3;
    }
    
    .newsletter-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-section p {
        max-width: 100%;
    }
    
    .footer-links-container {
        gap: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-section {
        min-height: 250px;
    }
    
    .footer-section:hover {
        transform: translateY(-3px);
    }
    
    .footer-wave-top {
        height: 50px;
    }
    
    .footer-wave-top:before, 
    .footer-wave-top:after,
    .footer-wave-top .wave-layer-3 {
        background-size: 60% 100%;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-divider {
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 25px;
    }
    
    .footer-wave-top {
        height: 40px;
    }
    
    .footer-wave-top:before, 
    .footer-wave-top:after,
    .footer-wave-top .wave-layer-3 {
        background-size: 70% 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-section {
        min-height: 220px;
        padding: 12px;
    }
    
    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-links-container {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-links {
        min-width: 45%;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        padding: 6px 6px 6px 0;
    }
    
    .about-section {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .links-section {
        order: 2;
    }
    
    .contact-section {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-section {
        order: 4;
        grid-column: 1 / -1;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 15px;
    }
    
    .newsletter-section p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 450px;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-wave-top {
        height: 30px;
    }
    
    .footer-wave-top:before, 
    .footer-wave-top:after,
    .footer-wave-top .wave-layer-3 {
        background-size: 80% 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        padding: 15px;
        min-height: auto;
    }
    
    .about-section,
    .links-section,
    .contact-section,
    .newsletter-section {
        order: initial;
        grid-column: 1;
    }
    
    .footer-links-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        margin-top: 8px;
    }
    
    .footer-divider {
        margin: 25px 0;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .divider-icon {
        margin: 0 15px;
    }
    
    .footer-section:hover {
        transform: translateY(-3px);
    }
    
    .newsletter-consent {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a i {
        font-size: 13px;
        margin-left: 8px;
    }
}

@media (max-width: 360px) {
    .footer-links-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        padding: 5px 5px 5px 0;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-item i {
        font-size: 14px;
    }
}

.about-section .footer-logo {
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section h3 {
    align-self: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Stacked layout for all devices */
@media (min-width: 993px) {
    .newsletter-form .form-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 30px;
        width: 100%;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.newsletter-form input[type="email"]:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(212, 168, 79, 0.5);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(212, 168, 79, 0.3);
}
