/* Root Variables (Logo Colors) */
:root {
    --primary-red: #d32f2f;
    --primary-blue: #0288d1;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --vibrant-glow: radial-gradient(circle at top right, rgba(211, 47, 47, 0.15), transparent 40%),
                   radial-gradient(circle at bottom left, rgba(2, 136, 209, 0.15), transparent 40%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
    padding: 3rem 1rem; /* Added padding */
}

/* Background Effects */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vibrant-glow);
    z-index: 1;
    pointer-events: none;
}

.water-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    opacity: 0.15;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('https://raw.githubusercontent.com/yusufshakeel/svg-animation-lib/master/examples/wave.svg') repeat-x;
    background-size: 1000px 100px;
    animation: wave-move 10s linear infinite;
}

.wave1 { z-index: 1000; opacity: 1; bottom: 0; animation-duration: 4s; }
.wave2 { z-index: 999; opacity: 0.5; bottom: 10px; animation-duration: 8s; animation-direction: reverse; }
.wave3 { z-index: 998; opacity: 0.2; bottom: 15px; animation-duration: 12s; }

@keyframes wave-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Logo Animation */
.logo-section {
    margin-bottom: 2.5rem;
}

#logo {
    width: 280px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--glass-border);
}

.logo-animate {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* Content */
.title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-blue);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(1); }
}

/* Contact Grid */
.contact-section {
    margin: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.1);
}

.contact-card i {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.contact-card:hover i {
    color: var(--primary-blue);
    transform: rotate(15deg);
}

.icon-red { color: #ee5253 !important; }
.icon-blue { color: #2e86de !important; }

.contact-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.address-card {
    grid-column: span 2;
}

/* Actions */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .address-card { grid-column: auto; }
    .container { padding: 1.5rem; }
    #logo { width: 200px; }
    .whatsapp-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .title { font-size: 2rem; }
}
