/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #3498db;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: #fff;
}

.btn-form {
    background-color: #3498db;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    margin-top: 8px;
}

.btn-form:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    white-space: nowrap;
}

.logo h1 span {
    color: #3498db;
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

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

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu i {
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu .menu-close {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px; /* Adjust for header height */
    padding-top: 80px; /* Add padding to compensate for header */
    padding-bottom: 50px; /* Add padding at bottom for smaller screens */
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.hero-content {
    flex: 1;
    padding-right: 0;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-form {
    flex: 1;
    width: 100%;
    max-width: 574px;
    min-width: 280px;
}

.form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.form-container h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.form-container p {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 12px;
    width: 100%;
}

.form-group.checkbox {
    display: flex;
    align-items: start;
    justify-content: start;
}

.form-group .tcpa {
    font-size: 12px;
    color: #000;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
}

.form-success {
    text-align: center;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 15px;
}

.form-success h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success p {
    color: #7f8c8d;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

/* Plans Section */
.plans {
    background-color: #f5f7fa;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.plan-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
    position: relative;
}

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

.plan-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.plan-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    min-height: 50px;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.plan-card ul li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.plan-card ul li i {
    color: #3498db;
    margin-right: 10px;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #7f8c8d;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f7fa;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 10px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

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

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

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-content p {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '\201C';
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    left: -15px;
    top: -20px;
    opacity: 0.2;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #3498db;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.5;
}

.contact-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #3498db;
}

.footer-logo p {
    color: #ecf0f1;
    font-size: 0.9rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #3498db;
    bottom: -10px;
    left: 0;
}

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

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

.footer-links ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #3498db;
    bottom: -10px;
    left: 0;
}

.footer-newsletter p {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-newsletter form {
    display: flex;
    margin-bottom: 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
}

.footer-newsletter button {
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: #ecf0f1;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero .container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
        max-width: 600px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-form {
        max-width: 600px;
        width: 100%;
    }

    .plan-card {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        order: 3;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }

    .mobile-menu {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .hero {
        padding: 95px 0 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-form {
        padding: 0 5px;
    }

    .form-container {
        padding: 15px 10px;
    }

    .form-container h3 {
        font-size: 1.2rem;
    }

    .form-container p {
        font-size: 0.8rem;
    }

    .form-group {
        margin-bottom: 10px;
        
    }
    
    .form-group .tcpa {
        color: #000;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 0.85rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-form {
        padding: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .plan-card {
        min-width: 250px;
        padding: 20px;
    }

    .benefits-container,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 10px;
    }
}