/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cloud-themed Color Palette */
    --primary-color: #4A90E2;
    --primary-light: #6BA3E8;
    --primary-dark: #357ABD;
    --secondary-color: #7B68EE;
    --accent-color: #87CEEB;
    --cloud-blue: #E6F3FF;
    --sky-blue: #B8D4F0;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
    --gradient-sky: linear-gradient(180deg, #E6F3FF 0%, #FFFFFF 100%);
    --gradient-cloud: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 100%);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(74, 144, 226, 0.15);
    --shadow-xl: 0 20px 40px rgba(74, 144, 226, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--gradient-sky);
    padding: 4rem 2rem;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.cloud-1:before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 20px;
}

.cloud-1:after {
    width: 100px;
    height: 100px;
    top: -50px;
    right: 20px;
}

.cloud-2 {
    width: 150px;
    height: 50px;
    top: 30%;
    right: 15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.cloud-2:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-2:after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 15px;
}

.cloud-3 {
    width: 180px;
    height: 55px;
    bottom: 25%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: -10s;
}

.cloud-3:before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 18px;
}

.cloud-3:after {
    width: 90px;
    height: 90px;
    top: -45px;
    right: 18px;
}

.cloud-4 {
    width: 120px;
    height: 40px;
    top: 60%;
    right: 25%;
    animation-duration: 22s;
    animation-delay: -15s;
}

.cloud-4:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 12px;
}

.cloud-4:after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 12px;
}

.cloud-5 {
    width: 160px;
    height: 50px;
    bottom: 15%;
    right: 10%;
    animation-duration: 27s;
    animation-delay: -7s;
}

.cloud-5:before {
    width: 65px;
    height: 65px;
    top: -32px;
    left: 16px;
}

.cloud-5:after {
    width: 75px;
    height: 75px;
    top: -37px;
    right: 16px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(15px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Coming Soon Container */
.coming-soon-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    padding-bottom: 4rem;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 3rem;
}

.logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s ease-in-out infinite;
}

.logo-icon i {
    font-size: 4rem;
    color: var(--white);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-main {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(74, 144, 226, 0.2);
}

.brand-sub {
    color: var(--secondary-color);
    font-size: 3.5rem;
}

/* Main Content */
.coming-soon-content {
    margin-bottom: 4rem;
}

.main-heading {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Email Section */
.email-section {
    margin-top: 3rem;
}

.email-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--cloud-blue);
    transition: all 0.3s ease;
}

.email-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.email-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.email-link {
    font-size: 1.125rem;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

/* Countdown Timer */
.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.timer-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--cloud-blue);
    transition: all 0.3s ease;
}

.timer-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.timer-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 3rem;
}

.newsletter-title {
    font-size: 1.5rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.input-group input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: transparent;
}

.input-group input:focus {
    outline: none;
}

.input-group input::placeholder {
    color: var(--gray-400);
}

.btn-subscribe {
    padding: 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-subscribe i {
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-contact:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--cloud-blue);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Coming Soon Footer */
.coming-soon-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    z-index: 1;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page-body {
    min-height: 100vh;
    background: var(--gradient-sky);
}

/* Navigation */
.contact-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.brand-icon i {
    font-size: 1.25rem;
}

.brand-text {
    color: var(--primary-color);
}

.brand-accent {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: 0.3s;
}

/* Contact Page Wrapper */
.contact-page-wrapper {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    opacity: 0.5;
    animation: float 25s infinite ease-in-out;
}

.contact-cloud.cloud-1 {
    width: 250px;
    height: 75px;
    top: 10%;
    left: 5%;
    animation-duration: 30s;
}

.contact-cloud.cloud-1:before {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.contact-cloud.cloud-1:after {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    top: -60px;
    right: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.contact-cloud.cloud-2 {
    width: 200px;
    height: 60px;
    top: 50%;
    right: 10%;
    animation-duration: 35s;
    animation-delay: -10s;
}

.contact-cloud.cloud-2:before {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.contact-cloud.cloud-2:after {
    content: '';
    width: 90px;
    height: 90px;
    position: absolute;
    top: -45px;
    right: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.contact-cloud.cloud-3 {
    width: 180px;
    height: 55px;
    bottom: 15%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: -5s;
}

.contact-cloud.cloud-3:before {
    content: '';
    width: 70px;
    height: 70px;
    position: absolute;
    top: -35px;
    left: 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.contact-cloud.cloud-3:after {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    right: 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

/* Contact Content Container */
.contact-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.contact-icon-wrapper i {
    font-size: 3rem;
    color: var(--white);
}

.contact-page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--cloud-blue);
}

/* Contact Form */
.contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group label {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--cloud-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Footer */
.contact-footer {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .brand-name {
        font-size: 3rem;
    }

    .brand-sub {
        font-size: 2.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.1rem;
    }

    .contact-page-title {
        font-size: 2.5rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .timer-number {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .btn-subscribe {
        border-radius: var(--radius-lg);
        width: 100%;
        justify-content: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .brand-sub {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .timer-item {
        padding: 1.5rem 1rem;
    }

    .timer-number {
        font-size: 2rem;
    }

    .email-wrapper {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-link {
        font-size: 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }
}
