:root {
    --primary-blue: #2E8BC0;
    --primary-teal: #14B8A6;
    --light-teal: #5EEAD4;
    --dark-gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --whatsapp-green: #25D366;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Animated background with fresh colors */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.bg-animation .circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.bg-animation .circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.bg-animation .circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo-section img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(46, 139, 192, 0.2));
}

@media (max-width: 576px) {
    .logo-section img {
        max-width: 280px;
    }
}

/* Maintenance Message */
.maintenance-message {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(46, 139, 192, 0.3);
}

.maintenance-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.maintenance-message h1 {
    color: #1f2937;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.maintenance-message p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Countdown Timer */
.countdown-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.countdown-title {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid var(--light-teal);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 100px;
    text-align: center;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.countdown-item .label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands Section */
.brands-section {
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-bottom: 50px;
}

.brands-title {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.brand-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(20, 184, 166, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.brand-logo {
    width: 70%;
    height: 60%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-logo img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo img {
    filter: drop-shadow(0 4px 8px rgba(20, 184, 166, 0.2));
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.brand-description {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Map Section */
.map-section {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 1s both;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.map-header {
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 2px solid rgba(20, 184, 166, 0.1);
}

.map-header h3 {
    margin: 0;
    color: var(--gray-800);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 i {
    color: var(--primary-teal);
}

.map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1);
    transition: filter 0.3s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0%) contrast(1.1);
}

/* Contact Info */
.contact-section {
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-container {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.contact-title {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-gray);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 139, 192, 0.15);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
}

.contact-item:hover i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: white;
    padding: 25px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

footer p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Social Media Links */
.social-links {
margin-top: 15px;
display: flex;
justify-content: center;
gap: 15px;
}

.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
color: white;
border-radius: 50%;
text-decoration: none;
font-size: 1.2rem;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(46, 139, 192, 0.2);
}

.social-link:hover {
transform: translateY(-3px) rotate(5deg);
box-shadow: 0 6px 15px rgba(46, 139, 192, 0.3);
color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-button i {
    font-size: 2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: white;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Animations */
@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);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .maintenance-message h1 {
        font-size: 1.8rem;
    }

    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .countdown-item .number {
        font-size: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    .brand-card {
        padding: 20px 15px;
    }

    .brand-logo {
        /* width: 70px; */
        height: 70px;
        font-size: 1.8rem;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-description {
        font-size: 0.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Schema badge for AI */
.schema-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    vertical-align: middle;
}  