/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --primary-red: #ef4444;
    --primary-red-hover: #dc2626;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --black: #000000;
    --bg-light: #f9fafb;
    --bg-beige: #ede8df;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-light: rgba(0, 0, 0, 0.3);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --container-width: 1280px;
    --border-radius: 8px;
    --border-radius-full: 9999px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button,
.hero-cta,
.form-submit {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    max-width: 196px;
    margin: 0 auto;
}

.cta-button:hover,
.hero-cta:hover,
.form-submit:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-beige);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 2rem;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    margin-left: auto;
}

.nav-link {
    color: var(--text-gray);
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin: 0.5rem 0;
}

.mobile-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 4rem;
    width: auto;
}

@media (min-width: 768px) {
    .hero-logo-img {
        height: 6rem;
    }
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-subtitle,
.hero-text p {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-description,
.hero-text p {
    font-size: 1.75rem;
    font-weight: 300;
}

.hero-cta {
    margin-bottom: 4rem;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    max-width: max-content;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    font-weight: 400;
    font-family: var(--font-primary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.features-app-left,
.features-app-right {
    display: flex;
    justify-content: center;
}

.app-interface-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: var(--bg-beige);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.process-image {
    margin-bottom: 1.5rem;
    background-color: var(--primary-red);
    padding: 1rem;
    border-radius: 0.75rem;
}

.step-img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.step-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.step-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Photo Collage Section */
.photo-collage {
    width: 100%;
    overflow: hidden;
}

.collage-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vision Section */
.vision {
    position: relative;
    padding: 5rem 0;
    min-height: 600px;
    color: var(--white);
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('../images/vision-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-light);
    backdrop-filter: blur(4px);
}

.vision-content {
    position: relative;
    z-index: 10;
}

.vision-title {
    font-size: 3rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-item {
    padding: 2rem;
    background-color: rgba(237, 232, 223, 0.6);
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-height: 280px;
}

.vision-icon {
    font-size: 1.75rem;
    margin-right: 0.75rem;
    color: var(--primary-red);
}

.vision-item-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.vision-item-description {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('../images/contact-bg.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-family: var(--font-secondary);
    font-weight: 700;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 5rem;
    }
}

.contact-description {
    font-size: 1.25rem;
    color: var(--black);
    max-width: 48rem;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 672px;
    margin: 0 auto 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--white);
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-social {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: var(--font-primary);
}

.footer-section-title {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    color: #d1d5db;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    padding: 0;
}

.footer-nav-link:hover {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    color: #d1d5db;
    transition: var(--transition);
    background: none;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
}

.footer-social .social-link:hover {
    color: var(--primary-red);
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
    font-family: var(--font-primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    padding: 0.25rem;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.waitlist-form .form-input {
    background-color: var(--bg-light);
    border: 2px solid #e5e7eb;
    color: var(--text-dark);
}

.waitlist-form .form-input::placeholder {
    color: var(--text-gray);
}

.waitlist-form .form-input:focus {
    border-color: var(--primary-red);
    background-color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-app-left,
    .features-app-right {
        order: 2;
    }

    .features-content {
        order: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav.active {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 1.25rem;
    }

    .hero-logo-img {
        height: 4rem;
    }

    .countdown {
        gap: 1.5rem;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-image {
        max-width: 20rem;
        margin: 0 auto 1.5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .vision-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 1.125rem;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success States */
.success-message {
    background-color: #10b981;
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
}

/* Error States */
.error-message {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.wpcf7-form-control-wrap {
    display: block;
}

p:has(.has-spinner) .wpcf7-spinner {
    display: none;
}

.contact-form .wpcf7 form .wpcf7-response-output {
    color: #ffffff;
}

.contact-form .wpcf7-not-valid-tip {
    text-align: left;
}

.process-step:nth-child(2) .process-image .step-img {
    object-fit: contain;
    background-color: #ead3cb;
}