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

/* Corpo */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0f172a;
    color: #f8fafc;
    line-height: 1.8;
}

/* Cabeçalho */
.site-header {
    background: rgba(0, 31, 63, 0.65);
    /* More translucent for better glass effect */
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    /* Increased blur for "WOW" factor */
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.5s ease, color 0.5s ease;
}

/* Page Internal Blur Effect (Sunrise/Sunset) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    box-sizing: border-box;
    transition: all 1.2s ease;
}

body.theme-sunrise::before {
    box-shadow: inset 0 0 15px 10px rgba(88, 152, 235, 0.4);
}

body.theme-sunset::before {
    box-shadow: inset 0 0 15px 10px rgba(6, 38, 90, 0.4);
}



.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 50px;
}

.header-col-logo {
    align-self: start;
    padding-top: 5px;
}

.header-col-middle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    /* Slightly reduced gap between rows */
}

.header-col-contact {
    align-self: end;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

.site-header .logo img {
    height: 70px;
    width: auto;
    display: block;
}

.header-title-large {
    color: #ffdd57;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header .logo img {
    height: 60px;
    width: auto;
    display: block;
    margin-top: -5px;
}

/* Menu desktop */
.site-menu {
    display: flex;
    align-items: center;
    gap: 8px 15px;
    width: 100%;
}

.menu-row-1 {
    justify-content: flex-start;
}

.menu-row-2 {
    justify-content: center;
    /* Center the bottom row for better balance */
    padding-top: 2px;
}

.menu-break {
    flex-basis: 100%;
    height: 0;
}

.site-menu a {
    color: #fff;
    margin-right: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #001f3f;
}

.site-menu a:hover {
    background-color: transparent;
    color: #ffdd57;
    border: 1px solid #fff;
}

.menu-fixed-item {
    background: rgba(255, 255, 255, 0.12);
    /* Brighter translucency */
    color: #fff !important;
    padding: 8px 18px !important;
    /* Slightly wider */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Softer border */
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-fixed-item:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffdd57 !important;
    border-color: #ffdd57;
    box-shadow: 0 0 20px rgba(255, 221, 87, 0.3);
}

.contact-btn-wrapper {
    margin-left: auto !important;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Contact Button Icon Animation (External) */
.contact-btn-wrapper .contact-btn-icon {
    width: 0;
    height: 40px;
    /* Increased to more "normal" size */
    opacity: 0;
    transition: 0.3s ease-in-out;
    margin-right: 0;
    pointer-events: none;
    object-fit: contain;
}

.contact-btn-wrapper:hover .contact-btn-icon {
    width: 40px;
    /* Match standard visible width */
    opacity: 1;
    margin-right: 12px;
}

/* Social Links */
.social-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links a {
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a.facebook {
    color: #1877F2;
}

.social-links a.instagram {
    color: #E4405F;
}

/* Menu Toggle (Mobile Only) */
.menu-toggle {
    display: none;
}

.social-links a.whatsapp {
    color: #25D366;
}

.social-links a:hover {
    filter: brightness(1.2);
    transform: translateY(-3px) scale(1.1);
}

.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .header-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 10px 10px;
        grid-template-columns: unset;
        gap: 5px;
        max-width: 100vw;
        overflow: hidden;
    }

    .header-col-middle {
        display: flex;
        flex: 1;
        align-items: center;
        padding-left: 5px;
        min-width: 0;
    }

    .header-title-large {
        font-size: 11px;
        line-height: 1.2;
        white-space: normal !important;
        /* Force wrap even if overridden */
        text-align: left;
        color: #ffdd57;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .header-col-contact,
    .site-menu,
    .social-links {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        font-size: 22px;
        color: #ffdd57;
        cursor: pointer;
        padding: 5px;
    }

    .header-col-logo img {
        height: 32px !important;
        width: auto !important;
        /* Force natural aspect ratio */
        display: block;
    }

    .mobile-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1e293b;
        padding: 20px;
        border-top: 1px solid #334155;
    }

    .mobile-menu.active {
        display: flex !important;
    }
}

.mobile-menu a {
    color: white;
    padding: 15px 0;
    text-decoration: none;
    border-bottom: 1px solid #334155;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #ffdd57;
}

/* Background Levels */
body.bg-level-0 {
    background-color: #0f172a;
}

body.bg-level-1 {
    background-color: #111827;
}

body.bg-level-2 {
    background-color: #1f2937;
}

body.bg-level-3 {
    background-color: #111827;
}

body.bg-level-4 {
    background-color: #0f172a;
}

body.bg-auth {
    background-color: #001f3f;
    color: #fff;
}

.bg-auth .login-box {
    color: #333;
}

/* Conteúdo Principal */
.site-content {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

/* Rodapé */
.site-footer {
    padding: 60px 40px 30px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand {
    font-size: 22px !important;
    margin-bottom: 20px !important;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 15px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #ffdd57;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.footer-social .social-icon:hover {
    background: #ffdd57;
    color: #001f3f;
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Support System */
.site-footer {
    background: rgba(0, 31, 63, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    color: #fff;
    margin-top: 20px;
    text-align: center;
    transition: all 0.5s ease;
}



.support-container {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #334155;
    padding-bottom: 15px;
}

.support-header h1 {
    color: #fff;
    font-size: 24px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e1;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #001f3f;
    color: #fff;
}

.btn-primary:hover {
    background: #003366;
    transform: translateY(-2px);
}

/* Ticket List */
.ticket-list {
    list-style: none;
    margin-top: 20px;
}

.support-container {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #fff;
    transition: all 0.5s ease;
}



.ticket-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #fff;
}



.ticket-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: #ffdd57;
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}



.form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffdd57 !important;
    box-shadow: 0 0 15px rgba(255, 221, 87, 0.2);
}

.ticket-info {
    flex: 1;
}

.ticket-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.ticket-info span {
    font-size: 13px;
    color: #718096;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-aberto {
    background: #e6fffa;
    color: #2c7a7b;
}

.badge-respondido {
    background: #ebf8ff;
    color: #2b6cb0;
}

.badge-fechado {
    background: #edf2f7;
    color: #4a5568;
}

.ticket-item.status-aberto {
    border-left-color: #38b2ac;
}

.ticket-item.status-respondido {
    border-left-color: #4299e1;
}

.ticket-item.status-fechado {
    border-left-color: #a0aec0;
}

/* Ticket Details & Interações */
.interaction-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interaction-item {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 15px;
    position: relative;
}

.interaction-user {
    align-self: flex-start;
    background: #334155;
    color: #fff;
    border-bottom-left-radius: 2px;
}

.interaction-admin {
    align-self: flex-end;
    background: #001f3f;
    color: #fff;
    border-bottom-right-radius: 2px;
}

.interaction-meta {
    font-size: 11px;
    margin-bottom: 5px;
    opacity: 0.8;
    display: block;
}

.interaction-content {
    line-height: 1.5;
    word-wrap: break-word;
}

/* Botão Voltar Centrado */
.back-container {
    display: flex;
    justify-content: center;
    margin: 50px 0 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: #001f3f;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2);
    border: 2px solid transparent;
}

.btn-back:hover {
    background: #003366;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.3);
    color: #ffdd57;
    border-color: #ffdd57;
}

.btn-back i {
    font-size: 28px;
}

/* Home Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: #001f3f;
    position: relative;
    overflow: hidden;
}

.hero-glass-overlay {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.3);
    /* Even more translucent */
    backdrop-filter: blur(20px);
    /* Massive blur for depth */
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}



.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 32px;
    color: #ffdd57;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary {
    background: #ffdd57 !important;
    color: #001f3f !important;
    border: none !important;
}

