/* ===================================
   CONTACT PAGE - PREMIUM DESIGN
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5E35B1, transparent);
    top: -250px;
    left: -250px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFA726, transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #FF6F26, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Fixed Logo & Dock - Same as Team page */
.fixed-logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fixed-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 167, 38, 0.3);
}

.fixed-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.dock-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
}

.dock {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dock-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.dock-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: #FFA726;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dock-item:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.dock-item:hover {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    color: #FFFFFF;
    transform: translateY(-8px) scale(1.1);
}

.dock-item.active {
    background: linear-gradient(135deg, #5E35B1, #FF6F26);
    color: #FFFFFF;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 167, 38, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(94, 53, 177, 0.4), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 111, 38, 0.4), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 200px 200px, -300px 300px, 250px -250px; }
}

.contact-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #FFA726;
    margin-bottom: 32px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFA726;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 15px rgba(255, 167, 38, 0); }
}

.contact-hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 28px;
}

.gradient-text {
    background: linear-gradient(135deg, #5E35B1, #FFA726, #FF6F26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-slide-up {
    animation: slideUp 0.8s ease;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #FFA726;
    box-shadow: 0 16px 40px rgba(255, 167, 38, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(255, 111, 38, 0.4);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.info-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.info-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #FFA726;
    padding-left: 8px;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-header {
    margin-bottom: 48px;
}

.form-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.form-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFA726;
    box-shadow: 0 0 0 4px rgba(255, 167, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFA726;
    pointer-events: none;
}

.form-group:has(label) .form-icon {
    top: calc(50% + 16px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: #FFA726;
}

.form-checkbox label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border: none;
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 111, 38, 0.4);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 111, 38, 0.6);
    gap: 16px;
}

/* Form Image */
.form-image {
    position: sticky;
    top: 120px;
}

.image-content {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 600px;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
}

.image-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.image-text i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.image-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.image-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-header {
    text-align: center;
    margin-bottom: 48px;
}

.map-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.map-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(94, 53, 177, 0.03);
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFA726;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.faq-question i {
    color: #FFA726;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(94, 53, 177, 0.1), rgba(255, 111, 38, 0.1));
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(255, 111, 38, 0.4);
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    color: #FFFFFF;
    box-shadow: 0 10px 40px rgba(255, 111, 38, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 111, 38, 0.6);
    gap: 16px;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFA726;
    color: #FFA726;
    transform: translateY(-4px);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #000000;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA726;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #FF6F26, #FFA726);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFA726;
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-contact i {
    color: #FFA726;
    font-size: 16px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: #FFA726;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FF6F26;
}

.footer-bottom i {
    color: #FF6F26;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-image {
        order: -1;
        position: relative;
        top: 0;
    }
    
    .image-content {
        height: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-title,
    .map-title,
    .section-title,
    .cta-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dock {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .dock-item {
        width: 42px;
        height: 42px;
    }
}
