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

.footer-minimal {
    background: #ffffff;
    color: #1f2937;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.dark-mode .footer-minimal {
    background: #080808;
    color: white;
}

.footer-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff9201, #ff6b00, #00b1e1);
    opacity: 0.6;
}

.dark-mode .footer-gradient-border {
    opacity: 1;
}

.footer-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #00b1e1;
    opacity: 0.02;
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.dark-mode .footer-glow-1 {
    opacity: 0.04;
}

.footer-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: #ff9201;
    opacity: 0.02;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.dark-mode .footer-glow-2 {
    opacity: 0.03;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.875rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, #ff9201, #00b1e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
    max-width: 20rem;
    line-height: 1.6;
}

.dark-mode .footer-tagline {
    color: #a1a1aa;
}

.footer-tagline-highlight {
    color: #1f2937;
    font-weight: 500;
}

.dark-mode .footer-tagline-highlight {
    color: white;
}

.footer-slogan {
    padding-top: 0.5rem;
}

.footer-slogan-text {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ff9201;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col-title.cyan { color: #00b1e1; }
.footer-col-title.orange { color: #ff9201; }
.footer-col-title.gray { color: #6b7280; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.dark-mode .footer-link {
    color: #a1a1aa;
}

.footer-link:hover {
    color: #1f2937;
    padding-left: 0.25rem;
}

.dark-mode .footer-link:hover {
    color: white;
}

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

.footer-social-btn {
    padding: 0.625rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
    color: #9ca3af;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dark-mode .footer-social-btn {
    background: rgba(255,255,255,0.08);
    color: #a1a1aa;
}

.footer-social-btn i {
    font-size: 1rem;
}

.footer-social-btn.instagram:hover {
    background: linear-gradient(to bottom right, #E1306C, #C13584);
    color: white;
    box-shadow: 0 10px 25px rgba(225,48,108,0.2);
}

.footer-social-btn.twitter:hover {
    background: #1DA1F2;
    color: white;
    box-shadow: 0 10px 25px rgba(29,161,242,0.2);
}

.footer-social-btn.linkedin:hover {
    background: #0077B5;
    color: white;
    box-shadow: 0 10px 25px rgba(0,119,181,0.2);
}

.footer-social-btn.globe:hover {
    background: linear-gradient(to bottom right, #ff9201, #ff6b00);
    color: white;
    box-shadow: 0 10px 25px rgba(255,146,1,0.2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    font-weight: 500;
}

.dark-mode .footer-bottom {
    border-top-color: rgba(255,255,255,0.08);
    color: #71717a;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #00b1e1;
}

.footer-location {
    transition: color 0.3s;
    cursor: default;
}

.footer-location:hover {
    color: #ff9201;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-col.socials {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
    
    .footer-container {
        padding: 0 3rem;
    }
}

@media (max-width: 480px) {
    .footer-minimal {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-slogan-text {
        font-size: 1.25rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* Ultra-wide monitors */
@media (min-width: 2560px) {
    .footer-container {
        max-width: 1800px;
        padding: 0 4rem;
    }
    
    .footer-logo {
        font-size: 2.5rem;
    }
    
    .footer-slogan-text {
        font-size: 2rem;
    }
}

/* Vertical monitors */
@media (max-height: 900px) and (min-width: 769px) {
    .footer-minimal {
        padding: 3rem 0 1.5rem;
    }
}
