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

:root {
    --pink: #F5A9B8;
    --blue: #7DBADD;
    --cream: #F5F1E8;
    --dark-text: #4A4A4A;
    --light-pink: #FFE4E9;
    --light-blue: #E6F4FA;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-title-blue {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
}

.section-title-centered {
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
}

.text-blue {
    color: var(--blue);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

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

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 140px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--pink);
}

.cta-button {
    background-color: var(--pink);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125, 186, 221, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}

.hero-text {
    text-align: left;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background-color: var(--blue);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 186, 221, 0.3);
}

.hero-cta:hover {
    background-color: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 169, 184, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image a {
    display: block;
    transition: transform 0.3s ease;
}

.hero-image a:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-text a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.about-text a:hover {
    color: var(--pink);
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: linear-gradient(to right, var(--light-blue), var(--light-pink));
    text-align: center;
}

.mission-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.mission-subtitle {
    font-size: 1.8rem;
    color: var(--blue);
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-content em {
    font-style: italic;
    color: var(--dark-text);
}

/* Process Section */
.process {
    padding: 6rem 0;
    text-align: center;
}

.process-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-day {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.process-note {
    font-size: 1rem;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-pink);
    text-align: center;
}

.services-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid .service-item:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
}

.services-grid .service-item:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(245, 169, 184, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.5;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-subtitle {
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-label {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--dark-text);
    background: var(--cream);
}

/* Results Section */
.results {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
    text-align: center;
}

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

.results-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.package-featured {
    border: 3px solid var(--pink);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-name {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.package-details {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.package-details p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 2rem;
}

.price-note {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-text);
    margin-top: 0.5rem;
}

.package-button {
    display: inline-block;
    background-color: var(--pink);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: var(--blue);
    transform: translateY(-2px);
}

/* Clients Logo Bar */
.clients-bar {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.clients-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.clients-logos img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.clients-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
    text-align: center;
}

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

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-header p {
    font-size: 1.5rem;
    color: var(--dark-text);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(125, 186, 221, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 186, 221, 0.4);
}

.contact-tagline {
    font-style: italic;
    color: var(--dark-text);
    margin-top: 1rem;
    opacity: 0.8;
}

.contact-logo {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-logo img {
    max-width: 300px;
    height: auto;
}

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

.footer p {
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 280px;
    }

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

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

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

    .services-grid .service-item:nth-child(4),
    .services-grid .service-item:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }

    .clients-logos {
        gap: 2rem 2.5rem;
    }

    .clients-logos img {
        height: 32px;
        max-width: 100px;
    }

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

    .contact-header h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .section-title,
    .section-title-blue,
    .section-title-centered {
        font-size: 1.5rem;
    }
}

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

.hero-content,
.about-content,
.mission-content,
.process-grid,
.services-grid,
.video-grid,
.packages-grid {
    animation: fadeInUp 0.8s ease-out;
}
