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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #ff7e5f;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 126, 95, 0.3);
}

.btn:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 126, 95, 0.4);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    color: #ff7e5f;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff7e5f;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, 
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: #ff7e5f;
}

/* Hero Section */
.hero {
    background-image: url('../assets/bg_images/bg_images1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
}

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

.hero-content {
    width: 50%;
}

.hero-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-form {
    width: 40%;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-form h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

.hero-form .btn {
    width: 100%;
    margin-top: 10px;
}

#thankYouMessage {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #dff0d8;
    border-radius: 5px;
    color: #3c763d;
}

.hidden {
    display: none;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
}

.features h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 20px 20px 10px;
    color: #ff7e5f;
}

.card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -15px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 auto;
    width: calc(33.333% - 30px);
    scroll-snap-align: start;
    padding: 30px;
    margin: 0 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial span {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info, .footer-menu, .footer-links, .footer-contact {
    width: 22%;
    margin-bottom: 20px;
}

.footer-info h3, .footer-menu h3, .footer-links h3, .footer-contact h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-info p, .footer-contact p {
    margin-bottom: 10px;
}

.footer-info p.tagline {
    color: #ff7e5f;
    font-style: italic;
    margin-bottom: 15px;
}

.footer-menu ul, .footer-links ul {
    list-style: none;
}

.footer-menu ul li, .footer-links ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a, .footer-links ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover, .footer-links ul li a:hover {
    color: #ff7e5f;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #bdc3c7;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-form {
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .card {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .testimonial {
        width: calc(100% - 30px);
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-info, .footer-menu, .footer-links, .footer-contact {
        width: 45%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .features h2, .testimonials h2 {
        font-size: 30px;
    }
    
    .footer-info, .footer-menu, .footer-links, .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* About Page Styles */
.page-header {
    background-image: url('../assets/bg_images/bg_images2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
}

.page-header .container {
    position: relative;
}

.page-header h1 {
    font-size: 44px;
    color: white;
    margin-bottom: 0;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    width: 45%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    width: 50%;
}

.about-mission {
    margin-bottom: 60px;
}

.about-mission h2, .team-section h2, .facility-section h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about-mission h2:after, .team-section h2:after, .facility-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

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

.mission-image {
    width: 40%;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-text {
    width: 55%;
}

.mission-text ul {
    margin-top: 20px;
    margin-left: 20px;
}

.mission-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mission-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ff7e5f;
    border-radius: 50%;
}

.team-section {
    margin-bottom: 60px;
}

.team-members {
    display: flex;
    justify-content: space-between;
}

.team-member {
    width: 30%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    color: #ff7e5f;
}

.team-member p {
    padding: 0 20px 20px;
    color: #666;
}

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

.facility-text {
    width: 45%;
}

.facility-images {
    width: 50%;
    display: flex;
    gap: 15px;
}

.facility-images img {
    width: calc(50% - 7.5px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive About Page */
@media screen and (max-width: 992px) {
    .about-intro, .mission-content, .facility-content {
        flex-direction: column;
    }
    
    .about-image, .about-text, .mission-image, .mission-text, .facility-text, .facility-images {
        width: 100%;
    }
    
    .about-image, .mission-image {
        margin-bottom: 30px;
    }
    
    .team-members {
        flex-direction: column;
    }
    
    .team-member {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .facility-images {
        margin-top: 30px;
    }
}

/* Services Page Styles */
.services-intro {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-list {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    width: 60%;
    padding: 30px;
}

.service-details h2 {
    color: #ff7e5f;
    margin-bottom: 15px;
}

.service-details p {
    margin-bottom: 20px;
    color: #555;
}

.service-details h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-details ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-details ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #ff7e5f;
    border-radius: 50%;
}

.service-duration {
    font-weight: 700;
    color: #2c3e50;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}

.service-price {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-price strong {
    color: #ff7e5f;
    font-size: 22px;
}

.buy-now-btn {
    background-color: #2c3e50;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 62, 80, 0.4);
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.pricing h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing-cards-centered {
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.pricing-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border: 2px solid #ff7e5f;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: #ff7e5f;
}

.pricing-header h3 {
    margin-bottom: 10px;
    color: white;
}

.price {
    font-size: 24px;
    font-weight: 700;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-body ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pricing-body ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff7e5f;
    font-weight: bold;
}

.pricing-body .btn {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta {
    background-image: url('../assets/bg_images/bg_images3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
}

.cta .container {
    position: relative;
    max-width: 800px;
}

.cta h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta .btn {
    background-color: #ff7e5f;
    font-size: 16px;
    padding: 15px 40px;
}

.cta .btn:hover {
    background-color: #e74c3c;
}

/* Responsive Services Page */
@media screen and (max-width: 992px) {
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image, .service-details {
        width: 100%;
    }
    
    .service-image {
        height: 300px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 80%;
        max-width: 350px;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        order: -1;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .service-details {
        padding: 20px;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}

/* FAQ Page Styles */
.faq-content {
    padding: 80px 0;
    background-color: white;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.faq-categories {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.category-tab {
    padding: 15px 30px;
    margin: 0 5px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-tab:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ff7e5f;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.category-tab.active, .category-tab:hover {
    color: #ff7e5f;
}

.category-tab.active:after, .category-tab:hover:after {
    width: 100%;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list.hidden {
    display: none;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 60px 20px 25px;
    background-color: #f8f9fa;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.toggle-icon {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 24px;
    color: #ff7e5f;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.faq-contact {
    text-align: center;
    padding: 50px 0 20px;
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
}

.faq-contact h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-contact p {
    margin-bottom: 30px;
    color: #555;
}

/* Responsive FAQ Page */
@media screen and (max-width: 768px) {
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .category-tab {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 20px;
    }
    
    .toggle-icon {
        right: 15px;
        top: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.contact-info {
    width: 40%;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.contact-info h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7e5f;
    margin-top: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-text h3 {
    font-size: 18px;
    color: #ff7e5f;
    margin-bottom: 5px;
}

.info-text p {
    margin: 0;
    color: #555;
}

.location-map {
    margin-top: 40px;
}

.location-map h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    width: 55%;
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.contact-form-container h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7e5f;
    margin-top: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.contact-form input, 
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #ff7e5f;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

.form-check label {
    margin-bottom: 0;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.thank-you {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #dff0d8;
    border-radius: 5px;
    color: #3c763d;
}

.hidden {
    display: none;
}

/* FAQ Teaser Section */
.faq-teaser {
    background-color: #f6f9fc;
    padding: 60px 0;
    text-align: center;
}

.faq-teaser h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-teaser p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* Responsive Contact Page */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 80px 0;
    background-color: white;
}

.policy-date {
    text-align: right;
    color: #777;
    font-style: italic;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
}

.policy-section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7e5f;
    margin-top: 10px;
}

.policy-section h3 {
    color: #ff7e5f;
    margin: 25px 0 15px;
    font-size: 20px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.policy-section a {
    color: #ff7e5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.policy-section address {
    margin-top: 15px;
    font-style: normal;
    line-height: 1.7;
    color: #555;
}

/* Responsive Policy Pages */
@media screen and (max-width: 768px) {
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
}

/* Training Approach Section */
.training-approach {
    padding: 80px 0;
    background-color: white;
}

.training-approach h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.training-approach h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

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

.approach-image {
    width: 45%;
}

.approach-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.approach-image img:hover {
    transform: scale(1.03);
}

.approach-text {
    width: 50%;
}

.approach-text h3 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 24px;
}

.approach-list {
    list-style: none;
    margin-top: 20px;
}

.approach-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.approach-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff7e5f;
    font-weight: bold;
}

.highlight {
    color: #ff7e5f;
    font-weight: 700;
}

/* Training Benefits Section - Redesigned */
.training-benefits {
    padding: 100px 0;
    background-color: #f0f7fc;
    position: relative;
    overflow: hidden;
}

.training-benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pets_care_images8.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.training-benefits .container {
    position: relative;
    z-index: 1;
}

.training-benefits h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
    color: #2c3e50;
    position: relative;
}

.training-benefits h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #5a6a7f;
    line-height: 1.6;
}

.benefits-hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hexagon-item {
    width: 33.333%;
    padding: 0 25px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.hexagon {
    width: 100%;
    max-width: 300px;
    position: relative;
    transition: all 0.4s ease;
}

.hexagon:before {
    content: '';
    display: block;
    padding-top: 115%;
}

.hexagon-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.hexagon:hover .hexagon-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #fff8f7;
}

.hexagon-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #ff7e5f;
}

.hexagon-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hexagon:hover .hexagon-icon img {
    transform: scale(1.1);
}

.hexagon-content h3 {
    color: #ff7e5f;
    margin-bottom: 10px;
    font-size: 18px;
}

.hexagon-content p {
    color: #5a6a7f;
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
}

@media screen and (max-width: 992px) {
    .hexagon-item {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .hexagon-item {
        width: 100%;
        padding: 0 15%;
    }
    
    .training-benefits {
        padding: 70px 0;
    }
}

/* Training Process Section - Redesigned */
.training-process {
    padding: 100px 0;
    background: linear-gradient(165deg, #fff 50%, #f6f9fc 50%);
    position: relative;
}

.training-process h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
    color: #2c3e50;
    position: relative;
}

.training-process h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #ff7e5f;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 126, 95, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(255, 126, 95, 0.3);
}

.timeline-content {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    width: calc(50% - 50px);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}

.timeline-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.timeline-image:before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-text {
    width: 60%;
    padding: 30px;
    position: relative;
}

.timeline-number {
    font-size: 50px;
    font-weight: 800;
    color: rgba(255, 126, 95, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.timeline-text h3 {
    color: #ff7e5f;
    margin-bottom: 15px;
    font-size: 22px;
}

.timeline-text p {
    color: #5a6a7f;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-points li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #5a6a7f;
    transition: transform 0.3s ease;
}

.timeline-points li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ff7e5f;
    border-radius: 50%;
}

.timeline-item:hover .timeline-points li {
    transform: translateX(5px);
}

.process-cta {
    text-align: center;
    margin-top: 60px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-cta p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-cta .btn {
    padding: 15px 40px;
    font-size: 16px;
}

@media screen and (max-width: 992px) {
    .process-timeline:before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px) {
    .timeline-content {
        flex-direction: column !important;
    }
    
    .timeline-image, .timeline-text {
        width: 100%;
    }
    
    .timeline-image {
        height: 200px;
    }
    
    .timeline-number {
        top: auto;
        bottom: 10px;
        right: 10px;
        font-size: 40px;
    }
}

@media screen and (max-width: 576px) {
    .process-timeline {
        margin-top: 30px;
    }
    
    .timeline-item {
        margin-bottom: 50px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-text {
        padding: 20px;
    }
    
    .timeline-text h3 {
        font-size: 18px;
    }
    
    .process-cta {
        margin-top: 30px;
        padding: 20px;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.success-stories h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.stories-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -15px;
    padding-bottom: 30px;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 auto;
    width: calc(33.333% - 30px);
    scroll-snap-align: start;
    margin: 0 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    margin-bottom: 5px;
    color: #ff7e5f;
    font-size: 22px;
}

.dog-breed {
    color: #777;
    font-style: italic;
    margin-bottom: 15px;
}

.story-desc {
    margin-bottom: 15px;
    color: #555;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.owner-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    border-left: 3px solid #ff7e5f;
    padding-left: 15px;
}

.owner-name {
    text-align: right;
    color: #333;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.philosophy-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.philosophy-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.philosophy-card {
    width: 48%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-card h3 {
    text-align: center;
    color: #ff7e5f;
    margin-bottom: 15px;
    font-size: 20px;
}

.philosophy-card p {
    color: #555;
    line-height: 1.7;
}

/* Methods Section */
.methods-section {
    padding: 80px 0;
    background-color: white;
}

.methods-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.methods-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.methods-content {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.methods-image {
    width: 40%;
}

.methods-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.methods-text {
    width: 55%;
    margin-left: 5%;
}

.methods-text > p {
    margin-bottom: 25px;
    color: #555;
    font-size: 17px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.method-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.method-item h3 {
    color: #ff7e5f;
    margin-bottom: 10px;
    font-size: 18px;
}

.method-item p {
    color: #555;
    font-size: 15px;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.education-section h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.education-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.education-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.education-intro p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.education-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ff7e5f;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    color: #ff7e5f;
}

.tab-btn.active:after, .tab-btn:hover:after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.education-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.education-item {
    width: 30%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.education-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-item h3 {
    text-align: center;
    color: #ff7e5f;
    margin-bottom: 15px;
    font-size: 18px;
}

.education-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive Styles for New Sections */
@media screen and (max-width: 992px) {
    .approach-content, .methods-content {
        flex-direction: column;
    }
    
    .approach-image, .approach-text, .methods-image, .methods-text {
        width: 100%;
    }
    
    .approach-image, .methods-image {
        margin-bottom: 30px;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    .story-card {
        width: calc(100% - 30px);
    }
    
    .philosophy-card {
        width: 100%;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .education-item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        left: 40px;
        margin-left: -20px;
    }
    
    .process-timeline:before {
        left: 40px;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-form {
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .card {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .testimonial {
        width: calc(100% - 30px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info, .footer-links {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .features h2, .testimonials h2 {
        font-size: 30px;
    }
}

/* Purchase Page Styles */
.purchase-content {
    padding: 80px 0;
    background-color: white;
}

.purchase-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.service-summary {
    width: 45%;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-summary h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.service-summary h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7e5f;
    margin-top: 10px;
}

.selected-service {
    margin-top: 20px;
}

.selected-service-details h3 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-info {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-description {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.service-duration, .service-price-display {
    margin-bottom: 10px;
}

.service-not-found {
    color: #721c24;
    background-color: #f8d7da;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
}

.purchase-form-container {
    width: 50%;
}

.purchase-form-container h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.purchase-form-container h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7e5f;
    margin-top: 10px;
}

.purchase-form .form-group {
    margin-bottom: 20px;
}

.purchase-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.purchase-form input, 
.purchase-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.purchase-form input:focus, 
.purchase-form textarea:focus {
    border-color: #ff7e5f;
    outline: none;
}

.purchase-form textarea {
    resize: vertical;
    height: 100px;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

.form-check label {
    margin-bottom: 0;
}

.purchase-form .btn {
    width: 100%;
    margin-top: 10px;
}

.purchase-btn {
    background-color: #ff7e5f;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    padding: 15px;
}

.purchase-btn:hover {
    background-color: #e74c3c;
}

/* Enhanced Purchase Page Styles */
.purchase-header {
    background-image: url('../assets/bg_images/bg_images4.jpg');
}

.purchase-graphic-top {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-illustration {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 200px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.summary-icon, .form-icon {
    text-align: center;
    margin-bottom: 20px;
}

.summary-icon i, .form-icon i {
    font-size: 40px;
    color: #ff7e5f;
    background-color: rgba(255, 126, 95, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.2);
}

.service-summary, .purchase-form-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-summary:hover, .purchase-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.placeholder-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    padding: 20px;
}

.placeholder-animation i {
    font-size: 30px;
    color: #ff7e5f;
    margin-bottom: 15px;
}

.selected-service-details h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #f0f0f0;
    margin-bottom: 20px;
}

.service-info {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: #ff7e5f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-meta p {
    margin-bottom: 0;
}

.service-meta i {
    color: #ff7e5f;
    margin-right: 5px;
}

.purchase-features {
    margin-top: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #ff7e5f;
    margin-right: 15px;
    font-size: 18px;
}

.service-not-found {
    display: flex;
    align-items: center;
    background-color: #fff3f3;
    border-left: 4px solid #ff7e5f;
    padding: 20px;
    border-radius: 6px;
}

.service-not-found i {
    color: #ff7e5f;
    font-size: 24px;
    margin-right: 15px;
}

.purchase-form label i {
    color: #ff7e5f;
    margin-right: 8px;
}

.purchase-form input::placeholder, 
.purchase-form textarea::placeholder {
    color: #ccc;
}

.purchase-form input:focus::placeholder, 
.purchase-form textarea:focus::placeholder {
    color: #ddd;
}

.purchase-btn {
    font-size: 18px;
    padding: 15px;
}

.purchase-btn i {
    margin-right: 10px;
}

.purchase-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 30px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #777;
    margin-bottom: 10px;
    z-index: 1;
}

.step-item.active .step-number {
    background-color: #ff7e5f;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.step-item.completed .step-number {
    background-color: #4caf50;
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.step-text {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.step-item.active .step-text, .step-item.completed .step-text {
    color: #2c3e50;
    font-weight: 600;
}

.step-line {
    width: 80px;
    height: 3px;
    background-color: #eee;
    margin: 0 10px;
}

.step-line.completed {
    background-color: #4caf50;
}

@media screen and (max-width: 768px) {
    .purchase-steps {
        flex-direction: column;
        margin: 30px 0;
    }
    
    .step-item {
        flex-direction: row;
        margin-bottom: 15px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .step-line {
        width: 3px;
        height: 25px;
        margin: 5px 0;
        margin-left: 18px; /* Center with the step-number */
    }
}

/* Enhanced Thank You Page Styles */
.thank-you-header {
    background-image: url('../assets/bg_images/bg_images5.jpg');
}

.thank-you-message {
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.success-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4caf50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0.1);
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark 0.3s ease-in-out 0.8s forwards;
    width: 40px;
    height: 40px;
    position: relative;
}

.checkmark-check:before {
    content: '';
    width: 16px;
    height: 3px;
    background-color: #4caf50;
    position: absolute;
    transform: rotate(45deg);
    top: 20px;
    left: 5px;
}

.checkmark-check:after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #4caf50;
    position: absolute;
    transform: rotate(135deg);
    top: 16px;
    left: 10px;
}

@keyframes stroke {
    100% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0.1);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.thank-you-message h2 {
    color: #4caf50;
    font-size: 28px;
    margin-bottom: 15px;
}

.thank-you-message p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.details-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    color: #888;
}

.details-loading i {
    font-size: 30px;
    color: #ff7e5f;
    margin-bottom: 15px;
}

.order-details {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.details-header, .service-header, .customer-header {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px 30px;
}

.details-header i, .service-header i, .customer-header i {
    font-size: 24px;
    color: #ff7e5f;
    margin-right: 15px;
}

.details-header h3 {
    margin: 0;
    color: #2c3e50;
}

.order-info, .order-service, .order-customer {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.order-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.order-number, .order-date {
    display: flex;
    align-items: center;
}

.order-number i, .order-date i {
    color: #ff7e5f;
    margin-right: 10px;
    font-size: 18px;
}

.service-header h4, .customer-header h4 {
    margin: 0;
    color: #2c3e50;
}

.service-name {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 15px;
}

.service-price {
    color: #ff7e5f;
    font-size: 16px;
    margin-top: 10px;
}

.service-price i {
    margin-right: 5px;
}

.customer-details {
    margin-top: 15px;
}

.customer-details p {
    margin-bottom: 10px;
    color: #555;
}

.customer-details i {
    width: 25px;
    color: #ff7e5f;
}

.order-error, .order-not-found {
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #fff3f3;
}

.order-error i, .order-not-found i {
    color: #ff7e5f;
    font-size: 24px;
    margin-right: 15px;
}

.next-steps {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.steps-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.steps-header i {
    font-size: 24px;
    color: #ff7e5f;
    margin-right: 15px;
    background-color: rgba(255, 126, 95, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-header h3 {
    margin: 0;
    color: #2c3e50;
}

.steps-content ol {
    counter-reset: steps;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps-content ol li {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.steps-content ol li:before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #ff7e5f;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(255, 126, 95, 0.3);
}

.step-icon {
    background-color: rgba(255, 126, 95, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.step-icon i {
    color: #ff7e5f;
}

.step-desc {
    flex: 1;
    padding-top: 10px;
}

.thank-you-image {
    text-align: center;
    margin: 30px 0;
}

.thank-you-illustration {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 200px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.thank-you-buttons .btn {
    min-width: 200px;
    text-align: center;
}

.thank-you-buttons .btn i {
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .thank-you-message {
        padding: 30px 20px;
    }
    
    .order-info {
        flex-direction: column;
    }
    
    .order-number, .order-date {
        margin-bottom: 10px;
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .thank-you-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .steps-content ol li {
        flex-direction: column;
    }
    
    .step-icon {
        margin-bottom: 10px;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-showcase h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    position: relative;
}

.video-showcase h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ff7e5f;
    margin: 15px auto 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-description {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
} 