﻿ 

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #a0a0a0;
}

body {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

    .animated-bg::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 30%), radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.03) 0%, transparent 30%);
        animation: rotate 50s linear infinite;
    }

    .animated-bg::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(45deg, transparent 0px, transparent 30px, rgba(255, 215, 0, 0.015) 30px, rgba(255, 215, 0, 0.015) 60px);
        animation: move 80s linear infinite;
    }

/* Floating Elements */
.floating-element {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.floating-1 {
    top: -150px;
    right: -150px;
    animation: float 20s infinite;
}

.floating-2 {
    bottom: -150px;
    left: -150px;
    animation: float 25s infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.5);
    }
}

@keyframes move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 200%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, 40px) rotate(120deg);
    }

    66% {
        transform: translate(-40px, 30px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Main Container */
.contact-container {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

.contact-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 0.8s ease;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@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);
    }
}

/* Main Cards */
.contact-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease both;
}

    .contact-card:hover {
        border-color: rgba(255, 215, 0, 0.4);
        box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
    }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-card-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.12) 100%);
    padding: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

    .contact-card-header h4 {
        color: var(--gold);
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .contact-card-header i {
        font-size: 2rem;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.contact-card-body {
    padding: 30px;
}

/* Form Styles */
.form-label {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label i {
        color: var(--gold);
        width: 20px;
    }

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
        color: var(--text-light);
        outline: none;
    }

    .form-control::placeholder {
        color: var(--text-muted);
        opacity: 0.5;
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Items */
.info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        border-color: var(--gold);
        background: rgba(255, 215, 0, 0.05);
        transform: translateX(5px);
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.info-content {
    flex: 1;
}

    .info-content h6 {
        color: var(--gold);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-content p {
        color: var(--text-gray);
        margin-bottom: 0;
        line-height: 1.6;
    }

/* Social Links */
.social-links {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        background: var(--gold);
        color: var(--primary-black);
        transform: translateY(-5px) scale(1.1);
        border-color: var(--gold);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    }

/* Submit Button */
.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-black);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
    width: 100%;
}

    .btn-gold:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
    }

    .btn-gold:active:not(:disabled) {
        transform: translateY(0);
    }

    .btn-gold:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-gold i {
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .btn-gold:hover:not(:disabled) i {
        transform: translateX(5px);
    }

/* Map Container */
.map-container {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    margin-top: 30px;
    transition: all 0.3s ease;
}

    .map-container:hover {
        border-color: var(--gold);
        box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    }

    .map-container iframe {
        width: 100%;
        height: 400px;
        display: block;
        filter: grayscale(20%);
        transition: filter 0.3s ease;
    }

    .map-container:hover iframe {
        filter: grayscale(0%);
    }

/* Validation Messages */
.text-danger {
    color: #ff6b6b !important;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.field-validation-error {
    color: #ff6b6b;
}

.input-validation-error {
    border-color: #ff6b6b !important;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-black);
    animation: spin 0.6s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@@media (max-width: 991px) {
    .contact-card-body {
        padding: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@@media (max-width: 768px) {
    .contact-container {
        padding: 20px 15px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-card-header h4 {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-content {
        text-align: center;
    }

    .map-container iframe {
        height: 300px;
    }

    .floating-element {
        width: 250px;
        height: 250px;
    }
}

@@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Animations */
.animate-item {
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

@@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

 