/* ===========================
   CSS VARIABLES
   =========================== */
   :root {
    --primary: #081c34;
    --primary-hover: #0a2a55;
    --primary-light: #e8eef5;
}

/* ===========================
   CONTACT PAGE - ONE SCREEN
   =========================== */
#contact-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1929 0%, #081c34 50%, #0d2847 100%);
    padding-top: 0;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */
.contact-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape-circle,
.shape-square,
.shape-triangle {
    position: absolute;
    opacity: 0.1;
}

.shape-circle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float-shape 15s infinite ease-in-out;
}

.shape-square {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 60%;
    right: 15%;
    animation: float-shape 20s infinite ease-in-out reverse;
    animation-delay: 5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(255, 255, 255, 0.3);
    bottom: 30%;
    left: 20%;
    animation: float-shape 18s infinite ease-in-out;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* ===========================
   CONTACT CONTENT
   =========================== */
.container {
    position: relative;
    z-index: 1;
}

/* ===========================
   CONTACT INFO WRAPPER
   =========================== */
.contact-info-wrapper {
    color: white;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.contact-badge i {
    color: #4facfe;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a8c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===========================
   CONTACT DETAIL CARDS
   =========================== */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    transform: translateX(5px);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn.email {
    background: var(--primary);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.social-btn i {
    font-size: 1.3rem;
}

/* ===========================
   CONTACT FORM CARD
   =========================== */
.contact-form-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
    margin: 0;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(8, 28, 52, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    border-radius: 12px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(8, 28, 52, 0.3);
}

/* ===========================
   MAP CARD
   =========================== */
.contact-map-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.map-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.map-header h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-form-card,
    .contact-map-card {
        padding: 30px 25px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    #contact-page {
        padding-top: 30px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .contact-detail-card {
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header i {
        font-size: 2.5rem;
    }

    .contact-map-card {
        padding: 25px 20px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .social-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-detail-card:hover {
        transform: translateY(-5px);
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .contact-form .btn-primary {
        font-size: 1rem;
    }

    .shape-circle,
    .shape-square,
    .shape-triangle {
        opacity: 0.05;
    }
}