/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF7A2D;
    --primary-hover: #E66A25;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --footer-bg: #000000;
    /* --container-width: 1200px; */
    --container-width: 1000px;
    --transition: all 0.3s ease;
}

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: ui-sans-serif, system-ui, sans-serif;;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    /* max-width: 100%; */
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
}

/* Header */
/* .header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
} */

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    /* background: radial-gradient(circle at top right, rgba(255, 122, 45, 0.05), transparent),
                radial-gradient(circle at top left, rgba(255, 122, 45, 0.05), transparent); */
}

.badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtext {
    /* max-width: 600px; */
    max-width: 670px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 20px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 400px;
}

.expect-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.expect-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.expect-box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.expect-box li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.expect-box li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Form Styles */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--primary-color);
}

input, select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 122, 45, 0.1);
}

/* reCAPTCHA Placeholder */
.recaptcha-placeholder {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    width: fit-content;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    font-size: 10px;
    color: #555;
}

.recaptcha-logo img {
    width: 24px;
    margin-bottom: 2px;
}

.form-footer {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.form-footer a {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Footer */
/* .footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-nav {
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #999;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tagline {
    font-size: 14px;
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #999;
}

.social-links a:hover {
    color: var(--white);
}

.footer-copyright {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.legal-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.legal-links a {
    color: #999;
} */

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero-subtext, .badge {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-subtext {
    animation-delay: 0.2s;
}

.contact-grid {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.4s;
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        text-align: center;
    }

    .logo-small {
        justify-content: center;
    }

    .contact-info p {
        margin: 0 auto 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-copyright {
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 20px;
    }

    .hero {
        /* padding: 60px 0 40px; */

        padding: 20px 0;
    }

    .hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px){
    .hero{
        padding: 20px 0;
    }

    .badge{
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero h1{
        font-size: 28px;
    }

    .hero-subtext{
        font-size: 16px;
    }

    .logo-small{
        margin-bottom: 10px;
    }

    .contact-info h2{
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-info p{
        font-size: 16px;
    }

    .contact-section{
        /* padding: 12px 0 40px; */
        padding: 12px 0 0px;
    }
}

.privacy-style-footer-sec-link {
    margin-top: 0px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.xon-privacy-terms-sec-style {
    padding-top: 0px !important;
}

@media (max-width: 480px){
    .gap-form-0{
        gap: 0px !important;
    }
}
