/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: rgb(67, 81, 105);
    --primary-orange: rgb(237, 137, 67);
    --light-blue: rgba(67, 81, 105, 0.1);
    --light-orange: rgba(237, 137, 67, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-blue);
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo span {
    color: inherit;
}

.logo:hover {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

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

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

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-blue);
    background: none;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--primary-blue);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67, 81, 105, 0.9), rgba(67, 81, 105, 0.7)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    filter: blur(7px);
    z-index: 1;
    transform: scale(1.08);
    opacity: 1;
    transition: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.cta-button:hover {
    background-color: #fff;
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    cursor: pointer;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

/* .section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 1rem auto;
} */

/* About Section */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf1fa 100%);
    padding-bottom: 4rem;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 0;
}

#about .container {
    position: relative;
    z-index: 1;
}

#about .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
#about-text {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    font-size: 1.13rem;
    color: var(--primary-blue);
}
#about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Consolidated Feature Card Styles */
.feature-card {
    background: #fff;
    border-radius: 14px;
    min-width: 220px;
    max-width: 260px;
    min-height: 180px;
    width: 100%;
    height: 220px;
    box-shadow: 0 4px 16px rgba(67,81,105,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s, transform 0.2s;
    border: 1.5px solid #f0f0f0;
    overflow: visible;
}
.feature-card:focus-within,
.feature-card:hover,
.feature-card.active {
    box-shadow: 0 8px 32px rgba(237,137,67,0.18);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.feature-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}
.feature-cloud {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-18px);
    min-width: 240px;
    max-width: 340px;
    background: #fff7f0;
    color: var(--primary-blue);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(237,137,67,0.18);
    border: 1.5px solid #ffd9b3;
    padding: 1.2rem 1.5rem 1.3rem 1.5rem;
    font-size: 1.08rem;
    font-weight: 400;
    text-align: center;
    z-index: 10;
    word-break: break-word;
}
.feature-card:focus-within .feature-cloud,
.feature-card:hover .feature-cloud,
.feature-card.active .feature-cloud {
    display: block;
    pointer-events: auto;
}
.feature-cloud::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #fff7f0 transparent transparent transparent;
}
@media (max-width: 1100px) {
    #about-features {
        max-width: 100vw;
        gap: 1.2rem;
    }
}
@media (max-width: 900px) {
    #about-features {
        gap: 1.2rem;
    }
    .feature-card {
        min-width: 160px;
        max-width: 100%;
        height: 170px;
    }
}
@media (max-width: 800px) {
    #about-features {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .feature-card {
        width: 100%;
        min-width: 0;
        max-width: 340px;
    }
    .feature-cloud {
        min-width: 180px;
        max-width: 90vw;
        font-size: 0.98rem;
        padding: 1rem 1.1rem 1.1rem 1.1rem;
        border: 1.5px solid #ffd9b3;
    }
}

/* Packages Section */
#packages {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, transparent 100%);
    z-index: 0;
}

#packages .container {
    position: relative;
    z-index: 1;
}

.package-subsection {
    margin-bottom: 4rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.subsection-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.15rem;
}

.subsection-description p {
    margin-bottom: 0.5rem;
    text-align: center;
}

.subsection-description p:last-child {
    margin-bottom: 0;
}

.package-subsection:last-child {
    margin-bottom: 0;
}

.package-subsection h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
}

.package-subsection h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 1rem auto;
}

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

.package-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.package-card:hover::before {
    opacity: 1;
}

/* Highlighted package card - reusable */
.package-card.highlighted {
    background: linear-gradient(135deg, #fff 0%, var(--light-blue) 100%);
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}
.package-card.highlighted::before {
    opacity: 1;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
}
.package-card.highlighted .price {
    color: var(--primary-blue);
    font-size: 1.8rem;
}
.package-card.highlighted:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 12px 32px rgba(67,81,105,0.18);
    border-color: var(--primary-orange);
}
.package-card.highlighted:hover::before {
    opacity: 1;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
}

