/* assets/css/contact.css - Contact page specific styles */


/* Hero Section */

.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #030d18 0%, #042f46 50%, #065273 100%);
    color: white;
    overflow: hidden;
}

.hero-contact {
    background: linear-gradient(135deg, #030d18 0%, #042f46 40%, #008bc2 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.page-hero h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-hero h1 .italic {
    font-style: italic;
    font-weight: 400;
    color: #6ddcff;
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Sections */

.section {
    padding: 5rem 1.5rem;
}

.section-inner {
    max-width: 1152px;
    margin: 0 auto;
}

.section-paper {
    background: #f8fafc;
}

.section-white {
    background: white;
}

.section-sm {
    padding: 3rem 1.5rem;
}


/* Divider */

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #05aee4, #6ddcff);
    margin: 1rem 0 1.5rem;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}


/* Typography */

.eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #05aee4;
    margin-bottom: 1rem;
}

.d3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #071c2e;
}

.d3 .italic {
    font-style: italic;
    font-weight: 400;
    color: #05aee4;
}


/* Contact Grid */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    color: #64748b;
    line-height: 1.7;
    margin: 1rem 0 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: #eefbff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05aee4;
    flex-shrink: 0;
}

.contact-detail-text span {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.contact-detail-text strong {
    font-size: 1rem;
    color: #071c2e;
    font-weight: 600;
}


/* Quote Form */

.quote-form {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #071c2e;
    margin-bottom: 0.5rem;
}

.form-title-sub {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #05aee4;
    box-shadow: 0 0 0 3px rgba(5, 174, 228, 0.1);
}

.btn-lg {
    padding: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}


/* Flash messages */

.flash {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.flash.ok {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.flash.err {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* Map */

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Fade animations */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Buttons */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #05aee4, #008bc2);
    color: white;
    box-shadow: 0 4px 20px rgba(5, 174, 228, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(5, 174, 228, 0.5);
    background: linear-gradient(135deg, #26c8f8, #05aee4);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}


/* Responsive */

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .d3 {
        font-size: 1.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 3rem 1rem;
    }
}