/* Contact Page Modern Styles */

.contact-hero {
    position: relative;
    background: var(--primary);
    color: var(--text-inverted);
    padding: 6rem 0 8rem;
    text-align: center;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.2), transparent 60%),
        radial-gradient(circle at bottom left, rgba(10, 17, 40, 0.6), transparent 60%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-inverted);
    margin-bottom: 1.5rem;
}

.contact-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Floating Contact Cards Grid */
.contact-section {
    margin-top: -4rem; /* Overlap hero */
    padding-bottom: 6rem;
    position: relative;
    z-index: 20;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-card-modern {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.contact-card-modern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-modern:hover::after {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.contact-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-card-modern p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.contact-action-btn {
    margin-top: auto;
    width: 100%;
}

/* Process Steps Row */
.contact-process {
    padding: 6rem 0;
    background: var(--background);
}

.contact-process h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .process-timeline::before {
        display: block;
    }
}

.process-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 1rem;
}

.process-marker {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--text-inverted);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--background); /* Creates gap from line */
    box-shadow: 0 0 0 2px var(--secondary);
}

.process-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ/Info Section */
.contact-info-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .contact-info-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.info-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.checklist-modern {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.checklist-modern li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-weight: 500;
}

.checklist-modern li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 800;
}
