/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #212529;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-noise.png');
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo span {
    background: linear-gradient(135deg, #007BFF 0%, #00C9A7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

nav ul li a {
    font-weight: 600;
    color: #343a40;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00C9A7;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007BFF 0%, #00C9A7 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    background-size: 200% 200%;
    animation: gradient-animation 10s ease infinite;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.cta-button {
    background-color: #fff;
    color: #007BFF;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #212529;
    font-weight: 600;
}

/* Why Us Section */
.why-us-section {
    background-color: #fff;
}

.why-us-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-us-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-us-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #007BFF;
}

.why-us-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-item i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-item:nth-child(1) i { color: #007BFF; } /* Blue */
.service-item:nth-child(2) i { color: #00C9A7; } /* Green */
.service-item:nth-child(3) i { color: #343a40; } /* Dark */

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* About Us Section */
.about-us-section {
    background-color: #fff;
}

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

/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-container img {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-container img:hover {
    opacity: 1;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info i {
    color: #007BFF;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #212529;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.social-media {
    margin-bottom: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #00C9A7;
}

/* Web Component: package-card */
package-card {
    display: block;
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

package-card::part(package-name) {
    font-size: 1.8rem;
    font-weight: 600;
    color: #007BFF;
    text-align: center;
}

package-card::part(package-price) {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    text-align: center;
    margin: 1rem 0;
}

package-card::part(package-price-span) {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

package-card::part(features-list) {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

package-card::part(feature-item) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

package-card::part(feature-icon) {
    color: #00C9A7;
}

package-card::part(cta-button) {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #007BFF 0%, #00C9A7 100%);
    color: #fff;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 191, 167, 0.4);
}

package-card::part(cta-button):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 191, 167, 0.5);
}

/* Animations */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.is-visible {
    animation-name: fadeInUp;
    animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul {
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        text-align: center;
        padding: 0.5rem 0;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    section {
        padding: 3rem 1rem;
    }
    section h2 {
        font-size: 2rem;
    }
    .why-us-item, .service-item, package-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .contact-info {
        text-align: left;
    }
}
