@import "variables.css";

/* ========================================
   MODERN FOOTER STYLES
======================================== */
.footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #051630 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(0, 102, 175, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(0, 102, 175, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Footer Top Section */
.footer-top {
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 1;
}

.footer-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    margin-bottom: 3rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.footer-highlight-copy {
    max-width: 640px;
}

.footer-eyebrow {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 102, 175, 0.16);
    color: #9fd1ff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-highlight-title {
    color: white;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0.85rem;
}

.footer-highlight-text {
    margin: 0;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-highlight-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 14px 32px rgba(0, 102, 175, 0.3);
}

.footer-cta-primary:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.14);
}

/* Footer Brand */
.footer-brand {
    max-width: 340px;
}

.footer-logo h3 {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-fact {
    display: flex;
    flex-direction: column;
    min-width: 110px;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-fact strong {
    color: white;
    font-size: 1rem;
    font-weight: 800;
}

.footer-fact span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.625rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 175, 0.4);
}

/* Footer Widgets */
.footer-widget {
    position: relative;
}

.widget-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    padding-bottom: 0.875rem;
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 0 solid var(--primary-color);
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 0;
}

.footer-links a:hover::before {
    border-left-width: 6px;
    margin-right: 8px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-intro {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 175, 0.2), rgba(0, 102, 175, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.footer-contact .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact .contact-text .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.footer-contact .contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact .contact-text a:hover {
    color: var(--primary-color);
}

.footer-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.25rem;
    color: #9fd1ff;
    font-weight: 600;
    text-decoration: none;
}

.footer-inline-link:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.copyright-text strong {
    color: white;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 102, 175, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 175, 0.5);
    color: white;
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE FOOTER STYLES
======================================== */
@media (max-width: 1199px) {
    .footer-top {
        padding: 4.5rem 0 3.5rem;
    }

    .footer-highlight {
        padding: 1.75rem 1.85rem;
    }
    
    .footer-brand {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .footer-top {
        padding: 4rem 0 3rem;
    }

    .footer-highlight {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }

    .footer-highlight-actions {
        width: 100%;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.625rem;
    }
    
    .footer-social {
        justify-content: center;
    }

    .footer-facts {
        justify-content: center;
    }
    
    .widget-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-contact-intro,
    .footer-inline-link {
        text-align: center;
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.75rem;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-highlight {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .footer-highlight-title {
        font-size: 1.55rem;
    }

    .footer-highlight-text {
        font-size: 0.92rem;
    }

    .footer-cta {
        width: 100%;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .widget-title {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .footer-fact {
        min-width: calc(50% - 0.4rem);
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
        border-radius: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 1.25rem;
    }
    
    .footer-contact .contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .footer-contact .contact-text a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .copyright-text {
        font-size: 0.8125rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8125rem;
    }
    
    .back-to-top {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-highlight {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .footer-eyebrow {
        font-size: 0.72rem;
    }
    
    .footer-logo h3 {
        font-size: 1.375rem;
    }
    
    .footer-tagline {
        font-size: 0.8125rem;
    }

    .footer-facts {
        flex-direction: column;
    }

    .footer-fact {
        min-width: 100%;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.625rem;
    }
    
    .footer-contact .contact-text {
        align-items: center;
    }
    
    .footer-contact .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
        border-radius: 10px;
        font-size: 0.9375rem;
    }
}

/* ========================================
   BACKGROUND STYLES
======================================== */

/* Page Header */
.py-3.bg-primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    ) !important;
    position: relative;
    overflow: hidden;
}

.py-3.bg-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Background Styles */
.bg-gradient {
    background: linear-gradient(135deg, var(--dark-bg), #051630);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.bg-gradient-primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.bg-light-pattern {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.bg-light-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.bg-light-subtle {
    background-color: #f8f9fa;
}

/* Utility Classes */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gradient-text {
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--primary-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Responsive Styles */
@media only screen and (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }

    .navbar-light .navbar-nav .nav-link::after {
        bottom: 0;
    }
}

@media only screen and (max-width: 768px) {
    .intro-heading {
        font-size: 2rem;
        text-align: center;
        margin-top: 1rem;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .intro-img {
        height: 260px;
        object-fit: contain;
        float: none;
        margin: 0 auto;
        display: block;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer h5,
    .footer p,
    .footer ul {
        text-align: center;
    }

    .footer-icon {
        margin-right: 5px;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Responsive Footer Styles */
@media (max-width: 991px) {
    .footer {
        padding: 2.5rem 0 1rem;
        text-align: center;
    }

    .footer .row > div {
        margin-bottom: 2rem;
    }

    .footer h5 {
        margin-bottom: 1rem;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer .row > div {
        margin-bottom: 1.5rem;
    }

    .list-unstyled a {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }

    .copyright {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 1.5rem 0 0.75rem;
    }

    .footer h5 {
        font-size: 1rem;
    }

    .footer .row > div {
        margin-bottom: 1rem;
    }

    .list-unstyled a {
        font-size: 0.85rem;
    }
}

/* Responsive page headers */
@media (max-width: 767px) {
    .py-3.bg-primary {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-3.bg-primary h1 {
        font-size: 1.5rem;
    }

    .py-3.bg-primary p {
        font-size: 0.9rem;
    }
}

/* Responsive background patterns */
@media (max-width: 575px) {
    .bg-gradient::before,
    .bg-gradient-primary::before,
    .bg-light-pattern::before {
        opacity: 0.3;
    }
}

/* Additional utility classes for mobile */
@media (max-width: 767px) {
    .text-center-mobile {
        text-align: center !important;
    }

    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }

    .mt-mobile-3 {
        margin-top: 1rem !important;
    }

    .px-mobile-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* Container adjustments for mobile */
@media (max-width: 575px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Improved section spacing for mobile */
@media (max-width: 767px) {
    section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    section .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
