/* Premium Contact Page Styles */
:root {
    --primary-blue: #00E5FF;
    --dark-navy: #0A0A0A;
    --accent-gold: #00E5FF;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    background: #050505;
}

/* Hero Section */
.contact-hero {
    height: 60vh;
    min-height: 450px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1200') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.6) 0%, #050505 100%);
}

.contact-hero .container { position: relative; z-index: 2; }

.hero-label {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0,229,255,0.4);
}

.contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #FFFFFF, #B0B3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb { font-size: 1.1rem; font-weight: 500; margin-top: 2rem; color: #A0AAB2; }
.breadcrumb a { color: #A0AAB2; text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-gold); text-shadow: 0 0 10px rgba(0,229,255,0.4); }
.breadcrumb span { margin: 0 10px; color: #555; }
.breadcrumb .active { color: var(--accent-gold); text-shadow: 0 0 10px rgba(0,229,255,0.4); }

/* Main Contact Section */
.contact-main-section { padding: 120px 0; background: #050505; position: relative; overflow: hidden; }
.contact-main-section::before {
    content: ''; position: absolute; top: 10%; right: -20%; width: 600px; height: 600px;
    background: rgba(0,229,255,0.05); filter: blur(150px); border-radius: 50%; pointer-events: none;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: flex-start; position: relative; z-index: 2; }

.contact-info-column p { font-size: 1.15rem; color: #A0AAB2; line-height: 1.8; margin-bottom: 3rem; }

.contact-methods { display: flex; flex-direction: column; gap: 2.5rem; }

.method-item {
    display: flex; gap: 1.5rem; align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 2rem; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.method-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--card-shadow);
    background: rgba(255,255,255,0.04);
}

.method-icon {
    width: 60px; height: 60px;
    background: rgba(0, 229, 255, 0.05);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: inset 0 0 15px rgba(0,229,255,0.2);
}

.method-details h3 { font-size: 1.2rem; font-weight: 700; color: #FFFFFF; margin-bottom: 0.5rem; }
.method-details p { font-size: 1rem; color: #A0AAB2; margin-bottom: 0; line-height: 1.5; }

/* Contact Form */
.contact-form-column {
    background: rgba(255, 255, 255, 0.02);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.contact-form-column h2 { font-size: 2.2rem; font-weight: 800; color: #FFFFFF; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block; font-weight: 600; color: #A0AAB2; margin-bottom: 0.8rem; font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(0,229,255,0.2);
    background: rgba(255, 255, 255, 0.05);
}

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

.btn-submit-form {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: white; width: 100%; padding: 1.2rem;
    border: none; border-radius: 8px;
    font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
}

.btn-submit-form:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 114, 255, 0.5); }

/* Map Section */
.map-section { height: 500px; width: 100%; position: relative; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .contact-form-column { padding: 2.5rem; }
}
@media (max-width: 768px) {
    .contact-hero h1 { font-size: 3rem; }
}
