@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.under_sub__title {
    font-size: 2.4rem;
    text-align: center;
}
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.4), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgb(244, 206, 72);
    margin-bottom: 1rem;
}

.hero-text {
    margin-top: 2rem;
    color: rgba(255,255,255,1);
    font-size: 1.6rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 0.5rem;
}

.hero-description {
    margin-top: 1.5rem;
}

/* Section Title */
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Concerns Section */
.concerns-section {
    padding: 6rem 1.5rem;
    background-color: rgba(253, 242, 248, 0.8);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.concern-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.concern-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.concern-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(253, 242, 248, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(225, 29, 72);
}

.concern-card p {
    padding-top: 0.5rem;
    font-size: 1.5rem;
}

.concerns-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.3rem;
}

.highlight {
    color: rgb(190, 18, 60);
}

.mobile-break {
    display: none;
}

/* Concept Section */
.concept-section {
    padding: 6rem 1.5rem;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.concept-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.8;
}

.concept-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rose Section */
.rose-section {
    padding: 6rem 1.5rem;
}

.rose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.rose-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.rose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rose-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: rgb(190, 18, 60);
    font-weight: bold;
}

.rose-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 1.5rem;
    background-color: rgba(253, 242, 248, 0.8);
}

.benefits-note {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid rgb(201, 139, 173);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgb(244, 114, 182);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(253, 242, 248, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(225, 29, 72);
    margin-bottom: 1rem;
}

.benefit-card p {
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgb(233 210 223);
}

.testimonial-info {
    margin-bottom: 1rem;
}

.testimonial-age {
    color: rgb(190, 18, 60);
    font-weight: 500;
}

.testimonial-divider {
    color: #6b7280;
    margin: 0 0.5rem;
}

.testimonial-occupation {
    color: #6b7280;
}

.testimonial-text {
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 1.5rem;
    background-color: rgba(253, 242, 248, 0.6);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-subtitle {
    font-weight: bold;
    font-size: 2.4rem;
    color: rgb(190, 18, 60);
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
}

.about-experience {
    background-color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.about-experience .about-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.about-experience-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 768px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 1.5rem;
}

.tax-note {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-card {
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    background-color: white;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: rgb(244, 114, 182);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pricing-card.recommended {
    border-color: rgb(244, 114, 182);
    background-color: rgba(253, 242, 248, 0.5);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.recommended-badge {
    display: inline-block;
    background-color: rgb(225, 29, 72);
    color: white;
    font-size: 1.2rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 600;
    color: rgb(190, 18, 60);
    margin-bottom: 1rem;
}

.pricing-duration {
    color: #6b7280;
    margin-bottom: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: #6b7280;
    margin-top: 1rem;
}

.pricing-feature svg {
    color: rgb(225, 29, 72);
}

/* Reservation Section */
.reservation-section {
    padding: 6rem 1.5rem;
    background-color: rgba(253, 242, 248, 0.6);
}

.reservation-intro {
    text-align: center;
    font-size: 1.4rem;
    padding-top: 10px;
    color: #6b7280;
}

.reservation-box {
    background-color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(253, 242, 248, 1);
}

.reservation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #06C755;
}

.reservation-header h3 {
    font-size: 2rem;
}

.reservation-description {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.reservation-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(254, 243, 199, 1);
    border: 1px solid rgba(251, 191, 36, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    color: rgb(146, 64, 14);
}

.reservation-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1.5rem;
}

.line-reserve-btn-wrap{
    text-align:center;
    margin:30px 0 0 0;
}

.line-reserve-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#06C755,#20d16c);
    color:#fff;
    padding:16px 34px;
    font-size:18px;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:all .35s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.line-reserve-btn span.arrow{
    transition:transform .35s ease;
}

.line-reserve-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 26px rgba(0,0,0,0.25);
}

.line-reserve-btn:hover span.arrow{
    transform:translateX(6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
        line-height: 3.6rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .concerns-grid,
    .benefits-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .mobile-break {
        display: block;
    }

    .rose-grid .rose-image {
        order: 2;
    }

    .rose-grid .rose-text {
        order: 1;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-text {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.4rem;
    }

    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.4rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