.package-card h4 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.package-card .price {
    text-align: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.package-card li {
    margin-bottom: 0.8rem;
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Gallery Section */
#gallery {
    background: transparent !important;
    color: #fff;
}
#gallery .container {
    background: rgba(255,255,255,0.92);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    padding: 2rem 0;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(67,81,105,0.10);
    cursor: pointer;
    background: #eee;
    aspect-ratio: 4/3;
    transition: box-shadow 0.3s;
}
.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(67,81,105,0.18);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,1.5,.5,1);
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(67,81,105,0.10) 0%, rgba(237,137,67,0.10) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.gallery-lightbox.active {
    display: flex;
}
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.gallery-lightbox .close-lightbox {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s;
}
.gallery-lightbox .close-lightbox:hover {
    color: var(--primary-orange);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf1fa 100%);
    background-color: #fff;
    padding: 2rem 0;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
#contact .container {
    background: none;
    box-shadow: none;
    border-radius: 0;
}
#contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, transparent 100%);
    z-index: 0;
}
#contact .container {
    position: relative;
    z-index: 1;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.2rem;
}

.contact-item span {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: var(--primary-blue);
}

.flexibility-note {
    font-size: 0.9rem;
    color: var(--primary-blue);
    opacity: 0.8;
    font-style: italic;
    margin-top: 0.3rem !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    /* background: rgba(237,137,67,0.04); */
    border-radius: 12px;
    color: var(--primary-blue);
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    /* border: 2px solid rgba(237,137,67,0.18); */
    box-shadow: 0 2px 8px rgba(237,137,67,0.04);
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 1.4em;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(237,137,67,0.18);
    transform: translateY(-3px) scale(1.08);
}

/* Contact links styling */
.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.contact-map {
    height: 450px;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
}

.contact-map:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    transition: box-shadow 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
    .contact-map {
        height: 300px;
    }
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

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

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-blue);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    margin: 0;
    text-align: left;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1rem;
    }
    
    .footer-links .separator {
        display: inline;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links li {
        margin-left: 1rem;
    }

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

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

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

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

    .package-subsection {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

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

/* Ensure content stays above backgrounds */
.section .container {
    position: relative;
    z-index: 1;
}

.package-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin: 1.5rem 0 1rem 0;
    max-width: 100%;
    justify-items: center;
}
.package-gallery img {
    width: 100%;
    max-width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(67,81,105,0.08);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #eee;
}
.package-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(67,81,105,0.18);
}
@media (max-width: 600px) {
    .package-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    .package-gallery img {
        max-width: 70px;
        height: 55px;
    }
}

/* FAQ Section */
#faq {
    background: #ffffff;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, transparent 100%);
    opacity: 0.1;
    z-index: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    border: 1.5px solid #e0e6ef;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(67,81,105,0.06);
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(67,81,105,0.08);
    border-color: var(--primary-orange);
}

.faq-item.active {

    background: #f4f6fa;
    box-shadow: 0 4px 16px rgba(67,81,105,0.10);
}

.faq-question:hover {
    cursor:pointer;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
}

.faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    flex: 1;
}

.faq-item.active .faq-question {
    background: #eaf1fa;
    color: #1e293b;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-left: 1rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    background-color: #fff;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin: 0;
    color: var(--primary-blue);
    line-height: 1.6;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}
