/* --- Contact Section --- */
.contact-section {
    position: relative;
    background-color: #080808;
    padding: 100px 5%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Noise/Static Overlay */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* Left Side */
.contact-left {
    flex: 1;
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-orange);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
}

.contact-title .highlight-text {
    -webkit-text-stroke: 0;
    color: white;
}

.contact-subtitle {
    font-family: 'Great Vibes', 'Brush Script MT', cursive; /* Handwritten vibe */
    font-size: 2rem;
    color: #666;
    margin-bottom: 30px;
    transform: rotate(-3deg);
    display: inline-block;
}

.contact-desc {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 400px;
}

/* Service Toggles */
.service-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.toggle-btn {
    cursor: pointer;
    position: relative;
}

.toggle-btn input {
    display: none;
}

.toggle-btn span {
    display: block;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #aaa;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.toggle-btn input:checked + span {
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

/* Right Side: Form */
.contact-right {
    flex: 1;
    background: rgba(20, 20, 20, 0.5); /* Semi-transparent */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.tech-input {
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
    transition: border-color 0.3s;
    width: 100%;
}

.tech-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.full-width {
    width: 100%;
}

textarea.tech-input {
    resize: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Fake Captcha */
.captcha-placeholder {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.submit-btn {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* --- Footer (Updated) --- */
.main-footer {
    background-color: #050505;
    border-top: 1px solid #111;
    padding: 60px 0 20px 0;
    color: white;
}

.footer-top-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid #111;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    padding: 0 40px;
    text-align: left;
    min-width: 250px;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background: #222;
    transform: skewX(-20deg); /* Slanted divider */
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-col p {
    color: #ccc;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-orange {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* Center Logo & Partners */
.footer-center-logo {
    text-align: center;
    margin-bottom: 50px;
}

.big-logo {
    font-family: 'Impact', sans-serif; /* Matching brand font */
    font-size: 4rem;
    margin-bottom: 20px;
}

.big-logo .be {
    color: var(--primary-orange);
    font-style: italic;
    margin-right: 5px;
}

.big-logo .group {
    color: white;
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #222;
    color: #888;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.partner-badge:hover {
    border-color: var(--primary-orange);
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #0a0a0a;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top-row { flex-direction: column; align-items: center; text-align: center; }
    .footer-col { text-align: center; padding: 20px 0; }
    .footer-divider { display: none; }
    .footer-col p { justify-content: center; }
}
