/* Contact Page Styles - BMW Style */

:root {
    --primary-blue: #0066B1;
    --light-blue: #00a3e0;
    --dark-bg: #0a1628;
    --darker-bg: #060d18;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --gradient-primary: linear-gradient(135deg, #0066B1 0%, #00a3e0 100%);
}

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(0, 102, 177, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 163, 224, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.7;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 35%; top: 50%; animation-delay: 2s; }
.particle:nth-child(3) { left: 55%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 75%; top: 60%; animation-delay: 6s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 8s; }
.particle:nth-child(6) { left: 25%; top: 70%; animation-delay: 10s; }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 0.9; }
    50% { transform: translate(-10px, -60px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 102, 177, 0.2);
    border: 1px solid rgba(0, 102, 177, 0.4);
    border-radius: 30px;
    color: var(--light-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-label svg { fill: var(--light-blue); }

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-blue), transparent);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 40px 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 177, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-link {
    display: block;
    font-size: 14px;
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.contact-timezone {
    font-size: 12px;
    color: var(--light-blue);
    margin-top: 15px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-content {
    padding: 50px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 177, 0.15);
    border-radius: 20px;
    color: var(--light-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label svg { fill: var(--light-blue); }

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.section-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-form {}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 102, 177, 0.1);
    border: 1px solid rgba(0, 102, 177, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 177, 0.3);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: white;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--light-blue);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 177, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--primary-blue);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn svg { fill: currentColor; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(5px); }

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quick-response {
    padding: 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.response-item:last-child {
    border-bottom: none;
}

.response-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 177, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--light-blue);
}

.response-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3px;
}

.response-content p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Social Links */
.social-links {
    padding: 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 177, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--text-gray);
    transition: fill 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.social-btn:hover svg {
    fill: white;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.map-content {
    text-align: center;
    margin-bottom: 50px;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    padding: 80px 50px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    text-align: center;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.map-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
}

.faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.faq-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.faq-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 177, 0.4), transparent 70%);
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--light-blue);
    border-radius: 50%;
    animation: float-particle 10s infinite ease-in-out;
}

.cta-particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.cta-particle:nth-child(2) { left: 50%; top: 50%; animation-delay: 3s; }
.cta-particle:nth-child(3) { left: 80%; top: 40%; animation-delay: 6s; }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-scroll-indicator { display: none; }
    .form-content { padding: 30px; }
    .social-grid { grid-template-columns: repeat(4, 1fr); }
    .cta-buttons { flex-direction: column; }
}