/* ============================================
   NOVA CONTACT PAGE STYLES
   Premium Glassmorphism Design - First Impression
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.contact-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #151535 40%, #1a1a40 70%, #0d0d25 100%);
    overflow: hidden;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #0f0f23, transparent);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-section .hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-hero-section .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: contactFloatOrb 12s ease-in-out infinite;
}

.contact-hero-section .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: 10%;
}

.contact-hero-section .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00d4ff, #0077aa);
    bottom: -100px;
    left: 5%;
    animation-delay: 4s;
}

.contact-hero-section .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #059669);
    top: 50%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes contactFloatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.contact-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.18);
    border: 1px solid rgba(102, 126, 234, 0.35);
    border-radius: 50px;
    color: #667eea;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    backdrop-filter: blur(15px);
}

.contact-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -2px;
}

.contact-hero-title .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto;
    line-height: 1.7;
    max-width: 700px;
}

/* ============================================
   INFO CARDS SECTION
   ============================================ */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.contact-info-card {
    position: relative;
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(0, 212, 255, 0.3));
}

.contact-info-icon svg {
    width: 36px;
    height: 36px;
    stroke: #00d4ff;
}

.contact-info-icon i {
    font-size: 32px;
    color: #00d4ff;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.contact-info-card .info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-card .info-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info-card .info-item a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card .info-item a:hover {
    color: #667eea;
}

.contact-info-card .info-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */
.contact-content-section {
    padding: 100px 0;
    background: #0f0f23;
}

.contact-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ============================================
   MAP SECTION
   ============================================ */
.contact-map-wrapper {
    position: relative;
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
}

.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-map-header h3 svg {
    width: 24px;
    height: 24px;
    stroke: #00d4ff;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-map-link:hover {
    background: rgba(102, 126, 234, 0.3);
    color: #fff;
}

.contact-map-frame {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-map-frame iframe,
.contact-map-frame #map {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    position: relative;
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #00d4ff);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.contact-form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    position: relative;
}

.contact-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Phone Input Styling */
.contact-form .iti {
    width: 100%;
}

.contact-form .iti__flag-container {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px 0 0 14px;
}

.contact-form .iti__selected-dial-code {
    color: rgba(255, 255, 255, 0.8);
}

/* GDPR Checkbox */
.contact-gdpr-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 14px;
}

.contact-gdpr-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #667eea;
    cursor: pointer;
}

.contact-gdpr-wrapper label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    cursor: pointer;
}

.contact-gdpr-wrapper label a {
    color: #00d4ff;
    text-decoration: none;
}

/* Captcha */
.contact-captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-captcha-input {
    flex: 1;
    min-width: 150px;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin-top: 8px;
}

.contact-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: #fff;
}

.contact-submit-btn.inactive {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    cursor: not-allowed;
}

.contact-submit-btn svg {
    width: 22px;
    height: 22px;
}

/* Success Message */
.contact-success-message {
    text-align: center;
    padding: 60px 40px;
}

.contact-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-success-icon svg {
    width: 50px;
    height: 50px;
    stroke: #10b981;
}

.contact-success-message h4 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.contact-success-message p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .contact-content-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 40px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0 60px;
    }

    .contact-hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .contact-hero-desc {
        font-size: 17px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .contact-map-frame {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }

    .contact-hero-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .contact-hero-title {
        font-size: 26px;
    }

    .contact-info-card {
        padding: 28px 24px;
    }

    .contact-map-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}