/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #3A7CA5;
    --soft-sky-blue: #D0E9F4;
    --charcoal-gray: #2C2C2C;
    --off-white: #FAFAFA;
    --sage-green: #A8CBB7;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Source Serif Pro', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal-gray);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--soft-sky-blue) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Desktop Version Styles */
.desktop-version {
    display: block;
    min-height: 100vh;
    padding: 2rem;
}

.desktop-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.desktop-content {
    padding: 4rem;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.coming-soon-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--soft-sky-blue) 0%, var(--sage-green) 100%);
    border-radius: 15px;
    margin: 0 -2rem 4rem -2rem;
}

.coming-soon-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
}

.launch-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.countdown-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.countdown-item .label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section {
    margin-bottom: 4rem;
}

.services-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d6a8a 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 0 -2rem;
}

.contact-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-btn {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.call-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.text-btn {
    background: transparent;
    color: white;
    border-color: white;
}

.text-btn:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-icon {
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.footer-section {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Version Styles */
.mobile-version {
    display: none;
    min-height: 100vh;
    padding: 1rem;
}

.mobile-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
}

.mobile-header {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d6a8a 100%);
    color: white;
}

.mobile-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mobile-coming-soon {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--soft-sky-blue) 0%, var(--sage-green) 100%);
}

.mobile-coming-soon h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
}

.mobile-coming-soon p {
    color: #555;
    font-size: 1.1rem;
}

.mobile-services {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

.mobile-services h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--charcoal-gray);
}

.mobile-service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.mobile-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.mobile-service-text h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mobile-service-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mobile-contact {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d6a8a 100%);
    color: white;
}

.mobile-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mobile-contact p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mobile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-mobile {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.call-mobile:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.text-mobile {
    background: transparent;
    color: white;
    border-color: white;
}

.text-mobile:hover {
    background: white;
    color: var(--primary-blue);
}

.mobile-btn-icon {
    font-size: 1.2rem;
}

.mobile-footer {
    text-align: center;
    padding: 1.5rem;
    color: #666;
    font-size: 1rem;
    background: var(--off-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-version {
        display: none;
    }
    
    .mobile-version {
        display: block;
    }
}

@media (min-width: 769px) {
    .desktop-version {
        display: block;
    }
    
    .mobile-version {
        display: none;
    }
}

/* Animation for countdown */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-item {
    animation: pulse 2s infinite;
}

/* Hover effects */
.service-item:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.mobile-service-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 