.gb-contact { background: #3f3f44; color: #f5f7fa; width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
.gb-contact-hero {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2.5rem; padding: 2.5rem 3rem 3rem; max-width: 1400px; margin: 0 auto;
}
.gb-contact-copy { max-width: 720px; }
.gb-contact-kicker { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 0.75rem; }
.gb-contact-title { font-size: clamp(2.2rem,3vw,3rem); font-weight: 700; margin: 0; }
.gb-contact-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.9rem; }
.gb-contact-cta {
    display: inline-block; background: linear-gradient(135deg, #2E7D32, #43A047);
    color: #fff; padding: 1rem 2.5rem; border-radius: 30px; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; border: none;
    box-shadow: 0 4px 20px rgba(46, 125, 50,0.3); transition: all .35s ease; min-width: 240px; text-align: center;
    position: relative; overflow: hidden;
}
.gb-contact-cta::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    border-radius: 50%; background: rgba(255,255,255,0.3); transform: translate(-50%,-50%);
    transition: width .6s, height .6s;
}
.gb-contact-cta:hover::before { width: 300px; height: 300px; }
.gb-contact-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 35px rgba(46, 125, 50,0.5); }
.gb-contact-email { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 1.05rem; transition: color .2s; }
.gb-contact-email:hover { color: #5BD15F; }
.gb-contact-locations {
    display: grid; grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 2rem; padding: 1.75rem 3rem 3rem; max-width: 1400px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.gb-location-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.75); font-weight: 600; justify-content: center; }
.gb-location-item .gb-flag { width: 28px; height: 20px; border-radius: 4px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.gb-location-text { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.95rem; }
.gb-location-text span:last-child { color: rgba(255,255,255,0.55); font-weight: 500; }

/* Modal */
.gb-contact-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 2000; }
.gb-contact-modal.open { display: flex; }
.gb-contact-modal-backdrop { position: absolute; inset: 0; background: rgba(10,10,15,0.6); backdrop-filter: blur(6px); }
.gb-contact-modal-panel {
    position: relative; background: #fff; border-radius: 18px; padding: 2.5rem;
    width: min(560px,92vw); max-height: 80vh; overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25); z-index: 1;
}
.gb-contact-modal-panel h3 { margin-bottom: 1.5rem; color: #1A1F22; }
.gb-contact-modal-close { position: absolute; right: 18px; top: 14px; border: none; background: transparent; font-size: 1.6rem; color: #5D6D7E; }
.gb-contact-modal-close:hover { color: #2E7D32; }
.gb-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.gb-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.gb-form-group label { color: #1A1F22; font-weight: 600; }
.gb-form-group input, .gb-form-group textarea, .gb-form-group select {
    width: 100%; padding: 0.9rem 1rem; border: 2px solid #BDC3C7; border-radius: 10px;
    font-family: inherit; font-size: 1rem; transition: border-color .3s; box-sizing: border-box;
}
.gb-form-group input:focus, .gb-form-group textarea:focus, .gb-form-group select:focus { outline: none; border-color: #2E7D32; }
.gb-form-group textarea { resize: vertical; min-height: 140px; }
.gb-form-consent { display: flex; gap: 0.75rem; font-size: 0.9rem; color: #5D6D7E; }
.gb-form-consent input { margin-top: 0.2rem; }

/* Dark mode */
body.dark-mode .gb-contact { background: #1a1a2e; }
body.dark-mode .gb-contact-modal-panel { background: #0f172a; border: 1px solid rgba(46, 125, 50,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
body.dark-mode .gb-contact-modal-panel h3 { color: #e6edf3; }
body.dark-mode .gb-contact-modal-close { color: #8b9ab0; }
body.dark-mode .gb-contact-modal-close:hover { color: #5BD15F; }
body.dark-mode .gb-contact-form input,
body.dark-mode .gb-contact-form textarea,
body.dark-mode .gb-contact-form select { background: #1a2744; color: #e6edf3; border-color: rgba(255,255,255,0.15); }
body.dark-mode .gb-contact-form input::placeholder,
body.dark-mode .gb-contact-form textarea::placeholder { color: rgba(230,237,243,0.38); }
body.dark-mode .gb-contact-form label { color: #e6edf3; }
body.dark-mode .gb-form-consent { color: #8b9ab0; }
body.dark-mode .gb-form-group input:focus,
body.dark-mode .gb-form-group textarea:focus,
body.dark-mode .gb-form-group select:focus { border-color: #5BD15F; }

@media (max-width: 768px) {
    .gb-contact-hero { flex-direction: column; align-items: flex-start; padding: 2.5rem 1.5rem 2rem; }
    .gb-contact-action { align-items: flex-start; width: 100%; }
    .gb-contact-cta { width: 100%; }
    .gb-contact-locations { grid-template-columns: 1fr 1fr; padding: 1.5rem; }
}
@media (max-width: 480px) {
    .gb-contact-locations { grid-template-columns: 1fr; }
}
