/* ==========================================
   SPONSOR FORM PAGE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.6;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 16px;
    background-color: #131212;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

#backToTop:hover {
    background-color: #ff6200;
    border-color: #ff6200;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 98, 0, 0.3);
}

#backToTop.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.sponsor-hero {
    position: relative;
    min-height: 400px;
    background: url('/Home/images/cool-background1.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orange tint removed */
.sponsor-hero::before {
    display: none;
}

.hero-content {
    text-align: left;
    z-index: 2;
    padding: 150px 5vw 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 0px;
    letter-spacing: 2px;
    color: #ff6200;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}

.hero-content h1 span {
    color: #ff6200;
}

.hero-content p {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Helicopter removed */
.hero-drone {
    display: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        transform: translateY(-55%) rotate(5deg);
    }
}

/* Stats Banner */
.stats-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 98, 0, 0.05);
    border-color: rgba(255, 98, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 98, 0, 0.2), rgba(255, 98, 0, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff6200;
}

.stat-value {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: #ff6200;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Section */
.form-section {
    padding: 60px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.form-sidebar {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-sidebar h2 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 98, 0, 0.05);
    border-color: rgba(255, 98, 0, 0.15);
}

.benefit-card .benefit-icon {
    width: 40px;
    height: 30px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(255, 98, 0, 0.15), rgba(255, 98, 0, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ff6200;
}

.benefit-info h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.contact-info {
    padding: 20px;
    background: rgba(255, 98, 0, 0.05);
    border: 1px solid rgba(255, 98, 0, 0.1);
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ff6200;
}

.contact-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #ff6200;
    width: 16px;
}

/* Form Main */
.form-main {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-main h2 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    font-size: 14px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ff6200;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 98, 0, 0.2);
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-section-title i {
    font-size: 20px;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.required {
    color: #ff6200;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 98, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkbox-group label:hover {
    background: rgba(255, 255, 255, 0.02);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: #ff6200;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-submit,
.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6200, #d95400);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 98, 0, 0.3);
}

.btn-reset {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-reset:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 98, 0, 0.5);
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.form-notice i {
    color: #ff6200;
    font-size: 16px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

.success-message h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #4caf50;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        position: static;
    }

    .benefit-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero-drone {
        display: none;
    }

    .stats-banner {
        gap: 20px;
    }

    .stat-box {
        flex: 1 1 40%;
        min-width: 150px;
    }

    .form-main {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-reset {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sponsor-hero {
        min-height: 300px;
    }

    .stats-banner {
        gap: 15px;
        padding: 20px 10px;
    }

    .stat-box {
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
        padding: 15px 10px;
        flex-direction: row; /* Keep icon and text side-by-side or column depending on preference, but usually row is more compact */
        justify-content: flex-start;
        text-align: left;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .form-main h2 {
        font-size: 24px;
    }
}

/* Header and Footer standardization will be handled by universal CSS */

/* Reduced Footer Size for Sponsor Page */
footer {
    padding: 15px 0 5px !important;
}

.footer-container {
    padding-bottom: 10px !important;
    gap: 10px !important;
}

.footer-logo img {
    width: 180px !important;
    margin-bottom: 5px !important;
}

.footer-logo p {
    font-size: 0.75rem !important;
}

.footer-heading,
.footer-heading0 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
}

.footer-nav ul li a,
.footer-address ul li,
.footer-contact ul li a {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}

.social-links a,
.footer-social1 {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.9rem !important;
}

.footer-bottom {
    margin-top: 5px !important;
    font-size: 0.75rem !important;
    padding-bottom: 5px !important;
}