/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #20B2AA;
    --dark-teal: #008B8B;
    --light-teal: #48D1CC;
    --dark-blue: #1E3A5F;
    --darker-blue: #0F1F35;
    --white: #FFFFFF;
    --text-gray: #B0BEC5;
    --light-gray: #E0F2F1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 50%, var(--darker-blue) 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 209, 204, 0.12) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(32, 178, 170, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(32, 178, 170, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Construction Title */
.construction-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
}

.title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line.highlight {
    color: var(--primary-teal);
    text-shadow: 
        0 0 20px rgba(32, 178, 170, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.5),
        2px 2px 0px var(--darker-blue),
        -2px -2px 0px var(--darker-blue);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(32, 178, 170, 0.6),
            0 4px 20px rgba(0, 0, 0, 0.5),
            2px 2px 0px var(--darker-blue),
            -2px -2px 0px var(--darker-blue);
    }
    to {
        text-shadow: 
            0 0 30px rgba(32, 178, 170, 0.9),
            0 4px 20px rgba(0, 0, 0, 0.5),
            2px 2px 0px var(--darker-blue),
            -2px -2px 0px var(--darker-blue);
    }
}

.subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-teal) 20%, 
        var(--primary-teal) 80%, 
        transparent 100%);
    margin: 2.5rem 0;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-teal);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-teal);
}

/* Contact Section */
.contact-section {
    margin-bottom: 2.5rem;
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(32, 178, 170, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(32, 178, 170, 0.15), 
        transparent);
    transition: left 0.5s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.6;
}

.contact-info a:hover {
    color: var(--primary-teal);
}

.contact-info address {
    font-style: normal;
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

.websites {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Business Info */
.business-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(32, 178, 170, 0.2);
}

.business-description {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.business-description strong {
    color: var(--primary-teal);
    font-weight: 700;
}

.business-owner {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.rfc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Decorative Box Elements */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.box-element {
    position: absolute;
    opacity: 0.06;
    animation: float 25s infinite ease-in-out;
    border: 2px solid var(--primary-teal);
    border-radius: 4px;
}

.box-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    transform: rotate(15deg);
}

.box-2 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: 12%;
    animation-delay: 8s;
    background: linear-gradient(135deg, var(--light-teal), var(--primary-teal));
    transform: rotate(-25deg);
}

.box-3 {
    width: 140px;
    height: 140px;
    bottom: 20%;
    left: 18%;
    animation-delay: 16s;
    background: linear-gradient(135deg, var(--dark-teal), var(--primary-teal));
    transform: rotate(35deg);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* 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 Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .main-content {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 280px;
    }

    .construction-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 1rem;
    }

    .logo {
        max-width: 240px;
    }

    .construction-title {
        font-size: 1.75rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .decorative-elements {
        display: none;
    }

    .main-content {
        background: white;
        border: 1px solid #ccc;
    }
}