.btn-primary:hover {
    background: #f8fafc !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 221, 87, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #f0f2f5;
    color: #001f3f;
    transform: translateY(-3px);
}

/* Removido duplicata .home-main */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .cta-container {
        flex-direction: column;
    }
}

/* Grid de Serviços na Home */
.home-main {
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 36px;
    color: #ffdd57;
    margin-bottom: 15px;
}

.section-header p {
    color: #94a3b8;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.service-card {
    background: rgba(30, 41, 59, 0.45);
    /* Lower opacity for better blur visibility */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.noticia-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}



.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #ffdd57;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 221, 87, 0.5);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 221, 87, 0.2);
}

/* Theme Day Card Overrides */


.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-card i.card-icon {
    font-size: 40px;
    color: #ffdd57;
    line-height: 60px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.card-link {
    color: #ffdd57;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .home-main {
        padding: 20px 20px;
    }

    /* Removido conflito de font-size para mobile */
}

/* Seção de Parcerias */
.partnerships {
    padding: 20px 40px;
    background: #0f172a;
    text-align: center;
}

.partnerships h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: #ffdd57;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: #ffdd57;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.partner-logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.partner-logo-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-logo-wrapper i {
    font-size: 40px;
    color: #94a3b8;
}

.partner-card span {
    font-weight: bold;
    font-size: 16px;
}

/* Hover Info Box para Parcerias */
.partner-card {
    position: relative;
    overflow: hidden;
}

.partner-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    border-radius: 16px;
    z-index: 10;
}

.partner-card:hover .partner-hover-info {
    opacity: 1;
    visibility: visible;
}

.partner-hover-info p {
    color: #ffdd57;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
/* Contact Page Specific */
.contact-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffdd57;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header p {
    font-size: 18px;
    color: #cbd5e1;
    opacity: 0.9;
}

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

.contact-form .form-group label {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-form .form-group label i {
    color: #ffdd57;
}

.contact-form .form-control {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .form-control:focus {
    border-color: #ffdd57 !important;
    background: rgba(15, 23, 42, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 221, 87, 0.2);
    transform: translateY(-2px);
}

.contact-form .btn-submit {
    background: linear-gradient(135deg, #ffdd57 0%, #d4af37 100%);
    color: #001f3f;
    font-weight: 800;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    width: 100%;
}

.contact-form .btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 221, 87, 0.3);
    filter: brightness(1.1);
}

.success-alert {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #a7f3d0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .contact-form .grid-2-cols {
        grid-template-columns: 1fr !important;
    }
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