.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    gap: 0.2rem;
}
.price-block .regular-price {
    color: var(--primary-blue);
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.2rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    position: relative;
}
.price-block:not(.has-promo) .regular-price::after {
    content: '';
    display: block;
    margin: 0.15em auto 0 auto;
    width: 72px;
    height: 5px;
    border-radius: 3px 10px 7px 12px/3px 10px 7px 12px;
    background: var(--primary-orange);
    opacity: 0.92;
}
.price-block.has-promo .regular-price::after {
    display: none;
}
.price-block.has-promo .regular-price {
    color: #aaa;
    font-size: 1.05rem;
    font-weight: 400;
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}
.promo-price {
    color: var(--primary-orange) !important;
    font-size: 1.7rem;
    font-weight: bold;
    animation: promo-pop 0.7s cubic-bezier(.4,1.5,.5,1);
    margin-bottom: 0.3rem;
}
.price-block:not(:has(.old-price)) .promo-price {
    color: var(--primary-blue);
    animation: none;
}
.promo-badge {
    background: linear-gradient(90deg, var(--primary-orange) 60%, var(--primary-blue) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.18em 0.8em;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(237,137,67,0.10);
    text-transform: uppercase;
    animation: badge-fadein 0.8s cubic-bezier(.4,1.5,.5,1);
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
    display: inline-block;
}
.promo-note {
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.92rem;
    margin-top: 0.15rem;
    font-style: italic;
    letter-spacing: 0.01em;
    line-height: 1.3;
    max-width: 180px;
}
@keyframes promo-pop {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes badge-fadein {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 340px;
    text-align: left;
}
.feature-item {
    display: flex;
    align-items: baseline;
    font-size: 1.05rem;
    color: var(--primary-blue);
    font-weight: 400;
    gap: 0.85em;
    line-height: 1.3;
    min-width: 0;
}
.features-list .feature-icon, .feature-item .feature-icon {
    font-size: 1em !important;
    margin-right: 0.15em;
    flex-shrink: 0;
    color: var(--primary-orange);
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.feature-text {
    display: block;
    flex: 1;
    min-width: 0;
    word-break: break-word;
    text-align: left;
}
.contact-address,
.contact-phone,
.contact-email {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
    font-weight: 500;
}
.contact-address:hover,
.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}
/* About Feature Cards */
#about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.feature-card {
    background: #fff;
    border-radius: 14px;
    min-width: 220px;
    max-width: 260px;
    min-height: 180px;
    width: 100%;
    height: 220px;
    box-shadow: 0 4px 16px rgba(67,81,105,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s, transform 0.2s;
    border: 1.5px solid #f0f0f0;
    overflow: visible;
}
.feature-card:focus-within,
.feature-card:hover,
.feature-card.active {
    box-shadow: 0 8px 32px rgba(237,137,67,0.18);
    transform: translateY(-4px) scale(1.03);
    z-index: 2;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: color 0.2s;
}
.feature-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}
.feature-cloud {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-18px);
    min-width: 240px;
    max-width: 340px;
    background: #fff7f0;
    color: var(--primary-blue);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(237,137,67,0.18);
    border: 1.5px solid #ffd9b3;
    padding: 1.2rem 1.5rem 1.3rem 1.5rem;
    font-size: 1.08rem;
    font-weight: 400;
    text-align: center;
    z-index: 10;
    word-break: break-word;
}
.feature-card:focus-within .feature-cloud,
.feature-card:hover .feature-cloud,
.feature-card.active .feature-cloud {
    display: block;
    pointer-events: auto;
}
.feature-cloud::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #fff7f0 transparent transparent transparent;
}
@media (max-width: 1100px) {
    #about-features {
        max-width: 100vw;
        gap: 1.2rem;
    }
}
@media (max-width: 900px) {
    #about-features {
        gap: 1.2rem;
    }
    .feature-card {
        min-width: 160px;
        max-width: 100%;
        height: 170px;
    }
}
@media (max-width: 700px) {
    #about-features {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        max-width: 98vw;
    }
    .feature-card {
        width: 100%;
        min-width: 0;
        max-width: 340px;
    }
    .feature-cloud {
        min-width: 180px;
        max-width: 90vw;
        font-size: 0.98rem;
        padding: 1rem 1.1rem 1.1rem 1.1rem;
        border: 1.5px solid #ffd9b3;
    }
}
.package-card .subsection-description {
    font-size: 0.9em;
    color: var(--text-color);
    margin: 1rem 0;
    line-height: 1.5;
}
.package-card .subsection-description p {
    margin-bottom: 0.4rem;
}
.package-card .subsection-description p:last-child {
    margin-bottom: 0;
}
/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.legal-content h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.legal-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}
.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.legal-content .last-updated {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
    text-align: center;
}
@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 2rem;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
}
html {
    scroll-behavior: smooth;
}

/* FAQ Content Block Styles (migrated from template) */
.faq-content {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.faq-daily-experience,
.faq-users,
.faq-benefits {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-content h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-user-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-user-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.faq-user-list li:last-child {
    border-bottom: none;
}

.faq-user-list i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.faq-benefits p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-content {
        padding: 1rem;
    }
    .faq-daily-experience,
    .faq-users,
    .faq-benefits {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
}