/* Main Content */
body {
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}

#main {
    scroll-margin-top: calc(var(--header-height) + 8px);
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
    background: linear-gradient(180deg, var(--espresso) 0%, rgba(60, 36, 21, 0.95) 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background: 
        radial-gradient(circle at 20% 80%, var(--warm-beige) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--warm-taupe) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(120deg); }
    66% { transform: scale(0.95) rotate(240deg); }
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    overflow: visible;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-beige);
    font-weight: 800;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 30px;
}

.contact-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 9vw, 8rem);
    line-height: 1.1;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    overflow: visible;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(92deg, 
        var(--pure-white) 0%, 
        var(--warm-beige) 25%, 
        var(--light-beige) 50%, 
        var(--warm-beige) 75%, 
        var(--pure-white) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.contact-hero-subtitle {
    font-size: 1.35rem;
    color: var(--sand);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
}

.contact-hero-subtitle strong {
    color: var(--warm-beige);
    font-weight: 600;
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-main {
    padding: 0 0 6rem;
    background: var(--cream);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
}

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

/* Form Spotlight */
.form-spotlight {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 70px rgba(60, 36, 21, 0.12);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

/* Progress Indicator */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--warm-beige);
    color: var(--pure-white);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--warm-beige-dark);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 1rem;
    margin-top: -20px;
    position: relative;
}

.progress-line.completed {
    background: var(--warm-beige);
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--espresso);
    margin-bottom: 0.5rem;
}

.form-section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: var(--warm-beige-dark);
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--warm-beige);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Additional Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-checkbox:hover {
    border-color: var(--warm-beige);
    background: var(--sand);
}

.service-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-checkbox label {
    font-size: 0.95rem;
    color: var(--espresso);
    cursor: pointer;
}

.service-checkbox input[type="checkbox"]:checked + label {
    color: var(--warm-beige-dark);
    font-weight: 600;
}

/* Form Checkbox */
.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-beige-dark) 100%);
    color: var(--pure-white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.form-submit:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Trust Sidebar */
.trust-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /*position: sticky;
    top: 100px;*/
    position: relative;
    top: 0;
    height: fit-content;
}

@media (max-width: 1024px) {
    .trust-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

/* Response Card */
.response-card {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-taupe) 100%);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.25);
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.response-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--pure-white);
}

.response-card p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Trust Metrics */
.trust-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.metric-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--warm-beige-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Network Preview */
.network-preview {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--sand);
}

.network-preview h3 {
    font-size: 1.25rem;
    color: var(--espresso);
    margin-bottom: 1rem;
}

.network-preview p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.network-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.network-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.network-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--warm-beige);
    font-weight: bold;
}

.network-link {
    display: inline-block;
    color: var(--warm-beige-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.network-link:hover {
    color: var(--warm-beige-darker);
    transform: translateX(4px);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--sand);
}

.stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.875rem;
    color: var(--warm-beige-dark);
    font-weight: 600;
    font-style: normal;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--espresso) 0%, #2a1810 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,165,116,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.why-section .section-title {
    color: var(--pure-white);
    margin-bottom: 4rem;
    text-align: center;
    font-size: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--warm-beige);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.why-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--warm-beige);
    opacity: 0.2;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--warm-beige);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--sand);
    line-height: 1.6;
    opacity: 0.9;
}



/* ===== RESPONSIVE REFINEMENTS ===== */

@media (max-width: 768px) {
    .contact-hero {
        padding: 5rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 4rem;
        line-height: 1.1;
        letter-spacing: 0.01em;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    

    .form-spotlight {
        padding: 2rem 1.5rem;
    }
    
    .form-progress {
        padding: 0;
    }
    
    .progress-step {
        gap: 0.25rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .progress-line {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .form-submit {
        width: 100%;
        padding: 1.25rem 2rem;
    }
}

