/* Contact Page 2025 Modern Design */

:root {
    --contact-card-bg: rgba(255, 255, 255, 0.8);
    --contact-backdrop: blur(20px);
    --contact-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    --contact-accent: #0a6a6e;
    --contact-accent-gradient: linear-gradient(135deg, #0a6a6e 0%, #089096 100%);
    --input-bg: #f8fafc;
    --input-border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

/* Fix for header strip color */
body.contact-page {
    background-color: #003b46;
}

#contact-page-section {
    background: linear-gradient(180deg, #66a5ad 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.contact-decor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 106, 110, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 144, 150, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 50px;
    left: -100px;
}

/* Contact Info Cards */
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--contact-card-bg);
    backdrop-filter: var(--contact-backdrop);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--contact-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 106, 110, 0.1);
}

.icon-box-modern {
    width: 50px;
    height: 50px;
    background: rgba(10, 106, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--contact-accent);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box-modern {
    background: var(--contact-accent-gradient);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--contact-accent);
}

/* Contact Form */
.contact-form-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1e293b 0%, #3e4e68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-modern:focus {
    border-color: var(--contact-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 106, 110, 0.1);
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

textarea.form-control-modern {
    min-height: 150px;
    resize: vertical;
}

.btn-submit-modern {
    background: var(--contact-accent-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 106, 110, 0.25);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

/* Map Section */
.map-modern-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--contact-shadow);
    height: 450px;
    position: relative;
    margin-top: 40px;
}

.map-modern-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
    /* Slightly custom look for the map */
}