/* Modern Design Tokens & Reset */
:root {
    --bg-dark-1: #030816;
    --bg-dark-2: #081225;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-teal: #0d9488;
    --accent-cyan: #0ea5e9;
    --accent-gold: #c29b38;
    --accent-gold-glow: rgba(194, 155, 56, 0.15);
    --whatsapp-green: #25d366;
    
    --card-bg: rgba(13, 27, 49, 0.45);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    --glass-blur: 20px;
    
    --font-primary: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-dark-1);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    min-block-size: 100dvb;
    block-size: 100dvb;
    overflow: hidden; /* Prevent scrolling, force single viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-inline: 1rem;
    padding-block: 1rem;
}

/* Background Animated Blobs */
.blob-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.blob-teal {
    background: radial-gradient(circle, var(--accent-teal) 0%, rgba(13, 148, 136, 0) 70%);
    inline-size: 45vw;
    block-size: 45vw;
    min-inline-size: 250px;
    min-block-size: 250px;
    inset-inline-start: -10%;
    inset-block-start: -10%;
    animation: float-slow 20s infinite alternate ease-in-out;
}

.blob-gold {
    background: radial-gradient(circle, var(--accent-gold) 0%, rgba(194, 155, 56, 0) 70%);
    inline-size: 40vw;
    block-size: 40vw;
    min-inline-size: 230px;
    min-block-size: 230px;
    inset-inline-end: -5%;
    inset-block-end: -10%;
    animation: float-reverse 25s infinite alternate ease-in-out;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(6%, 8%) scale(1.08); }
}

@keyframes float-reverse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, -6%) scale(1.1); }
}

/* Container & Glass Card */
.container {
    inline-size: 100%;
    max-inline-size: 740px;
    max-block-size: 96dvb; /* Fit height constraints */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    padding-block: clamp(1.5rem, 3.5vw, 2.5rem);
    backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    box-shadow: var(--card-shadow), 
                inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
                0 0 80px -40px rgba(13, 148, 136, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem; /* Sleek vertical rhythm */
    animation: card-appear 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes card-appear {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Header Styles */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-wrapper {
    inline-size: 90px;
    block-size: 90px;
    border-radius: 18px;
    background-color: #ffffff;
    padding: 0.35rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block-end: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(194, 155, 56, 0.25);
}

.logo {
    max-inline-size: 100%;
    max-block-size: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* Site Under Development Badge */
.badge {
    background: rgba(194, 155, 56, 0.08);
    border: 1px solid rgba(194, 155, 56, 0.2);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-block-end: 0.75rem;
}

.pulse-dot {
    inline-size: 6px;
    block-size: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--accent-gold);
    animation: pulse 1.8s infinite ease-in-out;
}

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

.brand-name {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 4.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-block-end: 0.4rem;
}

.slogan {
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    max-inline-size: 520px;
    line-height: 1.4;
}

/* Services Container */
.services-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.service-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.85rem;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.service-badge:hover {
    background: rgba(13, 148, 136, 0.06);
    border-color: rgba(13, 148, 136, 0.25);
    color: var(--accent-cyan);
}

.service-icon {
    inline-size: 12px;
    block-size: 12px;
    opacity: 0.8;
}

/* Notice Section */
.notice-section {
    text-align: center;
    max-inline-size: 580px;
    margin-inline: auto;
}

.notice-section p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

.divider {
    border: 0;
    block-size: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.06) 80%, rgba(255, 255, 255, 0));
}

/* Contact Grid Section */
.contact-section {
    width: 100%;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-block-end: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.85;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.contact-card.interactive {
    cursor: pointer;
}

.contact-card.interactive:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

#contact-address:hover { border-color: rgba(194, 155, 56, 0.15); }
#contact-phone:hover { border-color: rgba(14, 165, 233, 0.25); }
#contact-email:hover { border-color: rgba(194, 155, 56, 0.25); }
#contact-web:hover { border-color: rgba(13, 148, 136, 0.25); }

.contact-icon-wrapper {
    inline-size: 32px;
    block-size: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
}

#contact-address .contact-icon-wrapper { color: var(--accent-gold); }
#contact-phone .contact-icon-wrapper { color: var(--accent-cyan); }
#contact-email .contact-icon-wrapper { color: var(--accent-gold); }
#contact-web .contact-icon-wrapper { color: var(--accent-teal); }

.contact-card.interactive:hover .contact-icon-wrapper {
    background: var(--text-primary);
    color: var(--bg-dark-1);
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-block-end: 0.15rem;
}

.contact-info p {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-primary);
}

/* Styled link inside contact cards */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.email-text {
    word-break: break-all;
}

/* Quick Actions Section */
.actions-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    flex: 1 1 0; /* Equal width buttons side-by-side */
    max-inline-size: 240px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1fbe54, #128c7e);
    color: #ffffff;
    box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.25);
    border: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(37, 211, 102, 0.35);
}

.btn-call {
    background: linear-gradient(135deg, #0e5c8f, #06283d);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 16px -4px rgba(14, 165, 233, 0.15);
}

.btn-call:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 20px -4px rgba(14, 165, 233, 0.25);
}

.btn-icon {
    inline-size: 15px;
    block-size: 15px;
}

/* Footer Section */
.footer {
    text-align: center;
    opacity: 0.5;
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Responsive Breakpoints & Viewport Fallbacks */

/* Tablets (portrait & landscape) */
@media (max-width: 768px) {
    .container {
        max-inline-size: 600px;
    }
    
    .glass-card {
        padding-inline: 1.75rem;
        padding-block: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
}

/* Mobile Screens (Small Viewports) */
@media (max-width: 520px) {
    body {
        overflow-y: auto; /* Fallback for very small heights like galaxy fold or landscape phone */
        align-items: flex-start;
        padding-block: 1rem;
    }
    
    .container {
        max-block-size: none;
        block-size: auto;
    }

    .glass-card {
        padding-inline: 1rem;
        padding-block: 1.5rem;
        gap: 0.9rem;
    }
    
    .logo-wrapper {
        inline-size: 75px;
        block-size: 75px;
        margin-block-end: 0.5rem;
    }
    
    .badge {
        margin-block-end: 0.5rem;
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }

    .brand-name {
        margin-block-end: 0.25rem;
    }

    .slogan {
        font-size: 0.85rem;
    }

    .services-container {
        gap: 0.35rem;
    }

    .service-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .notice-section p {
        font-size: 0.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact cards on small mobiles to fit content */
        gap: 0.5rem;
    }
    
    .contact-card {
        padding: 0.6rem 0.75rem;
    }
    
    .contact-info p {
        font-size: 0.75rem;
    }
    
    .actions-section {
        flex-direction: row; /* Keep side-by-side even on small screens to save vertical space */
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mode / Short Height Devices */
@media (max-block-size: 580px) {
    body {
        overflow-y: auto;
        align-items: flex-start;
        padding-block: 1rem;
    }
    
    .container {
        max-block-size: none;
        block-size: auto;
    }

    .glass-card {
        padding-block: 1.25rem;
        gap: 0.75rem;
    }
    
    .logo-wrapper {
        inline-size: 60px;
        block-size: 60px;
        margin-block-end: 0.25rem;
    }
    
    .badge {
        margin-block-end: 0.25rem;
    }
}
