* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Navbar - Same as previous pages */
nav {
    background: rgba(20, 20, 20, 0.98);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(100, 100, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.nav-links a:hover::after {
    width: 200px;
    height: 200px;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 0;
    mix-blend-mode: screen;
}

/* Contact Section */
.contact-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease;
}

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

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #808080;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Contact Cards */
.contact-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.instagram-card::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok-card::before {
    background: linear-gradient(90deg, #000000, #25F4EE, #FE2C55);
}

.email-card::before {
    background: linear-gradient(90deg, #EA4335, #FBBC04, #34A853, #4285F4);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
}

.contact-card:hover::before {
    opacity: 1;
}

/* WhatsApp Card Hover */
.whatsapp-card:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
}

/* Instagram Card Hover */
.instagram-card:hover {
    box-shadow: 0 20px 50px rgba(225, 48, 108, 0.3);
}

/* TikTok Card Hover */
.tiktok-card:hover {
    box-shadow: 0 20px 50px rgba(37, 244, 238, 0.3);
}

/* Email Card Hover */
.email-card:hover {
    box-shadow: 0 20px 50px rgba(66, 133, 244, 0.3);
}

/* Icon Wrapper */
.contact-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.contact-icon {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

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

.icon-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.whatsapp-bg {
    background: radial-gradient(circle, #25D366, transparent);
}

.instagram-bg {
    background: radial-gradient(circle, #E1306C, transparent);
}

.tiktok-bg {
    background: radial-gradient(circle, #25F4EE, transparent);
}

.email-bg {
    background: radial-gradient(circle, #4285F4, transparent);
}

/* Card Content */
.contact-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Contact Buttons */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-button:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.instagram-button {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.instagram-button:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

.tiktok-button {
    background: linear-gradient(135deg, #000000, #25F4EE);
    color: white;
}

.tiktok-button:hover {
    box-shadow: 0 10px 30px rgba(37, 244, 238, 0.4);
    transform: translateY(-2px);
}

.email-button {
    background: linear-gradient(135deg, #EA4335, #FBBC04, #34A853, #4285F4);
    color: white;
}

.email-button:hover {
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

/* Additional Info */
.additional-info {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 30, 30, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease 0.3s both;
}

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

.additional-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.additional-info p {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 100px 20px 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-card h3 {
        font-size: 1.7rem;
    }

    .contact-info {
        font-size: 1.1rem;
    }

    .additional-info h2 {
        font-size: 2rem;
    }

    .additional-info p {
        font-size: 1rem;
    }
}