/* Global Variables */
:root {
    --primary-color: #00b4d8; /* Light Blue */
    --primary-dark: #0077b6; /* Darker Blue */
    --secondary-color: #90e0ef; /* Very Light Blue */
    --accent-color: #48cae4; /* Cyan/Blue */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --background: #f8f9fa;
    --success: #2ec4b6;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    gap: 10px;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn--white {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
}

.btn--white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn--full {
    width: 100%;
    border: 2px solid var(--text-light); /* Default border for basic button */
    color: var(--text-color);
}

.btn--full:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn--full.btn--primary {
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.btn--large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent-color);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-color);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero__actions {
    display: flex;
    gap: 15px;
}

.hero__img {
    border-radius: var(--radius) 100px var(--radius) var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

/* Plans Grid */
.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.city-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}



.city-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.city-card__title {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.city-card__icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.city-card__list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.city-card__list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.city-card__list li i {
    color: var(--success);
}

/* Features */
.features {
    background-color: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: #f9fcff;
}

.feature-item__icon {
    width: 70px;
    height: 70px;
    background-color: #e0f7fa;
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer__logo span {
    color: var(--primary-color);
}

.footer__brand p {
    color: #999;
    font-size: 0.9rem;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__contact p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav__list.active {
        right: 0;
    }

    .nav__toggle {
        display: block;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__img {
        margin-top: 30px;
        border-radius: var(--radius);
    }
    
    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


/* SEO Text Section */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.seo-content p {
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--primary-dark);
}

.seo-guide-container {
    margin-top: 30px;
    position: relative;
}

.seo-guide-content {
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    opacity: 0;
    transition: all 0.5s ease;
}

.seo-guide-content.active {
    max-height: 8000px; /* Increased to ensure all content fits */
    opacity: 1;
}

.seo-guide-content h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 30px 0 15px;
    text-align: center;
}

.seo-guide-content h4 {
    color: var(--secondary-color);
    color: var(--primary-dark); 
    font-size: 1.3rem;
    margin: 25px 0 10px;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.seo-guide-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-guide-content li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--text-light);
}


/* FAQ Section */
.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
    background-color: #f8fbff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Slightly softer shadow than city cards */
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content {
    position: relative;
    z-index: 2;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-card__rating {
    color: #ffc107; /* Gold color for stars */
    font-size: 0.9rem;
}

/* About Me Section */
.about-me {
    background-color: #f8fbff;
}

.about-me__container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-me__content {
    flex: 1;
}

.about-me__title {
    text-align: left;
    margin-bottom: 20px;
}

.about-me__text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-me__text strong {
    color: var(--primary-dark);
}

.about-me__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-me__container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-me__title {
        text-align: center;
    }
    
    .about-me__text {
        text-align: center;
    }
}



.about-me__img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

@media (max-width: 768px) {
    .about-me__img {
        width: 280px;
        height: 280px;
    }
}

/* Partners Section */
.partners {
    padding: 40px 0;
    background-color: var(--white);
    border-top: 1px solid #f0f0f0;
}

.partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-item {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
