/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #6B46C1;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.navbar {
    display: flex;
    gap: 40px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar a:hover {
    color: #6B46C1;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6B46C1;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 120px 0;
}

/* Section 1: Hero Section */
.section-1 {
    background-color: #ffffff;
    padding: 0;
}

.section-1-container {
    padding: 0;
    max-width: 100%;
}

.section-1-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: stretch;
    min-height: 80vh;
}

.section-1-text {
    background-color: #ffffff;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-1-title {
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.asphana-text {
    font-family: Georgia, 'Times New Roman', serif;
    color: #000000;
}

.ai-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #6B46C1;
}

.section-1-tagline {
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.4;
    text-align: center;
}

.demo-button {
    display: inline-block;
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    color: #ffffff;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.section-1-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section 2: Asphana AI saves you money & time */
.section-2-benefits {
    background-color: #f5f5f5;
}

.section-2-benefits .section-1-content {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.section-1-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
}

.section-2-benefits .section-1-text {
    padding: 60px 40px;
    margin-left: 40px;
}

.section-2-benefits .section-1-heading {
    font-size: 40px;
    margin-bottom: 70px;
}

.benefit-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-box {
    background-color: #ffffff;
    color: #6B46C1;
    padding: 40px 28px;
    border-radius: 8px;
    border: 2px solid #6B46C1;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-2-benefits .section-1-image {
    width: 100%;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-2-benefits .section-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section 3: Hi, I am Maya */
.section-2 {
    background-color: #fafafa;
}

.section-2-main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #6B46C1;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.section-2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-2-iframe {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-2-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-2-text {
    padding: 0 20px;
}

.section-2-heading {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-2-text p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.8;
}

.section-2-text p:last-child {
    margin-bottom: 0;
}

/* Section 3: Features with Icons */
.section-3 {
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #6B46C1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.feature-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

/* Section 4: Contact Form */
.section-4 {
    background-color: #f5f5f5;
    padding: 120px 0;
}

.contact-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 80px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B46C1;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #6B46C1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #553C9A;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-1-content,
    .section-2-content {
        gap: 60px;
    }
    
    .features-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .navbar {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-1-container {
        padding: 0 30px;
    }
    
    .section-1-text {
        padding: 60px 40px;
    }
    
    .section-1-title {
        font-size: 48px;
    }
    
    .section-1-tagline {
        font-size: 20px;
    }
    
    .section-1-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .section-1-image {
        height: 400px;
    }
    
    .section-2-benefits .section-1-content,
    .section-2-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section-1-heading {
        font-size: 32px;
    }
    
    .benefit-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-2-heading {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .benefit-boxes {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-1-title {
        font-size: 48px;
    }
    
    .section-1-tagline {
        font-size: 22px;
    }
    
    .demo-button {
        padding: 20px 40px;
        font-size: 20px;
    }
    
    .section-1-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Spa Page Styles */
.section-spa-hero {
    background-color: #ffffff;
    padding: 80px 0 60px 0;
}

.section-spa-header {
    text-align: center;
}

.section-spa-heading {
    font-size: 38px;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-spa-subheading {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.section-spa-content {
    background-color: #fafafa;
}

.section-spa-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-spa-iframe {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-spa-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-spa-text {
    padding: 0 20px;
}

.section-spa-text-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-spa-text p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.8;
}

.section-spa-text p:last-child {
    margin-bottom: 0;
}

/* Responsive for Spa Page */
@media (max-width: 768px) {
    .section-spa-heading {
        font-size: 32px;
    }
    
    .section-spa-subheading {
        font-size: 18px;
    }
    
    .section-spa-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section-spa-text-heading {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .section-spa-heading {
        font-size: 24px;
    }
    
    .section-spa-subheading {
        font-size: 16px;
    }
    
    .section-spa-text-heading {
        font-size: 32px;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #6B46C1;
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #6B46C1;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.contact-subheading {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* Success and Error Messages */
.message-container {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-container p {
    margin: 0 0 10px;
    font-size: 16px;
}

.message-container p:last-child {
    margin-bottom: 0;
}

.redirect-countdown {
    font-size: 14px;
    color: #666;
    margin-top: 10px !important;
}

.redirect-countdown span {
    font-weight: 600;
    color: #6B46C1;
}

/* Responsive for CTA Section */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

